0% found this document useful (0 votes)
3 views

aurelco

The document outlines the SQL structure for various tables in a database related to an organization, including 'access', 'applicant_activities', 'applicants_interview_schedule', 'areas', 'barangay', 'branch', 'db_account_type', and 'db_chart_accounts'. It includes commands to drop existing tables, create new tables with specified fields, and insert initial data into these tables. The database uses InnoDB engine and latin1 character set for its tables.

Uploaded by

kenzuman
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

aurelco

The document outlines the SQL structure for various tables in a database related to an organization, including 'access', 'applicant_activities', 'applicants_interview_schedule', 'areas', 'barangay', 'branch', 'db_account_type', and 'db_chart_accounts'. It includes commands to drop existing tables, create new tables with specified fields, and insert initial data into these tables. The database uses InnoDB engine and latin1 character set for its tables.

Uploaded by

kenzuman
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 321

/*

SQLyog Community v12.09 (64 bit)


MySQL - 10.4.24-MariaDB : Database - aurelco
*********************************************************************
*/

/*!40101 SET NAMES utf8 */;

/*!40101 SET SQL_MODE=''*/;

/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;


/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
/*Table structure for table `access` */

DROP TABLE IF EXISTS `access`;

CREATE TABLE `access` (


`id` INT(11) NOT NULL AUTO_INCREMENT,
`name` VARCHAR(150) DEFAULT NULL,
`description` VARCHAR(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=INNODB AUTO_INCREMENT=23 DEFAULT CHARSET=latin1;

/*Data for the table `access` */

INSERT INTO `access`(`id`,`name`,`description`) VALUES (1,'Finance','Department of


Finance Services'),(2,'CAE','College of Advanced Education'),
(3,'Extension','Department of Extension and Training'),(4,'HRMO','Department of
Human Resources and Development'),(5,'President','Office of the University
President'),(6,'QAO','Department of Quality Assurance'),(7,'RDET','Department of
Research and Development'),(8,'Registrar','Department of Registrar and Admission
Services'),(9,'Administrator','Administrator'),(10,'Permanent','Permanent
Employee'),(11,'Temporary','Temporary Permanent Employee'),(12,'Contract of
Service','Contractual or Job Order Employee'),(13,'VPPFRG','Vice President for
Planning, FInance and Resource Generation'),(14,'VPRDET','Vice President for
Research Development, Extensions and Trainings'),(15,'DPIM','Department of Planning
and Information Management'),(16,'DCPIA','Department of Communications, Public and
International Affairs'),(17,'VPA','Vice President for Administration'),
(18,'VPAA','Vice President for Academic Affairs'),(19,'URegistrar','University
Department of Registrar and Admission Services'),(20,'UQAO','University Department
of Quality Assurance'),(21,'UDSSD','University Department of Student Services'),
(22,'DSSD','Department of Student Services');

/*Table structure for table `applicant_activities` */

DROP TABLE IF EXISTS `applicant_activities`;

CREATE TABLE `applicant_activities` (


`id` int(255) NOT NULL AUTO_INCREMENT,
`user_applicant_id` varchar(255) DEFAULT NULL,
`description` varchar(1000) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*Data for the table `applicant_activities` */

/*Table structure for table `applicants_interview_schedule` */

DROP TABLE IF EXISTS `applicants_interview_schedule`;

CREATE TABLE `applicants_interview_schedule` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`cas_id` varchar(100) DEFAULT NULL,
`user_applicant_id` varchar(18) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` int(11) DEFAULT NULL,
`updated_user_id` int(11) DEFAULT NULL,
`deleted_user_id` int(11) DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;

/*Data for the table `applicants_interview_schedule` */

/*Table structure for table `areas` */

DROP TABLE IF EXISTS `areas`;

CREATE TABLE `areas` (


`id` int(25) NOT NULL AUTO_INCREMENT,
`area_code` varchar(100) DEFAULT NULL,
`area_name` varchar(50) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

/*Data for the table `areas` */

/*Table structure for table `barangay` */

DROP TABLE IF EXISTS `barangay`;

CREATE TABLE `barangay` (


`id` int(5) NOT NULL AUTO_INCREMENT,
`municipality_id` varchar(100) DEFAULT NULL,
`name` varchar(100) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` varchar(100) DEFAULT NULL,
`updated_user_id` varchar(100) DEFAULT NULL,
`deleted_user_id` varchar(100) DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;

/*Data for the table `barangay` */

insert into
`barangay`(`id`,`municipality_id`,`name`,`created_at`,`updated_at`,`deleted_at`,`cr
eated_user_id`,`updated_user_id`,`deleted_user_id`) values (2,'3','Barangay I
(Poblacion)','2024-10-01 13:44:11','2024-10-01 13:44:11',NULL,'21',NULL,NULL),
(3,'3','Barangay II (Poblacion)','2024-10-01 13:58:09','2024-10-01
13:58:09',NULL,'21',NULL,NULL),(4,'3','Barangay III (Poblacion)','2024-10-01
13:58:14','2024-10-01 13:58:14',NULL,'21',NULL,NULL),(5,'3','Barangay IV
(Poblacion)','2024-10-01 13:58:20','2024-10-01 13:58:20',NULL,'21',NULL,NULL),
(6,'3','Barangay V (Poblacion)','2024-10-01 13:58:24','2024-10-01
13:58:24',NULL,'21',NULL,NULL);

/*Table structure for table `branch` */

DROP TABLE IF EXISTS `branch`;

CREATE TABLE `branch` (


`id` int(5) NOT NULL AUTO_INCREMENT,
`name` varchar(100) DEFAULT NULL,
`branch_type` varchar(100) DEFAULT NULL,
`address` varchar(250) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` varchar(100) DEFAULT NULL,
`updated_user_id` varchar(100) DEFAULT NULL,
`deleted_user_id` varchar(100) DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;

/*Data for the table `branch` */

insert into
`branch`(`id`,`name`,`branch_type`,`address`,`created_at`,`updated_at`,`deleted_at`
,`created_user_id`,`updated_user_id`,`deleted_user_id`) values
(1,'Baler','Main','Baler, Aurora','2024-10-01 21:07:53','2024-10-01
21:11:20',NULL,'21','21',NULL);

/*Table structure for table `db_account_type` */

DROP TABLE IF EXISTS `db_account_type`;

CREATE TABLE `db_account_type` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(250) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL ON UPDATE current_timestamp(),
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` int(11) DEFAULT NULL,
`updated_user_id` int(11) DEFAULT NULL,
`deleted_user_id` int(11) DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;

/*Data for the table `db_account_type` */

insert into
`db_account_type`(`id`,`name`,`created_at`,`updated_at`,`deleted_at`,`created_user_
id`,`updated_user_id`,`deleted_user_id`) values (6,'Assets','2021-01-21
07:42:07','2021-01-21 07:42:07',NULL,78,NULL,NULL),(7,'Capital','2021-01-21
07:42:29','2021-01-21 07:42:29',NULL,78,NULL,NULL),(8,'Expense','2021-01-21
07:42:45','2021-01-21 07:42:45',NULL,78,NULL,NULL),(9,'Income','2021-01-21
07:43:02','2021-01-21 07:43:02',NULL,78,NULL,NULL),(10,'Liability','2021-01-21
07:43:18','2021-01-21 07:43:18',NULL,78,NULL,NULL);

/*Table structure for table `db_chart_accounts` */

DROP TABLE IF EXISTS `db_chart_accounts`;

CREATE TABLE `db_chart_accounts` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`code` varchar(15) DEFAULT NULL,
`name` varchar(250) DEFAULT NULL,
`parent_id` varchar(250) DEFAULT NULL,
`level` varchar(250) DEFAULT NULL,
`order_no` varchar(250) DEFAULT NULL,
`type` varchar(15) DEFAULT NULL,
`fund_id` int(11) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL ON UPDATE current_timestamp(),
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` int(11) DEFAULT NULL,
`updated_user_id` int(11) DEFAULT NULL,
`deleted_user_id` int(11) DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=latin1;

/*Data for the table `db_chart_accounts` */

insert into
`db_chart_accounts`(`id`,`code`,`name`,`parent_id`,`level`,`order_no`,`type`,`fund_
id`,`created_at`,`updated_at`,`deleted_at`,`created_user_id`,`updated_user_id`,`del
eted_user_id`) values (16,'10101010 00','Cash-Collecting
Officers','19','2','2','Assets',NULL,'2021-01-21 20:23:04','2021-01-22
04:23:04',NULL,78,250,NULL),(17,'10101010 20','Petty
Cash','19','3','3','Assets',NULL,'2021-01-21 20:23:16','2021-01-22
04:23:16',NULL,78,250,NULL),(18,'10301010 00','Accounts
Receivable','19','7','7','Assets',NULL,'2021-01-21 20:23:41','2021-01-22
04:23:41',NULL,78,250,NULL),(19,'10000000
00','ASSETS','0','1','1','Assets',NULL,'2021-01-21 20:22:43','2021-01-22
04:22:43',NULL,250,250,NULL),(20,'10102020 00','Cash in
Bank','19','4','4','Assets',NULL,'2021-01-21 20:23:22','2021-01-22
04:23:22',NULL,250,250,NULL),(21,'10104040 00','Cash - MDS,
Regular','19','5','5','Assets',NULL,'2021-01-21 20:23:28','2021-01-22
04:23:28',NULL,250,250,NULL),(22,'10104050 00','Cash - MDS, Special
Accounts','19','6','6','Assets',NULL,'2021-01-21 20:23:34','2021-01-22
04:23:34',NULL,250,250,NULL),(23,'10304050 00','Due from Other
Funds','19','8','8','Assets',NULL,'2021-01-21 20:23:46','2021-01-22
04:23:46',NULL,250,250,NULL),(24,'10399020 00','Due from Officers and
Employees','19','9','9','Assets',NULL,'2021-01-21 20:23:50','2021-01-22
04:23:50',NULL,250,250,NULL),(25,'10399990 00','Other
Receivables','19','10','10','Assets',NULL,'2021-01-22 03:41:30','2021-01-22
03:41:30',NULL,250,NULL,NULL),(26,'10404010 00','Office Supplies
Inventory','19','11','11','Assets',NULL,'2021-01-22 03:42:01','2021-01-22
03:42:01',NULL,250,NULL,NULL),(27,'10404020 00','Accountable Forms, Plates and
Stickers Inventory','19','12','12','Assets',NULL,'2021-01-21 20:24:11','2021-01-22
04:24:11',NULL,250,250,NULL),(28,'10404060 00','Drugs and Medicines
Inventory','19','13','13','Assets',NULL,'2021-01-22 03:44:56','2021-01-22
03:44:56',NULL,250,NULL,NULL),(29,'10404070 00','Medical, Dental and Laboratory
Supplies Inventory','19','14','14','Assets',NULL,'2021-01-22 03:47:34','2021-01-22
03:47:34',NULL,250,NULL,NULL),(30,'10404090 00','Agricultural and Marine Supplies
Inventory','19','15','15','Assets',NULL,'2021-01-22 03:49:25','2021-01-22
03:49:25',NULL,250,NULL,NULL),(31,'10404110 00','Military, Police and Traffic
Supplies Inventory','19','16','16','Assets',NULL,'2021-01-21 20:24:38','2021-01-22
04:24:38',NULL,250,250,NULL),(32,'10404130 00','Construction Materials
Inventory','19','17','17','Assets',NULL,'2021-01-22 03:52:07','2021-01-22
03:52:07',NULL,250,NULL,NULL),(33,'10404990 00','Other Supplies and Materials
Inventory','19','18','18','Assets',NULL,'2021-01-22 04:22:21','2021-01-22
04:22:21',NULL,250,NULL,NULL),(34,'10405010 00','Semi-Expendable
Machinery','19','19','19','Assets',NULL,'2021-01-22 04:27:36','2021-01-22
04:27:36',NULL,250,NULL,NULL),(35,'10405020 00','Semi-Expendable Office
Equipment','19','20','20','Assets',NULL,'2021-01-22 04:28:08','2021-01-22
04:28:08',NULL,250,NULL,NULL),(36,'10405030 00','Semi-Expendable Information and
Communications Technology Equipment','19','21','21','Assets',NULL,'2021-01-22
04:28:29','2021-01-22 04:28:29',NULL,250,NULL,NULL),(37,'10405040 00','Semi-
Expendable Agricultural and Forestry Equipment','19','22','22','Assets',NULL,'2021-
01-22 04:28:51','2021-01-22 04:28:51',NULL,250,NULL,NULL),(38,'10405070 00','Semi-
Expendable Communications Equipment','19','23','23','Assets',NULL,'2021-01-22
04:29:12','2021-01-22 04:29:12',NULL,250,NULL,NULL),(39,'10405090 00','Semi-
Expendable Military, Police and Security
Equipment','19','24','24','Assets',NULL,'2021-01-22 04:30:06','2021-01-22
04:30:06',NULL,250,NULL,NULL),(40,'10405100 00','Semi-Expendable Medical
Equipment','19','25','25','Assets',NULL,'2021-01-22 04:30:31','2021-01-22
04:30:31',NULL,250,NULL,NULL),(41,'10405120 00','Semi-Expendable Sports
Equipment','19','26','26','Assets',NULL,'2021-01-22 04:30:59','2021-01-22
04:30:59',NULL,250,NULL,NULL),(42,'10405130 00','Semi-Expendable Technical and
Scientific Equipment','19','27','27','Assets',NULL,'2021-01-22 04:31:23','2021-01-
22 04:31:23',NULL,250,NULL,NULL),(43,'10405990 00','Semi-Expendable Other
Equipment','19','28','28','Assets',NULL,'2021-01-22 04:31:47','2021-01-22
04:31:47',NULL,250,NULL,NULL),(44,'10406010 00','Semi-Expendable Furniture and
Fixtures','19','29','29','Assets',NULL,'2021-01-22 04:32:16','2021-01-22
04:32:16',NULL,250,NULL,NULL),(45,'10406020 00','Semi-Expendable
Books','19','30','30','Assets',NULL,'2021-01-22 04:32:50','2021-01-22
04:32:50',NULL,250,NULL,NULL),(46,'10602990 00','Other Land
Improvements','19','31','31','Assets',NULL,'2021-01-22 04:33:20','2021-01-22
04:33:20',NULL,250,NULL,NULL),(47,'10602992 00','Accumulated Impairment Losses-
Other Land Improvements','19','32','32','Assets',NULL,'2021-01-22 04:33:51','2021-
01-22 04:33:51',NULL,250,NULL,NULL),(48,'10603040 00','Water Supply
Systems','19','33','33','Assets',NULL,'2021-01-22 04:34:21','2021-01-22
04:34:21',NULL,250,NULL,NULL),(49,'10603050 00','Power Supply
Systems','19','34','34','Assets',NULL,'2021-01-22 04:34:48','2021-01-22
04:34:48',NULL,250,NULL,NULL),(50,'10604010
00','Buildings','19','35','35','Assets',NULL,'2021-01-22 04:35:51','2021-01-22
04:35:51',NULL,250,NULL,NULL),(51,'10604020 00','School
Buildings','19','36','36','Assets',NULL,'2021-01-22 04:36:17','2021-01-22
04:36:17',NULL,250,NULL,NULL),(52,'10604990 00','Other
Structures','19','37','37','Assets',NULL,'2021-01-22 04:36:41','2021-01-22
04:36:41',NULL,250,NULL,NULL),(53,'10605010
00','Machinery','19','38','38','Assets',NULL,'2021-01-22 04:37:19','2021-01-22
04:37:19',NULL,250,NULL,NULL),(54,'10605020 00','Office
Equipment','19','39','39','Assets',NULL,'2021-01-22 04:37:46','2021-01-22
04:37:46',NULL,250,NULL,NULL),(55,'10605030 00','Information and Communications
Technology Equipment','19','40','40','Assets',NULL,'2021-01-22 04:38:08','2021-01-
22 04:38:08',NULL,250,NULL,NULL),(56,'10605040 00','Agricultural and Forestry
Equipment','19','41','41','Assets',NULL,'2021-01-22 04:38:43','2021-01-22
04:38:43',NULL,250,NULL,NULL),(57,'10605070 00','Communications
Equipment','19','42','42','Assets',NULL,'2021-01-22 04:39:10','2021-01-22
04:39:10',NULL,250,NULL,NULL),(58,'10605100 00','Military, Police and Security
Equipment','19','43','43','Assets',NULL,'2021-01-22 04:39:40','2021-01-22
04:39:40',NULL,250,NULL,NULL),(59,'10605110 00','Medical
Equipment','19','44','44','Assets',NULL,'2021-01-22 04:40:03','2021-01-22
04:40:03',NULL,250,NULL,NULL),(60,'10605130 00','Sports
Equipment','19','45','45','Assets',NULL,'2021-01-22 04:40:26','2021-01-22
04:40:26',NULL,250,NULL,NULL),(61,'10605140 00','Technical and Scientific
Equipment','19','46','46','Assets',NULL,'2021-01-22 04:40:47','2021-01-22
04:40:47',NULL,250,NULL,NULL),(62,'10605990 00','Other
Equipment','19','47','47','Assets',NULL,'2021-01-22 04:41:08','2021-01-22
04:41:08',NULL,250,NULL,NULL),(63,'10606010 00','Motor
Vehicles','19','48','48','Assets',NULL,'2021-01-22 04:41:30','2021-01-22
04:41:30',NULL,250,NULL,NULL),(64,'10607010 00','Furniture and
Fixtures','19','49','49','Assets',NULL,'2021-01-22 04:41:52','2021-01-22
04:41:52',NULL,250,NULL,NULL),(65,'10698010 00','Construction in Progress-Land
Improvements','19','50','50','Assets',NULL,'2021-01-22 04:42:14','2021-01-22
04:42:14',NULL,250,NULL,NULL),(66,'10698030 00','Construction in Progress-Buildings
and Other Structures','19','51','51','Assets',NULL,'2021-01-22 04:42:44','2021-01-
22 04:42:44',NULL,250,NULL,NULL),(67,'10699010 00','Work/Zoo and/or Other
Animals','19','52','52','Assets',NULL,'2021-01-22 04:43:06','2021-01-22
04:43:06',NULL,250,NULL,NULL),(68,'10699990 00','Other Property, Plant and
Equipment','19','53','53','Assets',NULL,'2021-01-22 04:43:41','2021-01-22
04:43:41',NULL,250,NULL,NULL),(69,'10701010 00','Breeding
Stocks','19','54','54','Assets',NULL,'2021-01-22 04:44:02','2021-01-22
04:44:02',NULL,250,NULL,NULL),(70,'10801020 00','Computer
Software','19','55','55','Assets',NULL,'2021-01-22 04:44:21','2021-01-22
04:44:21',NULL,250,NULL,NULL),(71,'19901030 00','Advances to Special Disbursing
Officer','19','56','56','Assets',NULL,'2021-01-22 04:44:48','2021-01-22
04:44:48',NULL,250,NULL,NULL),(72,'19901040 00','Advances to Officers and
Employees','19','57','57','Assets',NULL,'2021-01-22 04:45:11','2021-01-22
04:45:11',NULL,250,NULL,NULL),(73,'19902010 00','Advances to
Contractors','19','58','58','Assets',NULL,'2021-01-22 04:45:32','2021-01-22
04:45:32',NULL,250,NULL,NULL),(74,'19902050 00','Prepaid
Insurance','19','59','59','Assets',NULL,'2021-01-22 04:45:53','2021-01-22
04:45:53',NULL,250,NULL,NULL),(75,'19902990 00','Other
Prepayments','19','60','60','Assets',NULL,'2021-01-22 04:46:15','2021-01-22
04:46:15',NULL,250,NULL,NULL),(76,'20000000
00','LIABILITIES','0','61','61','Liability',NULL,'2021-01-22 04:46:49','2021-01-22
04:46:49',NULL,250,NULL,NULL),(77,'20101010 00','Accounts
Payable','76','62','62','Liability',NULL,'2021-01-22 04:48:01','2021-01-22
04:48:01',NULL,250,NULL,NULL),(78,'20101020 00','Due to Officers and
Employees','76','63','63','Liability',NULL,'2021-01-22 04:48:33','2021-01-22
04:48:33',NULL,250,NULL,NULL),(79,'20102040 00','Loans Payable-
Domestic','76','64','64','Liability',NULL,'2021-01-22 04:49:00','2021-01-22
04:49:00',NULL,250,NULL,NULL),(80,'20103010 00','Tax Refunds
Payable','76','65','65','Liability',NULL,'2021-01-22 04:49:24','2021-01-22
04:49:24',NULL,250,NULL,NULL),(81,'20201010 00','Due to
BIR','76','66','66','Liability',NULL,'2021-01-22 04:49:44','2021-01-22
04:49:44',NULL,250,NULL,NULL),(82,'20201020 00','Due to
GSIS','76','67','67','Liability',NULL,'2021-01-22 04:50:13','2021-01-22
04:50:13',NULL,250,NULL,NULL),(83,'20201040 00','Due to
PhilHealth','76','68','68','Liability',NULL,'2021-01-22 04:50:33','2021-01-22
04:50:33',NULL,250,NULL,NULL),(84,'20201050 00','Due to
NGAs','76','69','69','Liability',NULL,'2021-01-22 04:50:55','2021-01-22
04:50:55',NULL,250,NULL,NULL),(85,'20201060 00','Due to
GOCCs','76','70','70','Liability',NULL,'2021-01-22 04:51:19','2021-01-22
04:51:19',NULL,250,NULL,NULL),(86,'20301050 00','Due to Other
Funds','76','71','71','Liability',NULL,'2021-01-22 04:52:28','2021-01-22
04:52:28',NULL,250,NULL,NULL),(87,'20401010 00','Trust
Liabilities','76','72','72','Liability',NULL,'2021-01-22 04:52:53','2021-01-22
04:52:53',NULL,250,NULL,NULL),(88,'20401040 00','Guaranty/Security Deposits
Payable','76','73','73','Liability',NULL,'2021-01-22 04:53:31','2021-01-22
04:53:31',NULL,250,NULL,NULL),(89,'20401080 00','Trust
Liabilities-Disallowances/Charges','76','74','74','Liability',NULL,'2021-01-22
04:53:55','2021-01-22 04:53:55',NULL,250,NULL,NULL),(90,'29999990 00','Other
Payables','76','75','75','Liability',NULL,'2021-01-22 04:54:17','2021-01-22
04:54:17',NULL,250,NULL,NULL),(91,'30000000
00','EQUITY','0','76','76','Capital',NULL,'2021-01-22 04:54:57','2021-01-22
04:54:57',NULL,250,NULL,NULL),(92,'30101010 00','Accumulated
Surplus/(Deficit)','91','77','77','Capital',NULL,'2021-01-21 21:09:04','2021-01-22
05:09:04',NULL,250,250,NULL),(93,'40000000
00','REVENUE/INCOME','0','78','78','Income',NULL,'2021-01-21 20:57:27','2021-01-22
04:57:27',NULL,250,250,NULL),(94,'40201020 00','Registration
Fees','93','79','79','Income',NULL,'2021-01-22 04:57:11','2021-01-22
04:57:11',NULL,250,NULL,NULL),(95,'40202010 01','Tuition
Fees','93','80','80','Income',NULL,'2021-01-22 04:58:11','2021-01-22
04:58:11',NULL,250,NULL,NULL),(96,'40202010 02','Income Collected from
Students','93','81','81','Income',NULL,'2021-01-22 04:59:30','2021-01-22
04:59:30',NULL,250,NULL,NULL),(97,'40202010 99','Other School
Fees','93','82','82','Income',NULL,'2021-01-22 05:00:01','2021-01-22
05:00:01',NULL,250,NULL,NULL),(98,'40202130 00','Income from Hostels/Dormitories
and Other Like Facilities','93','83','83','Income',NULL,'2021-01-22
05:00:29','2021-01-22 05:00:29',NULL,250,NULL,NULL),(99,'40202990 99','Other
Business Income','96','84','84','Income',NULL,'2021-01-22 06:02:09','2021-01-22
06:02:09',NULL,250,NULL,NULL);

/*Table structure for table `db_fees` */

DROP TABLE IF EXISTS `db_fees`;

CREATE TABLE `db_fees` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`code` varchar(250) DEFAULT NULL,
`name` varchar(250) DEFAULT NULL,
`fee_type` varchar(250) DEFAULT NULL,
`is_assess` varchar(1) DEFAULT NULL,
`is_general` varchar(1) DEFAULT NULL,
`is_undergrad` varchar(1) DEFAULT NULL,
`is_codete` varchar(1) DEFAULT 'N',
`is_student_recievable` varchar(1) DEFAULT NULL,
`is_refundable` varchar(1) DEFAULT NULL,
`is_unifast_fhe` varchar(1) DEFAULT NULL,
`unifast_fhe_column` varchar(20) DEFAULT NULL,
`unifast_fhe_sheet` varchar(1) DEFAULT NULL,
`scheme` varchar(25) DEFAULT NULL,
`or_account` int(11) DEFAULT NULL,
`assess_account` int(11) DEFAULT NULL,
`parent` int(11) DEFAULT NULL,
`subsidiary` int(11) DEFAULT NULL,
`equivalent_fee` int(11) DEFAULT NULL,
`fund_id` int(11) DEFAULT NULL,
`nature_of_collection_id` int(11) DEFAULT NULL,
`vat` varchar(20) DEFAULT NULL,
`priority` varchar(20) DEFAULT NULL,
`value` decimal(10,2) DEFAULT 0.00,
`remarks` varchar(250) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` int(11) DEFAULT NULL,
`updated_user_id` int(11) DEFAULT NULL,
`deleted_user_id` int(11) DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=169 DEFAULT CHARSET=latin1;

/*Data for the table `db_fees` */

insert into
`db_fees`(`id`,`code`,`name`,`fee_type`,`is_assess`,`is_general`,`is_undergrad`,`is
_codete`,`is_student_recievable`,`is_refundable`,`is_unifast_fhe`,`unifast_fhe_colu
mn`,`unifast_fhe_sheet`,`scheme`,`or_account`,`assess_account`,`parent`,`subsidiary
`,`equivalent_fee`,`fund_id`,`nature_of_collection_id`,`vat`,`priority`,`value`,`re
marks`,`created_at`,`updated_at`,`deleted_at`,`created_user_id`,`updated_user_id`,`
deleted_user_id`) values (66,'AR-UNIFAST','Accounts Receivable','Non-
Assess','N','N','Y','N','N','N','N',NULL,NULL,NULL,18,18,NULL,NULL,NULL,3,NULL,'0.0
0','0','0.00',NULL,'2021-01-22 01:49:00','2022-08-01 06:50:58',NULL,250,250,NULL),
(67,'TF','Tuition Fee','Tuition','Y','Y','Y','N','Y','Y','Y','P','2','Per
Unit',95,95,NULL,NULL,NULL,3,NULL,'0.00','4','100.00',NULL,'2021-01-22
05:20:14','2022-08-01 06:57:27',NULL,250,250,NULL),(68,'TF-CODETE','Tuition Fee -
CODETE','Tuition','Y','Y','N','Y','N','N','N',NULL,NULL,'Per
Unit',16,16,67,95,NULL,3,NULL,'0.00','4','300.00',NULL,'2021-01-22 05:23:40','2022-
08-01 06:58:02',NULL,250,250,NULL),(69,'TF-NSTP','Tuition Fee -
NSTP','Tuition','Y','N','Y','N','Y','Y','Y','Q','2','Per
Unit',95,95,NULL,NULL,NULL,3,NULL,'0.00','2','100.00',NULL,'2021-01-22
05:24:34','2021-11-05 02:37:38',NULL,250,250,NULL),(70,'ATH','Athletic
Fee','Miscellaneous','Y','Y','Y','N','Y','Y','Y','R','2','Fixed
Amount',96,96,NULL,NULL,NULL,3,NULL,'0.00','2','400.00',NULL,'2021-01-22
05:28:34','2021-11-04 06:12:00',NULL,250,250,NULL),(71,'COMLAB','Computer Fee -
Computer Lab','Laboratory','Y','N','Y','N','Y','N','Y','T','2','Per
Subject',96,96,NULL,NULL,NULL,3,NULL,'0.00','3','1200.00',NULL,'2021-01-22
05:29:39','2023-03-06 07:09:21',NULL,250,78,NULL),(72,'CUL','Cultural
Fee','Miscellaneous','Y','Y','Y','N','Y','N','Y','U','2','Fixed
Amount',96,96,NULL,NULL,NULL,3,NULL,'0.00','4','60.00',NULL,'2021-01-22
05:30:12','2023-03-02 01:51:05',NULL,250,250,NULL),(73,'ENT','Entrance
Fee','Miscellaneous','Y','N','Y','N','Y','Y','Y','W','2','Fixed
Amount',96,96,NULL,NULL,NULL,3,NULL,'0.00','5','60.00',NULL,'2021-01-22
05:31:54','2023-03-02 01:51:33',NULL,250,250,NULL),(74,'DEV','Development
Fee','Miscellaneous','Y','Y','Y','N','Y','Y','Y','V','2','Fixed
Amount',96,96,NULL,NULL,NULL,3,NULL,'0.00','6','1070.00',NULL,'2021-01-22
05:32:28','2023-03-02 01:51:16',NULL,250,250,NULL),(75,'GUIDE','Guidance
Fee','Miscellaneous','Y','Y','Y','N','Y','Y','Y','X','2','Fixed
Amount',96,96,NULL,NULL,NULL,3,NULL,'0.00','7','50.00',NULL,'2021-01-22
05:32:56','2023-03-02 01:51:49',NULL,250,250,NULL),(76,'INT','Computer Fee -
Internet Lab','Miscellaneous','Y','Y','Y','N','Y','N','Y','S','2','Fixed
Amount',96,96,NULL,NULL,NULL,3,NULL,'0.00','9','300.00',NULL,'2021-01-22
05:33:39','2023-03-06 05:26:58',NULL,250,78,NULL),(77,'LAB','Laboratory
Fee','Laboratory','Y','N','Y','N','Y','Y','Y','Z','2','Fixed
Amount',96,96,NULL,NULL,NULL,3,NULL,'0.00','10','100.00',NULL,'2021-01-22
05:48:16','2023-03-02 01:52:32',NULL,250,250,NULL),(78,'LIB','Library
Fee','Miscellaneous','Y','Y','Y','N','Y','N','Y','AA','2','Fixed
Amount',96,96,NULL,NULL,NULL,3,NULL,'0.00','10','350.00',NULL,'2021-01-22
05:48:49','2023-03-02 01:52:49',NULL,250,250,NULL),(79,'MED','Medical & Dental
Fee','Miscellaneous','Y','Y','Y','N','Y','Y','Y','AB','2','Fixed
Amount',96,96,NULL,NULL,NULL,3,NULL,'0.00','11','200.00',NULL,'2021-01-22
05:49:28','2023-03-02 01:53:06',NULL,250,250,NULL),(80,'BOOK','Handbook
Fee','Miscellaneous','Y','N','Y','N','Y','Y','Y','Y','2','Fixed
Amount',96,96,NULL,NULL,NULL,3,NULL,'0.00','12','75.00',NULL,'2021-01-22
05:50:05','2023-03-02 01:52:17',NULL,250,250,NULL),(82,'REG','Registration
Fee','Miscellaneous','Y','Y','Y','N','Y','Y','Y','AC','2','Fixed
Amount',97,97,NULL,NULL,NULL,3,NULL,'0.00','3','75.00',NULL,'2021-01-22
05:51:50','2023-03-02 01:53:24',NULL,250,250,NULL),(83,'LATE','Late
Registration','Other','Y','N','Y','N','Y','N','N',NULL,NULL,'Per
Day',97,97,NULL,NULL,NULL,3,NULL,'0.00','3','100.00',NULL,'2021-01-22
05:52:50','2022-08-01 06:56:46',NULL,250,250,NULL),(84,'ID','Student ID
Fee','Miscellaneous','Y','N','Y','N','Y','Y','Y','AD','2','Fixed
Amount',99,99,NULL,NULL,NULL,4,NULL,'0.00','2','100.00',NULL,'2021-01-22
07:11:21','2023-03-02 01:53:41',NULL,250,250,NULL),(85,'ADM','Admission
Fee','Miscellaneous','Y','N','Y','N','Y','Y','Y','V','2','Fixed
Amount',97,97,NULL,NULL,NULL,3,NULL,'0.00','16','150.00',NULL,'2021-01-22
07:53:44','2021-11-04 06:14:16',NULL,250,250,NULL),(90,'ADD','Add and
Drop','Other','Y','N','Y','N','Y','Y',NULL,NULL,NULL,'Per
Subject',96,96,NULL,NULL,NULL,3,NULL,'0.00','16','50.00',NULL,'2021-01-27
00:51:47','2021-06-23 07:33:58',NULL,73,250,NULL),(91,'SMA','Student Mutual Aid
Fee','Other','Y','N','Y','N','Y','N','N',NULL,NULL,'Fixed
Amount',87,87,NULL,NULL,NULL,3,NULL,'0.00','1','25.00',NULL,'2021-01-27
00:53:41','2022-08-01 06:56:01',NULL,73,250,NULL),(92,'RLE','Related Learning
Experience','Other','Y','N','Y','N','Y','Y','N',NULL,NULL,'Per
Subject',96,96,NULL,NULL,NULL,3,NULL,'0.00','20','0.00',NULL,'2021-02-02
00:31:22','2021-06-23 08:08:29',NULL,250,78,NULL),(100,'ENROLL','Certificate of
Enrollment','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','30.00',NULL,'2021-06-29
02:27:48','2022-08-01 06:49:43',NULL,250,250,NULL),(101,'TF-CAE','Tuition
Fee','Tuition','Y','Y','N','N','N','Y','N',NULL,NULL,'Per
Unit',16,16,NULL,95,NULL,3,NULL,'0.00','4','300.00',NULL,'2021-07-02
03:48:35','2022-08-01 06:57:34',NULL,250,250,NULL),(102,'ORG-CAE','Organization
Fee','Miscellaneous','Y','Y','N','N','N','Y','N',NULL,NULL,'Fixed
Amount',16,16,NULL,87,NULL,3,NULL,'0.00','12','50.00',NULL,'2021-07-02
04:04:47','2021-07-02 04:37:25',NULL,250,250,NULL),(103,'EXT-CAE','Extension &
Training Fee','Miscellaneous','Y','Y','N','N','N','Y','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','11','100.00',NULL,'2021-07-02
04:08:56','2021-07-02 04:36:52',NULL,250,250,NULL),(104,'LIB-CAE','Library
Fee','Miscellaneous','Y','Y','N','N','N','Y','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','7','400.00',NULL,'2021-07-02
04:10:51','2021-07-02 04:10:51',NULL,250,NULL,NULL),(105,'REG-CAE','Registration
Fee','Miscellaneous','Y','Y','N','N','N','Y','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','3','100.00',NULL,'2021-07-02
04:12:02','2022-08-01 06:56:53',NULL,250,250,NULL),(106,'CUL-CAE','Cultural
Fee','Miscellaneous','Y','Y','N','N','N','Y','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','8','60.00',NULL,'2021-07-02
04:13:53','2021-07-02 04:13:53',NULL,250,NULL,NULL),(107,'DEN-CAE','Dental Services
Fee','Miscellaneous','Y','Y','N','N','N','Y','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','6','100.00',NULL,'2021-07-02
04:15:12','2021-07-02 04:36:26',NULL,250,250,NULL),(108,'EMF-CAE','Equipment
Modernization Fee','Miscellaneous','Y','Y','N','N','N','Y','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','3','500.00',NULL,'2021-07-02
04:18:58','2021-07-02 04:18:58',NULL,250,NULL,NULL),(109,'RES-CAE','Research
Fee','Miscellaneous','Y','Y','N','N','N','Y','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','9','150.00',NULL,'2021-07-02
04:20:27','2021-07-02 04:20:27',NULL,250,NULL,NULL),(110,'MED-CAE','Medical
Fee','Miscellaneous','Y','Y','N','N','N','Y','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','5','100.00',NULL,'2021-07-02
04:22:15','2021-07-02 04:22:15',NULL,250,NULL,NULL),(111,'RJ-CAE','Research Journal
Fee','Miscellaneous','Y','Y','N','N','N','Y','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','10','120.00',NULL,'2021-07-02
04:26:43','2021-07-02 04:26:43',NULL,250,NULL,NULL),(112,'INT-CAE','Internet
Fee','Miscellaneous','Y','Y','N','N','N','Y','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','4','300.00',NULL,'2021-07-02
04:30:14','2021-07-02 04:30:14',NULL,250,NULL,NULL),(113,'CNF-CAE','College
Newsletter Fee','Miscellaneous','Y','Y','N','N','N','Y','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','14','60.00',NULL,'2021-07-02
04:34:46','2021-07-02 04:34:46',NULL,250,NULL,NULL),(114,'REPLACE','Replacement of
Assessment','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','30.00',NULL,'2021-07-05
07:16:27','2022-08-01 06:49:50',NULL,250,250,NULL),(115,'SOA','Statement of
Accounts','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','30.00',NULL,'2021-07-05
07:33:15','2022-08-01 06:49:55',NULL,250,250,NULL),(116,'OD','Officially
Dropped','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','0','125.00',NULL,'2021-07-22
05:51:09','2022-08-01 06:50:01',NULL,250,250,NULL),(117,'IDREP','ID
Replacement','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,99,NULL,4,NULL,'0.00','0','150.00',NULL,'2021-07-23
05:40:35','2022-08-01 06:50:07',NULL,250,250,NULL),(118,'APP-CODETE','Application
Fee','Miscellaneous','Y','N','N','Y','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','1','5000.00',NULL,'2021-08-25
04:00:54','2021-08-25 04:04:32',NULL,250,250,NULL),(119,'ID-CODETE','Student ID
Fee','Miscellaneous','Y','N','N','Y','N','N','N',NULL,NULL,NULL,16,16,NULL,96,NULL,
4,NULL,'0.00','2','200.00',NULL,'2021-08-25 04:43:17','2022-08-01
06:56:20',NULL,250,250,NULL),(120,'LIB-CODETE','Library
Fee','Miscellaneous','Y','Y','N','Y','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','4','500.00',NULL,'2021-08-25
04:44:50','2021-08-25 04:45:36',NULL,250,250,NULL),(121,'EMF-CODETE','Equipment
Modernization Fee','Miscellaneous','Y','Y','N','Y','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','5','1000.00',NULL,'2021-08-25
04:54:47','2021-08-25 04:54:47',NULL,250,NULL,NULL),(122,'RES-CODETE','Research
Fee','Miscellaneous','Y','Y','N','Y','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','6','250.00',NULL,'2021-08-25
04:56:17','2021-08-25 04:56:17',NULL,250,NULL,NULL),(123,'EXT-CODETE','Extension &
Training Fee','Miscellaneous','Y','Y','N','Y','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','7','250.00',NULL,'2021-08-25
04:57:43','2021-08-25 04:57:43',NULL,250,NULL,NULL),(124,'RJ-CODETE','Research
Journal Fee','Miscellaneous','Y','Y','N','Y','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','8','150.00',NULL,'2021-08-25
04:58:50','2021-08-25 04:58:50',NULL,250,NULL,NULL),(125,'MGMT-CODETE','Management
Fee','Miscellaneous','Y','N','N','Y','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','9','6000.00',NULL,'2021-08-25
05:08:53','2021-08-25 05:08:53',NULL,250,NULL,NULL),(126,'DORM','Dorm Fee','Non-
Assess','N','N','N','N','N','N','N',NULL,NULL,NULL,16,16,NULL,98,NULL,3,NULL,'0.00'
,'0','1750.00',NULL,'2021-08-31 07:13:01','2022-08-01 06:50:13',NULL,491,250,NULL),
(127,'AFF','Affiliation Fee -
Nursing','Other','Y','N','Y','N','Y','N','N',NULL,NULL,'Per
Subject',16,16,NULL,96,NULL,3,NULL,'0.00','35','0.00',NULL,'2021-12-02
02:03:36','2023-01-12 01:35:15',NULL,250,250,NULL),(128,'USER','User\'s
Fee','Other','Y','N','Y','N','Y','N','N',NULL,NULL,'Per
Subject',16,16,NULL,NULL,NULL,3,NULL,'0.00','36','0.00',NULL,'2021-12-02
02:04:04','2021-12-02 02:04:04',NULL,250,NULL,NULL),(129,'TOR','Transcript of
Records','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','50.00',NULL,'2022-01-07
00:39:46','2022-01-07 00:39:46',NULL,250,NULL,NULL),(130,'TRANSFER','Transfer
Credentials','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','50.00',NULL,'2022-01-07
00:40:40','2022-01-07 00:40:40',NULL,250,NULL,NULL),(131,'GMC','Good Moral','Non-
Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','30.00',NULL,'2022-01-07
00:41:36','2022-01-07 00:41:36',NULL,250,NULL,NULL),(132,'GRADES','True Copy of
Grades','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','30.00',NULL,'2022-01-07
00:44:28','2022-01-07 00:44:28',NULL,250,NULL,NULL),(133,'COMPLETION','Completion
of Grades','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',96,96,NULL,16,NULL,3,NULL,'0.00','0','30.00',NULL,'2022-03-02
00:44:22','2023-03-06 05:27:17',NULL,250,78,NULL),(134,'THESIS I','Thesis I -
Proposal Fee','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,87,NULL,3,NULL,'0.00','0','5625.00',NULL,'2022-05-31
06:33:34','2022-08-01 06:50:20',NULL,250,250,NULL),(135,'THESIS II','Thesis II -
Defense Fee','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,87,NULL,3,NULL,'0.00','0','5625.00',NULL,'2022-05-31
06:34:15','2022-08-01 06:50:26',NULL,250,250,NULL),(136,'DISSERT I','Dissertation I
- Proposal Fee','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,87,NULL,3,NULL,'0.00','0','9350.00',NULL,'2022-05-31
06:35:08','2022-08-01 06:50:39',NULL,250,250,NULL),(137,'DISSERT II','Dissertation
II - Defense Fee','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,87,NULL,3,NULL,'0.00','0','9350.00',NULL,'2022-05-31
06:35:44','2022-08-01 06:50:44',NULL,250,250,NULL),(138,'EARNED','Certification -
Earned Units','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','30.00',NULL,'2022-06-10
03:13:50','2022-08-01 06:50:32',NULL,250,250,NULL),(139,'ENGLISH','Certification -
English as a medium of instruction','Non-
Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','30.00',NULL,'2022-06-13
05:33:37','2022-08-01 06:50:49',NULL,250,250,NULL),(140,'GUIDE-DTE','Guidance and
Counseling Fee','Miscellaneous','Y','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','64','50.00',NULL,'2022-06-13
08:16:10','2022-06-13 08:16:10',NULL,250,NULL,NULL),(141,'ID-REP','Student ID Fee
(Replacement)','Other','Y','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','2','150.00',NULL,'2022-06-30
07:45:56','2022-08-01 06:56:25',NULL,250,250,NULL),(142,'GRAD','Graduation
Fee','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','300.00',NULL,'2022-07-06
03:02:51','2022-08-01 06:51:05',NULL,250,250,NULL),(143,'DIP','Diploma Fee','Non-
Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','200.00',NULL,'2022-07-06
03:03:50','2022-08-01 06:51:10',NULL,250,250,NULL),(144,'UAC','Unified Alumni
Contribution','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,87,NULL,3,NULL,'0.00','0','150.00',NULL,'2022-07-06
03:05:28','2022-08-01 06:51:15',NULL,250,250,NULL),(145,'TREE','Tree
Planting','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','200.00',NULL,'2022-07-06
03:08:16','2022-08-01 06:51:20',NULL,250,250,NULL),(146,'BILL','Certificate of
Enrollment & Billing','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','30.00',NULL,'2022-07-08
01:06:55','2022-08-01 06:51:25',NULL,250,250,NULL),(147,'HABITAT','Habitat
Fee','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,98,NULL,3,NULL,'0.00','0','1750.00',NULL,'2022-07-14
01:21:20','2022-08-18 00:54:14',NULL,250,250,NULL),(148,'PSYCHO','Psychological
Exam','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','150.00',NULL,'2022-08-01
04:33:29','2022-08-01 04:33:29',NULL,250,NULL,NULL),(149,'GWA','Certification -
General Weighted Average','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','30.00',NULL,'2022-08-03
01:46:11','2022-08-03 01:46:11',NULL,250,NULL,NULL),
(150,'AUTHEN','Authentication','Non-
Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','30.00',NULL,'2022-08-10
03:06:42','2022-08-10
03:06:42',NULL,250,NULL,NULL),(151,'ADD/CHANGE','Add/Change','Non-
Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','50.00',NULL,'2022-08-12
04:48:46','2022-08-12 04:49:47',NULL,250,250,NULL),(152,'CERT-
GRADES','Certification - Grades','Non-
Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','30.00',NULL,'2022-08-18
00:48:58','2022-08-18 00:48:58',NULL,250,NULL,NULL),(153,'CAV','Certification,
Authentication, Verification','Non-
Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','80.00',NULL,'2022-08-23
07:22:44','2022-08-23 07:22:44',NULL,250,NULL,NULL),(154,'PASS-M','Gate Pass -
Motorcycle','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,99,NULL,4,NULL,'0.00','0','40.00',NULL,'2022-08-24
05:55:52','2023-02-10 03:07:55',NULL,250,250,NULL),(155,'PASS-C','Gate Pass -
Car','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,99,NULL,4,NULL,'0.00','0','80.00',NULL,'2022-08-24
05:56:24','2023-02-10 03:08:00',NULL,250,250,NULL),(156,'PIC','ID Picture','Non-
Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,99,NULL,4,NULL,'0.00','0','60.00',NULL,'2022-08-25
06:43:49','2022-08-25 06:43:49',NULL,250,NULL,NULL),(157,'SPL-EXM','Special
Examination Fee','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Per
Subject',16,16,NULL,97,NULL,3,NULL,'0.00','0','20.00',NULL,'2022-11-15
07:13:00','2022-11-15 07:13:00',NULL,250,NULL,NULL),
(158,'CERT','Certification','Non-
Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','30.00',NULL,'2022-12-01
08:32:35','2022-12-01 08:32:35',NULL,250,NULL,NULL),(159,'TF-DTE','Tuition Fee -
DTE','Tuition','Y','N','N','N','Y','Y','N',NULL,NULL,'Per
Unit',16,16,NULL,95,NULL,3,NULL,'0.00','4','350.00',NULL,'2022-12-06
08:07:23','2022-12-06 08:15:28',NULL,250,250,NULL),(160,'DRIVE','Driving
Fee','Other','Y','N','N','N','N','N','N',NULL,NULL,NULL,16,16,NULL,96,NULL,3,NULL,'
0.00','10','250.00',NULL,'2023-01-05 04:15:41','2023-01-20
01:01:56',NULL,250,250,NULL),(161,'COMBAT','Combat Shooting
Fee','Other','Y','N','N','N','N','N','N',NULL,NULL,NULL,16,16,NULL,96,NULL,3,NULL,'
0.00','11','375.00',NULL,'2023-01-05 04:17:56','2023-06-27
01:42:03',NULL,250,250,NULL),(162,'AFF-EDUC','Affiliation Fee -
Education','Other','Y','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','15','600.00',NULL,'2023-01-12
01:34:46','2023-01-12 01:34:46',NULL,250,NULL,NULL),(163,'AFF-CRIM','Affiliation
Fee - Criminology','Other','Y','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,96,NULL,3,NULL,'0.00','16','150.00',NULL,'2023-01-12
01:36:14','2023-01-12 01:36:14',NULL,250,NULL,NULL),(164,'MA','Student Mutual
Aid','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,87,NULL,3,NULL,'0.00','1','25.00',NULL,'2023-01-23
01:45:23','2023-01-23 01:45:23',NULL,250,NULL,NULL),(165,'COMPRE','Comprehensive
Examination Fee','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,87,NULL,3,NULL,'0.00','0','0.00',NULL,'2023-09-14
13:52:20','2023-09-14 13:52:20',NULL,250,NULL,NULL),(166,'REP-PERMIT','Replacement
of Test Permit','Non-Assess','N','N','N','N','N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,97,NULL,3,NULL,'0.00','0','30.00',NULL,'2023-10-24
10:26:27','2023-10-24 10:26:27',NULL,250,NULL,NULL),(167,'FOOD','Assessment - Food
Processing NCII','Non-School','N','N','N',NULL,'N','N','N',NULL,NULL,'Fixed
Amount',16,16,NULL,87,NULL,5,NULL,'0.00','0','1090.00',NULL,'2024-01-08
09:57:10','2024-01-12 09:11:18',NULL,250,250,NULL),(168,'LATE-ENROL','Late
Registration','Non-
Assess','N','N','N',NULL,'N','N','N',NULL,NULL,NULL,16,16,NULL,97,NULL,3,NULL,'0.00
','0','100.00',NULL,'2024-01-25 10:07:54','2024-01-25 10:10:42',NULL,250,250,NULL);

/*Table structure for table `db_funds` */

DROP TABLE IF EXISTS `db_funds`;


CREATE TABLE `db_funds` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`code` varchar(15) DEFAULT NULL,
`name` varchar(250) DEFAULT NULL,
`number` varchar(15) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL ON UPDATE current_timestamp(),
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` int(11) DEFAULT NULL,
`updated_user_id` int(11) DEFAULT NULL,
`deleted_user_id` int(11) DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;

/*Data for the table `db_funds` */

insert into
`db_funds`(`id`,`code`,`name`,`number`,`created_at`,`updated_at`,`deleted_at`,`crea
ted_user_id`,`updated_user_id`,`deleted_user_id`) values (3,'STF','Special Trust
Fund','1','2021-01-21 07:39:41','2021-01-21 07:39:41',NULL,78,NULL,NULL),
(4,'IGP','IGP Fund','2','2021-01-21 07:40:00','2021-01-21
07:40:00',NULL,78,NULL,NULL),(5,'TF2','Trust Fund 2','3','2024-01-08
09:27:45','2024-01-08 09:27:45',NULL,250,NULL,NULL);

/*Table structure for table `db_nature_collection` */

DROP TABLE IF EXISTS `db_nature_collection`;

CREATE TABLE `db_nature_collection` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`code` varchar(20) DEFAULT NULL,
`name` varchar(250) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL ON UPDATE current_timestamp(),
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` int(11) DEFAULT NULL,
`updated_user_id` int(11) DEFAULT NULL,
`deleted_user_id` int(11) DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

/*Data for the table `db_nature_collection` */

/*Table structure for table `employment_category` */

DROP TABLE IF EXISTS `employment_category`;

CREATE TABLE `employment_category` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_unicode_ci;

/*Data for the table `employment_category` */

insert into `employment_category`(`id`,`name`) values (1,'Contract of Service'),


(2,'Temporary'),(3,'Permanent'),(4,'Casual'),(5,'Co-Terminus');
/*Table structure for table `fees` */

DROP TABLE IF EXISTS `fees`;

CREATE TABLE `fees` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`code` varchar(250) DEFAULT NULL,
`name` varchar(250) DEFAULT NULL,
`fee_type` varchar(250) DEFAULT NULL,
`is_assess` varchar(1) DEFAULT NULL,
`is_general` varchar(1) DEFAULT NULL,
`is_refundable` varchar(1) DEFAULT NULL,
`scheme` varchar(25) DEFAULT NULL,
`or_account` int(11) DEFAULT NULL,
`nature_of_collection_id` int(11) DEFAULT NULL,
`vat` varchar(20) DEFAULT NULL,
`priority` varchar(20) DEFAULT NULL,
`value` decimal(10,2) DEFAULT 0.00,
`remarks` varchar(250) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` int(11) DEFAULT NULL,
`updated_user_id` int(11) DEFAULT NULL,
`deleted_user_id` int(11) DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=165 DEFAULT CHARSET=latin1;

/*Data for the table `fees` */

/*Table structure for table `fees_type` */

DROP TABLE IF EXISTS `fees_type`;

CREATE TABLE `fees_type` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(250) DEFAULT NULL,
`is_assessment` varchar(5) DEFAULT NULL,
`is_gov_charge` varchar(1) DEFAULT 'N',
`mandatory_scheme` varchar(20) DEFAULT NULL,
`order_no` varchar(50) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL ON UPDATE current_timestamp(),
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` int(11) DEFAULT NULL,
`updated_user_id` int(11) DEFAULT NULL,
`deleted_user_id` int(11) DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=latin1;

/*Data for the table `fees_type` */

insert into
`fees_type`(`id`,`name`,`is_assessment`,`is_gov_charge`,`mandatory_scheme`,`order_n
o`,`created_at`,`updated_at`,`deleted_at`,`created_user_id`,`updated_user_id`,`dele
ted_user_id`) values (7,'Generation & Transmission
Charges','N','N',NULL,'01','2024-10-02 23:08:39','2024-10-02
23:08:39',NULL,250,21,NULL),(8,'Distribution Charges','Y','N',NULL,NULL,'2024-10-02
05:05:05','2024-10-02 04:55:23',NULL,250,21,NULL),
(9,'Others','Y','N',NULL,NULL,'2024-10-02 05:05:06','2024-10-02
04:55:37',NULL,250,21,NULL),(10,'Local Trans','Y','N',NULL,NULL,'2024-10-02
05:05:06','2024-10-02 04:57:16',NULL,250,21,NULL),
(12,'VAT','N','Y',NULL,NULL,'2024-10-02 05:05:09','2024-10-02
04:58:32',NULL,250,21,NULL),(13,'Universal Charges','N','Y',NULL,NULL,'2024-10-02
05:05:10','2024-10-02 04:58:43',NULL,250,21,NULL);

/*Table structure for table `hr_accounts` */

DROP TABLE IF EXISTS `hr_accounts`;

CREATE TABLE `hr_accounts` (


`id` int(50) NOT NULL AUTO_INCREMENT,
`school_id` varchar(15) DEFAULT NULL,
`code` varchar(15) DEFAULT NULL,
`user_id_or_name` varchar(100) DEFAULT NULL,
`type` int(1) DEFAULT NULL,
`can_schedule` varchar(1) DEFAULT 'Y',
`created_at` timestamp NULL DEFAULT NULL ON UPDATE current_timestamp(),
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` int(11) DEFAULT NULL,
`updated_user_id` int(11) DEFAULT NULL,
`deleted_user_id` int(11) DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;

/*Data for the table `hr_accounts` */

/*Table structure for table `hr_applicant_address` */

DROP TABLE IF EXISTS `hr_applicant_address`;

CREATE TABLE `hr_applicant_address` (


`id` int(200) NOT NULL AUTO_INCREMENT,
`user_applicant_id` varchar(200) DEFAULT NULL,
`perm_add_country` varchar(200) DEFAULT NULL,
`perm_add_region` varchar(200) DEFAULT NULL,
`perm_add_province` varchar(250) DEFAULT NULL,
`perm_add_town` varchar(250) DEFAULT NULL,
`perm_add_barangay` varchar(250) DEFAULT NULL,
`perm_add_street` varchar(250) DEFAULT NULL,
`perm_add_zip` varchar(100) DEFAULT NULL,
`pres_add_country` varchar(200) DEFAULT NULL,
`pres_add_region` varchar(200) DEFAULT NULL,
`pres_add_province` varchar(100) DEFAULT NULL,
`pres_add_town` varchar(100) DEFAULT NULL,
`pres_add_barangay` varchar(200) DEFAULT NULL,
`pres_add_street` varchar(100) DEFAULT NULL,
`pres_add_zip` varchar(100) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` varchar(200) DEFAULT NULL,
`updated_user_id` varchar(200) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4;

/*Data for the table `hr_applicant_address` */


insert into
`hr_applicant_address`(`id`,`user_applicant_id`,`perm_add_country`,`perm_add_region
`,`perm_add_province`,`perm_add_town`,`perm_add_barangay`,`perm_add_street`,`perm_a
dd_zip`,`pres_add_country`,`pres_add_region`,`pres_add_province`,`pres_add_town`,`p
res_add_barangay`,`pres_add_street`,`pres_add_zip`,`created_at`,`updated_at`,`delet
ed_at`,`created_user_id`,`updated_user_id`) values
(6,'26','Philippines','1','1','1','1','Nunhabatan','3605',NULL,'1','1','1','1','Nun
habatan','3605',NULL,'2024-08-14 14:19:01',NULL,NULL,'26');

/*Table structure for table `hr_applicant_children` */

DROP TABLE IF EXISTS `hr_applicant_children`;

CREATE TABLE `hr_applicant_children` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`user_applicant_id` varchar(100) DEFAULT NULL,
`name` varchar(100) DEFAULT NULL,
`bday` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

/*Data for the table `hr_applicant_children` */

/*Table structure for table `hr_applicant_cs` */

DROP TABLE IF EXISTS `hr_applicant_cs`;

CREATE TABLE `hr_applicant_cs` (


`id` int(255) NOT NULL AUTO_INCREMENT,
`user_applicant_id` varchar(50) DEFAULT NULL,
`name` varchar(300) DEFAULT NULL,
`rate` varchar(10) DEFAULT NULL,
`date` varchar(30) DEFAULT NULL,
`place` varchar(300) DEFAULT NULL,
`number` varchar(30) DEFAULT NULL,
`valid_date` varchar(30) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;

/*Data for the table `hr_applicant_cs` */

insert into
`hr_applicant_cs`(`id`,`user_applicant_id`,`name`,`rate`,`date`,`place`,`number`,`v
alid_date`,`created_at`,`updated_at`) values
(1,'23','N/A','N/A','N/A','N/A','N/A','N/A','2021-02-15 11:10:50','2021-02-15
11:10:50'),(2,'26','N/A','N/A','N/A','N/A','N/A','N/A','2024-07-24 10:07:10','2024-
07-24 10:07:10');

/*Table structure for table `hr_applicant_current_employment` */

DROP TABLE IF EXISTS `hr_applicant_current_employment`;

CREATE TABLE `hr_applicant_current_employment` (


`id` int(255) NOT NULL AUTO_INCREMENT,
`company_id` varchar(255) DEFAULT NULL,
`user_applicant_id` varchar(50) DEFAULT NULL,
`position_category` varchar(100) DEFAULT NULL,
`position_id` varchar(500) DEFAULT NULL,
`position` varchar(200) DEFAULT NULL,
`date_start_from` date DEFAULT NULL,
`school_id` varchar(255) DEFAULT NULL,
`sg` varchar(100) DEFAULT NULL,
`salary` decimal(18,2) DEFAULT NULL,
`job_type` varchar(20) DEFAULT NULL,
`salary_type` varchar(20) DEFAULT NULL,
`emp_status` varchar(10) DEFAULT NULL,
`department_office` varchar(20) DEFAULT NULL,
`status` varchar(100) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` varchar(100) DEFAULT NULL,
`updated_user_id` varchar(100) DEFAULT NULL,
`deleted_user_id` varchar(100) DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;

/*Data for the table `hr_applicant_current_employment` */

insert into
`hr_applicant_current_employment`(`id`,`company_id`,`user_applicant_id`,`position_c
ategory`,`position_id`,`position`,`date_start_from`,`school_id`,`sg`,`salary`,`job_
type`,`salary_type`,`emp_status`,`department_office`,`status`,`created_at`,`updated
_at`,`deleted_at`,`created_user_id`,`updated_user_id`,`deleted_user_id`) values
(1,'2','26','6','28','Instructor I','2024-08-
16','3','12','27000.00','Teaching','Daily',NULL,'10','A','2024-08-17
21:33:42','2024-08-17 21:37:20',NULL,'2','2',NULL);

/*Table structure for table `hr_applicant_educ` */

DROP TABLE IF EXISTS `hr_applicant_educ`;

CREATE TABLE `hr_applicant_educ` (


`id` int(255) NOT NULL AUTO_INCREMENT,
`user_applicant_id` varchar(50) DEFAULT NULL,
`e_level` varchar(100) DEFAULT NULL,
`e_name` varchar(150) DEFAULT NULL,
`e_course` varchar(150) DEFAULT NULL,
`e_periodfr` varchar(50) DEFAULT NULL,
`e_periodto` varchar(50) DEFAULT NULL,
`hlue` varchar(20) DEFAULT NULL,
`yg` varchar(20) DEFAULT NULL,
`sahr` varchar(100) DEFAULT NULL,
`r_status` varchar(1) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;

/*Data for the table `hr_applicant_educ` */

insert into
`hr_applicant_educ`(`id`,`user_applicant_id`,`e_level`,`e_name`,`e_course`,`e_perio
dfr`,`e_periodto`,`hlue`,`yg`,`sahr`,`r_status`,`created_at`,`updated_at`) values
(1,'23','Elementary','Paniki High
School','N/A','2001','2006','N/A','2006','N/A','A','2021-02-15 11:10:19','2021-02-
15 11:10:19'),(2,'26','Elementary','Paniki Elementary
School','N/A','2002','2006','N/A','2006','N/A','A','2024-07-24 10:05:21','2024-07-
24 10:05:21'),(3,'26','High School','Paniki High
School','N/A','2006','2011','N/A','2011','N/A','A','2024-07-24 10:05:43','2024-07-
24 10:05:43'),(4,'26','College','Ifugao State University','Bachelor of Science in
Information Technology','2011','2016',NULL,'2016','Best Thesis of the
Year','A','2024-07-24 10:06:50','2024-07-24 10:06:50');

/*Table structure for table `hr_applicant_employment_history` */

DROP TABLE IF EXISTS `hr_applicant_employment_history`;

CREATE TABLE `hr_applicant_employment_history` (


`id` int(255) NOT NULL AUTO_INCREMENT,
`current_employment_id` int(100) DEFAULT NULL,
`company_id` varchar(255) DEFAULT NULL,
`user_applicant_id` varchar(50) DEFAULT NULL,
`position_category` varchar(100) DEFAULT NULL,
`position_id` varchar(500) DEFAULT NULL,
`position` varchar(200) DEFAULT NULL,
`date_start_from` date DEFAULT NULL,
`date_end_to` date DEFAULT NULL,
`department_office` varchar(255) DEFAULT NULL,
`school_id` varchar(255) DEFAULT NULL,
`sg` varchar(100) DEFAULT NULL,
`salary` decimal(18,2) DEFAULT NULL,
`salary_type` varchar(100) DEFAULT NULL,
`job_type` varchar(100) DEFAULT NULL,
`emp_status` varchar(100) DEFAULT NULL,
`status` varchar(20) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` varchar(100) DEFAULT NULL,
`updated_user_id` varchar(100) DEFAULT NULL,
`deleted_user_id` varchar(100) DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;

/*Data for the table `hr_applicant_employment_history` */

insert into
`hr_applicant_employment_history`(`id`,`current_employment_id`,`company_id`,`user_a
pplicant_id`,`position_category`,`position_id`,`position`,`date_start_from`,`date_e
nd_to`,`department_office`,`school_id`,`sg`,`salary`,`salary_type`,`job_type`,`emp_
status`,`status`,`created_at`,`updated_at`,`deleted_at`,`created_user_id`,`updated_
user_id`,`deleted_user_id`) values (1,NULL,'2','26','6','28','Instructor I','2024-
08-16',NULL,'10','3','12','27000.00','Daily','Teaching',NULL,'A','2024-08-17
21:37:20','2024-08-17 21:37:20',NULL,NULL,'2',NULL);

/*Table structure for table `hr_applicant_ld` */

DROP TABLE IF EXISTS `hr_applicant_ld`;

CREATE TABLE `hr_applicant_ld` (


`id` int(255) NOT NULL AUTO_INCREMENT,
`user_applicant_id` varchar(50) DEFAULT NULL,
`name` varchar(500) DEFAULT NULL,
`date_fr` varchar(30) DEFAULT NULL,
`date_to` varchar(30) DEFAULT NULL,
`hours` varchar(10) DEFAULT NULL,
`type` varchar(50) DEFAULT NULL,
`sponsor` varchar(200) DEFAULT NULL,
`level` varchar(30) DEFAULT NULL,
`is_removed` varchar(10) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;

/*Data for the table `hr_applicant_ld` */

insert into
`hr_applicant_ld`(`id`,`user_applicant_id`,`name`,`date_fr`,`date_to`,`hours`,`type
`,`sponsor`,`level`,`is_removed`,`created_at`,`updated_at`) values
(1,'23','N/A','N/A','N/A','N/A','N/A','N/A','Local',NULL,'2021-02-15
11:12:42','2021-02-15 11:12:42'),(2,'26','Monitoring, Evaluation and Workshop on
University In-House
Systems','06/25/2024','06/26/2024','16.00','Supervisory','Ifugao State
University','Local',NULL,'2024-07-24 10:11:08','2024-07-24 10:11:08');

/*Table structure for table `hr_applicant_parents` */

DROP TABLE IF EXISTS `hr_applicant_parents`;

CREATE TABLE `hr_applicant_parents` (


`id` int(255) NOT NULL AUTO_INCREMENT,
`user_applicant_id` varchar(50) DEFAULT NULL,
`f_fname` varchar(50) DEFAULT NULL,
`f_mname` varchar(50) DEFAULT NULL,
`f_lname` varchar(50) DEFAULT NULL,
`f_extension` varchar(5) DEFAULT NULL,
`m_maiden` varchar(150) DEFAULT NULL,
`m_fname` varchar(50) DEFAULT NULL,
`m_mname` varchar(50) DEFAULT NULL,
`m_lname` varchar(50) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;

/*Data for the table `hr_applicant_parents` */

insert into
`hr_applicant_parents`(`id`,`user_applicant_id`,`f_fname`,`f_mname`,`f_lname`,`f_ex
tension`,`m_maiden`,`m_fname`,`m_mname`,`m_lname`,`created_at`,`updated_at`) values
(1,'23','Amado','Mostrales','Llamar','Sr.','Morales','Marilou','Abon','Llamar','202
1-02-15 10:58:47',NULL),
(2,'26','Amado','Mostrales','Llamar','Sr.','Morales','Marilou','Abon','Llamar','202
4-07-24 10:04:29',NULL);

/*Table structure for table `hr_applicant_photos` */

DROP TABLE IF EXISTS `hr_applicant_photos`;

CREATE TABLE `hr_applicant_photos` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`user_applicant_id` int(11) DEFAULT NULL,
`location` mediumtext DEFAULT NULL,
`filename` mediumtext DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` varchar(11) DEFAULT NULL,
`updated_user_id` varchar(11) DEFAULT NULL,
`deleted_user_id` varchar(11) DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;

/*Data for the table `hr_applicant_photos` */

/*Table structure for table `hr_applicant_photos_attached` */

DROP TABLE IF EXISTS `hr_applicant_photos_attached`;

CREATE TABLE `hr_applicant_photos_attached` (


`id` int(100) NOT NULL AUTO_INCREMENT,
`user_applicant_id` int(100) DEFAULT NULL,
`location` mediumtext DEFAULT NULL,
`folder` varchar(250) DEFAULT NULL,
`filename` mediumtext DEFAULT NULL,
`type` varchar(20) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` varchar(11) DEFAULT NULL,
`updated_user_id` varchar(11) DEFAULT NULL,
`deleted_user_id` varchar(11) DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

/*Data for the table `hr_applicant_photos_attached` */

/*Table structure for table `hr_applicant_ref` */

DROP TABLE IF EXISTS `hr_applicant_ref`;

CREATE TABLE `hr_applicant_ref` (


`id` int(255) NOT NULL AUTO_INCREMENT,
`user_applicant_id` varchar(50) DEFAULT NULL,
`name` varchar(150) DEFAULT NULL,
`address` varchar(200) DEFAULT NULL,
`tel_no` varchar(50) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;

/*Data for the table `hr_applicant_ref` */

insert into
`hr_applicant_ref`(`id`,`user_applicant_id`,`name`,`address`,`tel_no`,`created_at`,
`updated_at`) values (1,'23','Resnef B. Immatong','Lamut','09754258488','2021-02-15
11:13:08','2021-02-15 11:13:08'),(2,'26','Fedelym L. Pugong','Lamut,
Ifugao','09169321847','2024-07-24 10:12:41','2024-07-24 10:12:41');
/*Table structure for table `hr_applicant_requirements_attached` */

DROP TABLE IF EXISTS `hr_applicant_requirements_attached`;

CREATE TABLE `hr_applicant_requirements_attached` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`user_applicant_id` int(11) DEFAULT NULL,
`requirement_type` varchar(30) DEFAULT NULL,
`location` mediumtext DEFAULT NULL,
`folder` varchar(250) DEFAULT NULL,
`orig_name` mediumtext DEFAULT NULL,
`filename` mediumtext DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` varchar(11) DEFAULT NULL,
`updated_user_id` varchar(11) DEFAULT NULL,
`deleted_user_id` varchar(11) DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6950 DEFAULT CHARSET=latin1;

/*Data for the table `hr_applicant_requirements_attached` */

insert into
`hr_applicant_requirements_attached`(`id`,`user_applicant_id`,`requirement_type`,`l
ocation`,`folder`,`orig_name`,`filename`,`created_at`,`updated_at`,`deleted_at`,`cr
eated_user_id`,`updated_user_id`,`deleted_user_id`) values
(49,45,'TOR','applicants_certifications/U45T1667967951.pdf','applicants_certificati
ons','Annex-A4 Network Layout.pdf','U45T1667967951.pdf','2022-03-01
02:05:20','2022-11-09 04:25:51',NULL,'45','45',NULL),
(56,431,'COE','applicants_certifications/
U431T1646232083.pdf','applicants_certifications','Service
Record.pdf','U431T1646232083.pdf','2022-03-02 14:41:23','2022-03-02
14:41:23',NULL,'431',NULL,NULL),(57,431,'TOR','applicants_certifications/
U431T1646232127.pdf','applicants_certifications','TOR
MIKZ.pdf','U431T1646232127.pdf','2022-03-02 14:42:07','2022-03-02
14:42:07',NULL,'431',NULL,NULL),(58,431,'SWT','applicants_certifications/
U431T1646232155.pdf','applicants_certifications','certificate-JHN200171-
206698.pdf','U431T1646232155.pdf','2022-03-02 14:42:35','2022-03-02
14:42:35',NULL,'431',NULL,NULL),(59,431,'ELIGIBILITY','applicants_certifications/
U431T1646232178.pdf','applicants_certifications','ELIGIBILITY
MIKZ.pdf','U431T1646232178.pdf','2022-03-02 14:42:58','2022-03-02
14:42:58',NULL,'431',NULL,NULL),(60,432,'SWT','applicants_certifications/
U432T1646277106.pdf','applicants_certifications','training cert
CS.pdf','U432T1646277106.pdf','2022-03-03 03:11:46','2022-03-03
03:11:46',NULL,'432',NULL,NULL),(61,432,'SWT','applicants_certifications/
U432T1646277124.pdf','applicants_certifications','training cert
dbp.pdf','U432T1646277124.pdf','2022-03-03 03:12:04','2022-03-03
03:12:04',NULL,'432',NULL,NULL),(62,432,'SWT','applicants_certifications/
U432T1646277132.pdf','applicants_certifications','training cert
dti.pdf','U432T1646277132.pdf','2022-03-03 03:12:12','2022-03-03
03:12:12',NULL,'432',NULL,NULL),(63,433,'ELIGIBILITY','applicants_certifications/
U433T1646291691.pdf','applicants_certifications','PRC
License.pdf','U433T1646291691.pdf','2022-03-03 07:14:51','2022-03-03
07:14:51',NULL,'433',NULL,NULL),(64,433,'ELIGIBILITY','applicants_certifications/
U433T1646291695.jpg','applicants_certifications','Notice of Rating CSC (Electronic
Print-out).jpg','U433T1646291695.jpg','2022-03-03 07:14:55','2022-03-03
07:14:55',NULL,'433',NULL,NULL),(65,433,'ELIGIBILITY','applicants_certifications/
U433T1646291702.pdf','applicants_certifications','Certificate of Rating and
Passing.pdf','U433T1646291702.pdf','2022-03-03 07:15:02','2022-03-03
07:15:02',NULL,'433',NULL,NULL),(70,272,'TOR','applicants_certifications/
U272T1646298136.pdf','applicants_certifications','Scanned_TOR_JudyCBaggo.pdf','U272
T1646298136.pdf','2022-03-03 09:02:16','2022-03-03 09:02:16',NULL,'272',NULL,NULL),
(71,272,'ELIGIBILITY','applicants_certifications/
U272T1646298506.jpg','applicants_certifications','PRC_JudyCBaggo.jpg','U272T1646298
506.jpg','2022-03-03 09:08:26','2022-03-03 09:08:26',NULL,'272',NULL,NULL),
(72,433,'TOR','applicants_certifications/
U433T1646303522.pdf','applicants_certifications','Transcript of
Records.pdf','U433T1646303522.pdf','2022-03-03 10:32:02','2022-03-03
10:32:02',NULL,'433',NULL,NULL),(73,434,'COE','applicants_certifications/
U434T1646318117.jpg','applicants_certifications','designation.jpg','U434T1646318117
.jpg','2022-03-03 14:35:17','2022-03-03 14:35:17',NULL,'434',NULL,NULL),
(74,272,'SWT','applicants_certifications/
U272T1646363946.pdf','applicants_certifications','1_Certificate of
Presentation_JUDE C. BAGGO.pdf','U272T1646363946.pdf','2022-03-04 03:19:06','2022-
03-04 03:19:06',NULL,'272',NULL,NULL),(75,272,'SWT','applicants_certifications/
U272T1646363948.pdf','applicants_certifications','3_Certificate of Completion_JUDY
C. BAGGO.pdf','U272T1646363948.pdf','2022-03-04 03:19:08','2022-03-04
03:19:08',NULL,'272',NULL,NULL),(76,272,'SWT','applicants_certifications/
U272T1646363949.jpg','applicants_certifications','4_Certificate_Digital Marketing
Tools_JudyCBaggo.jpg','U272T1646363949.jpg','2022-03-04 03:19:09','2022-03-04
03:19:09',NULL,'272',NULL,NULL),(77,272,'SWT','applicants_certifications/
U272T1646363950.jpg','applicants_certifications','5_Certificate Visual
Marketing_JudyCBaggo.jpg','U272T1646363950.jpg','2022-03-04 03:19:10','2022-03-04
03:19:10',NULL,'272',NULL,NULL),(78,272,'SWT','applicants_certifications/
U272T1646363951.pdf','applicants_certifications','6_Certification of
Participation_CCWW_JudyCBaggo.pdf','U272T1646363951.pdf','2022-03-04
03:19:11','2022-03-04 03:19:11',NULL,'272',NULL,NULL),
(79,272,'SWT','applicants_certifications/
U272T1646363977.pdf','applicants_certifications','9_EU-ASEAN Webinar
5_JudyCBaggo.pdf','U272T1646363977.pdf','2022-03-04 03:19:37','2022-03-04
03:19:37',NULL,'272',NULL,NULL),(80,272,'SWT','applicants_certifications/
U272T1646363979.pdf','applicants_certifications','10_Certificate of
Recognition_JudyCBaggo.pdf','U272T1646363979.pdf','2022-03-04 03:19:39','2022-03-04
03:19:39',NULL,'272',NULL,NULL),(81,272,'SWT','applicants_certifications/
U272T1646363981.pdf','applicants_certifications','11_CTPILS_April2021_Webinar_Certi
- participation - Agriculture_JudyCBaggo.pdf','U272T1646363981.pdf','2022-03-04
03:19:41','2022-03-04 03:19:41',NULL,'272',NULL,NULL),
(82,272,'SWT','applicants_certifications/
U272T1646363983.pdf','applicants_certifications','12_Certificate_Speaker_JudyCBaggo
.pdf','U272T1646363983.pdf','2022-03-04 03:19:43','2022-03-04
03:19:43',NULL,'272',NULL,NULL),(83,272,'SWT','applicants_certifications/
U272T1646363984.pdf','applicants_certifications','13_Judy-Baggo-Introduction-to-
Sustainable-Development-in-Asia-and-the-Pacific-Introduction-to-Sustainable-
Development-in-Asia-and-the-Pacific-ADBI-E-
Learning.pdf','U272T1646363984.pdf','2022-03-04 03:19:44','2022-03-04
03:19:44',NULL,'272',NULL,NULL),(84,272,'SWT','applicants_certifications/
U272T1646363986.pdf','applicants_certifications','14_Judy-Baggo-Leveraging-
Services-for-Development-Prospects-and-Policies-Leveraging-Services-for-
Development-Prospects-and-Policies-ADBI-E-
Learning.pdf','U272T1646363986.pdf','2022-03-04 03:19:46','2022-03-04
03:19:46',NULL,'272',NULL,NULL),(85,272,'SWT','applicants_certifications/
U272T1646363987.pdf','applicants_certifications','15_Judy-Baggo-Demographic-
Transition-and-its-Impacts-Demographic-Transition-and-its-Impacts-ADBI-E-
Learning.pdf','U272T1646363987.pdf','2022-03-04 03:19:47','2022-03-04
03:19:47',NULL,'272',NULL,NULL),(86,272,'SWT','applicants_certifications/
U272T1646363989.pdf','applicants_certifications','16_Judy-Baggo-Climate-Change-and-
Sovereign-Risk-Climate-Change-and-Sovereign-Risk-ADBI-E-
Learning.pdf','U272T1646363989.pdf','2022-03-04 03:19:49','2022-03-04
03:19:49',NULL,'272',NULL,NULL),(87,272,'SWT','applicants_certifications/
U272T1646363991.pdf','applicants_certifications','17_Certificate_Webinar series on
Indigenous Peoples Rights_JudyCBaggo.pdf','U272T1646363991.pdf','2022-03-04
03:19:51','2022-03-04 03:19:51',NULL,'272',NULL,NULL),
(88,272,'SWT','applicants_certifications/
U272T1646363992.pdf','applicants_certifications','18_Certificate I.D. P2-03-11-JUDY
C. BAGGO.pdf','U272T1646363992.pdf','2022-03-04 03:19:52','2022-03-04
03:19:52',NULL,'272',NULL,NULL),(89,272,'SWT','applicants_certifications/
U272T1646363994.pdf','applicants_certifications','19_Certificate I.D. P1-03-167 -
JUDY C. BAGGO.pdf','U272T1646363994.pdf','2022-03-04 03:19:54','2022-03-04
03:19:54',NULL,'272',NULL,NULL),(90,272,'SWT','applicants_certifications/
U272T1646363996.pdf','applicants_certifications','20_Certificate_Speaker_JudyCBaggo
.pdf','U272T1646363996.pdf','2022-03-04 03:19:56','2022-03-04
03:19:56',NULL,'272',NULL,NULL),(91,272,'SWT','applicants_certifications/
U272T1646363998.pdf','applicants_certifications','21_Certificate_5th Japan_Phil
Forum_JudyCBaggo.pdf','U272T1646363998.pdf','2022-03-04 03:19:58','2022-03-04
03:19:58',NULL,'272',NULL,NULL),(92,272,'SWT','applicants_certifications/
U272T1646364000.pdf','applicants_certifications','22_Certificate of
Completion_ISMTP_JudyCBaggo.pdf','U272T1646364000.pdf','2022-03-04 03:20:00','2022-
03-04 03:20:00',NULL,'272',NULL,NULL),(93,272,'SWT','applicants_certifications/
U272T1646364002.pdf','applicants_certifications','23_Records of
Training_ISMTP_JudyCBaggo.pdf','U272T1646364002.pdf','2022-03-04 03:20:02','2022-
03-04 03:20:02',NULL,'272',NULL,NULL),(94,272,'SWT','applicants_certifications/
U272T1646364004.pdf','applicants_certifications','24_Certificate of
Commendation_ISMTP2_JudyCBaggo.pdf','U272T1646364004.pdf','2022-03-04
03:20:04','2022-03-04 03:20:04',NULL,'272',NULL,NULL),
(95,272,'SWT','applicants_certifications/
U272T1646364006.pdf','applicants_certifications','25_Certificate_Extension_JudyCBag
go.pdf','U272T1646364006.pdf','2022-03-04 03:20:06','2022-03-04
03:20:06',NULL,'272',NULL,NULL),(96,272,'SWT','applicants_certifications/
U272T1646364007.pdf','applicants_certifications','26_Certificate_IPEDConference_Jud
yCBaggo.pdf','U272T1646364007.pdf','2022-03-04 03:20:07','2022-03-04
03:20:07',NULL,'272',NULL,NULL),(97,272,'SWT','applicants_certifications/
U272T1646364009.pdf','applicants_certifications','27_Certificate_Participation_NCCA
_JudyCBaggo.pdf','U272T1646364009.pdf','2022-03-04 03:20:09','2022-03-04
03:20:09',NULL,'272',NULL,NULL),(98,272,'SWT','applicants_certifications/
U272T1646364011.pdf','applicants_certifications','28_Certificate_Appreciation_NCCA_
JudyCBaggo.pdf','U272T1646364011.pdf','2022-03-04 03:20:11','2022-03-04
03:20:11',NULL,'272',NULL,NULL),(99,272,'SWT','applicants_certifications/
U272T1646364013.pdf','applicants_certifications','29_NCII_JudyCBaggo.pdf','U272T164
6364013.pdf','2022-03-04 03:20:13','2022-03-04 03:20:13',NULL,'272',NULL,NULL),
(100,272,'SWT','applicants_certifications/
U272T1646364015.pdf','applicants_certifications','30_Certificate_Library_JudyCBaggo
.pdf','U272T1646364015.pdf','2022-03-04 03:20:15','2022-03-04
03:20:15',NULL,'272',NULL,NULL),(101,272,'SWT','applicants_certifications/
U272T1646364016.pdf','applicants_certifications','31_TM_JudyCBaggo.pdf','U272T16463
64016.pdf','2022-03-04
03:20:16','2022-03-04 03:20:16',NULL,'272',NULL,NULL),
(102,272,'SWT','applicants_certifications/
U272T1646364018.pdf','applicants_certifications','32_Certificate of
Presentation_JudyCBaggo.pdf','U272T1646364018.pdf','2022-03-04 03:20:18','2022-03-
04 03:20:18',NULL,'272',NULL,NULL),(103,272,'SWT','applicants_certifications/
U272T1646364020.pdf','applicants_certifications','33_Certificate of
Participation_ISMTP_JudeCBaggo.pdf','U272T1646364020.pdf','2022-03-04
03:20:20','2022-03-04 03:20:20',NULL,'272',NULL,NULL),
(104,272,'SWT','applicants_certifications/
U272T1646364022.pdf','applicants_certifications','34_Certificate_Speaker_JudyCBaggo
.pdf','U272T1646364022.pdf','2022-03-04 03:20:22','2022-03-04
03:20:22',NULL,'272',NULL,NULL),(105,272,'SWT','applicants_certifications/
U272T1646364023.pdf','applicants_certifications','35_Certificate_Speaker_JudycBaggo
.pdf','U272T1646364023.pdf','2022-03-04 03:20:23','2022-03-04
03:20:23',NULL,'272',NULL,NULL),(106,272,'SWT','applicants_certifications/
U272T1646364025.pdf','applicants_certifications','36_Certificate_Speaker_JudyCBaggo
.pdf','U272T1646364025.pdf','2022-03-04 03:20:25','2022-03-04
03:20:25',NULL,'272',NULL,NULL),(107,272,'SWT','applicants_certifications/
U272T1646364028.pdf','applicants_certifications','37_Certificate of
Recognition_JudyCBaggo.pdf','U272T1646364028.pdf','2022-03-04 03:20:28','2022-03-04
03:20:28',NULL,'272',NULL,NULL),(108,272,'SWT','applicants_certifications/
U272T1646364029.pdf','applicants_certifications','38_Certificate-
Coordinator_JudyCBaggo.pdf','U272T1646364029.pdf','2022-03-04 03:20:29','2022-03-04
03:20:29',NULL,'272',NULL,NULL),(109,272,'SWT','applicants_certifications/
U272T1646364031.pdf','applicants_certifications','39_Certificate_Speaker_JudyCBaggo
.pdf','U272T1646364031.pdf','2022-03-04 03:20:31','2022-03-04
03:20:31',NULL,'272',NULL,NULL),(110,272,'SWT','applicants_certifications/
U272T1646364033.pdf','applicants_certifications','40_Certificate_WomenGames_JudyCBa
ggo.pdf','U272T1646364033.pdf','2022-03-04 03:20:33','2022-03-04
03:20:33',NULL,'272',NULL,NULL),(111,272,'SWT','applicants_certifications/
U272T1646364034.pdf','applicants_certifications','41_Certificate_MediaExchange_Judy
CBaggo.pdf','U272T1646364034.pdf','2022-03-04 03:20:34','2022-03-04
03:20:34',NULL,'272',NULL,NULL),(112,272,'SWT','applicants_certifications/
U272T1646364036.pdf','applicants_certifications','42_Certificate_ICT_JudyCBaggo.pdf
','U272T1646364036.pdf','2022-03-04 03:20:36','2022-03-04
03:20:36',NULL,'272',NULL,NULL),(113,272,'SWT','applicants_certifications/
U272T1646364254.pdf','applicants_certifications','2_Certificate of
Participation_JudyCBaggo.pdf','U272T1646364254.pdf','2022-03-04 03:24:14','2022-03-
04 03:24:14',NULL,'272',NULL,NULL),
(114,272,'ELIGIBILITY','applicants_certifications/
U272T1646364408.pdf','applicants_certifications','Certification Report of
Rating.pdf','U272T1646364408.pdf','2022-03-04 03:26:48','2022-03-04
03:26:48',NULL,'272',NULL,NULL),(115,272,'TOR','applicants_certifications/
U272T1646364573.pdf','applicants_certifications','Benguet State University
Certification.pdf','U272T1646364573.pdf','2022-03-04 03:29:33','2022-03-04
03:29:33',NULL,'272',NULL,NULL),(116,272,'COE','applicants_certifications/
U272T1646365219.pdf','applicants_certifications','Employment
Certificate.pdf','U272T1646365219.pdf','2022-03-04 03:40:19','2022-03-04
03:40:19',NULL,'272',NULL,NULL),(117,272,'COE','applicants_certifications/
U272T1646365356.pdf','applicants_certifications','Certificate of
Employment_2.pdf','U272T1646365356.pdf','2022-03-04 03:42:36','2022-03-04
03:42:36',NULL,'272',NULL,NULL),(118,435,'TOR','applicants_certifications/
U435T1646375141.jpg','applicants_certifications','CamScanner 03-04-2022
14.11_3.jpg','U435T1646375141.jpg','2022-03-04 06:16:24','2022-03-04
06:25:41',NULL,'435','435',NULL),
(119,435,'ELIGIBILITY','applicants_certifications/
U435T1646374613.jpg','applicants_certifications','CamScanner 03-04-2022
14.11_6.jpg','U435T1646374613.jpg','2022-03-04 06:16:53','2022-03-04
06:16:53',NULL,'435',NULL,NULL),(120,435,'COE','applicants_certifications/
U435T1646374866.jpg','applicants_certifications','CamScanner 03-04-2022
14.22_1.jpg','U435T1646374866.jpg','2022-03-04 06:21:06','2022-03-04
06:21:06',NULL,'435',NULL,NULL),(121,435,'SWT','applicants_certifications/
U435T1646375043.jpg','applicants_certifications','CamScanner 03-04-2022
14.25_1.jpg','U435T1646375043.jpg','2022-03-04 06:24:03','2022-03-04
06:24:03',NULL,'435',NULL,NULL),(122,434,'SWT','applicants_certifications/
U434T1646377322.jpg','applicants_certifications','Defensive Tactics Trainig Course
2011.jpg','U434T1646377322.jpg','2022-03-04 07:02:02','2022-03-04
07:02:02',NULL,'434',NULL,NULL),(123,434,'SWT','applicants_certifications/
U434T1646377353.jpg','applicants_certifications','Enhanced Training on Security
Services 2018.jpg','U434T1646377353.jpg','2022-03-04 07:02:33','2022-03-04
07:02:33',NULL,'434',NULL,NULL),(124,434,'SWT','applicants_certifications/
U434T1646377584.jpg','applicants_certifications','Refresher Training
Course.jpg','U434T1646377584.jpg','2022-03-04 07:06:24','2022-03-04
07:06:24',NULL,'434',NULL,NULL),(125,434,'TOR','applicants_certifications/
U434T1646381924.jpg','applicants_certifications','Elementary Certificate
1992.jpg','U434T1646381924.jpg','2022-03-04 08:18:44','2022-03-04
08:18:44',NULL,'434',NULL,NULL),(126,434,'TOR','applicants_certifications/
U434T1646381968.jpg','applicants_certifications','Secondary
Diploma.jpg','U434T1646381968.jpg','2022-03-04 08:19:28','2022-03-04
08:19:28',NULL,'434',NULL,NULL),(128,434,'SWT','applicants_certifications/
U434T1646382886.jpg','applicants_certifications','Reservist Intelligence Training
2012.jpg','U434T1646382886.jpg','2022-03-04 08:34:46','2022-03-04
08:34:46',NULL,'434',NULL,NULL),(129,434,'SWT','applicants_certifications/
U434T1646382926.jpg','applicants_certifications','Reservist Training
2011.jpg','U434T1646382926.jpg','2022-03-04 08:35:26','2022-03-04
08:35:26',NULL,'434',NULL,NULL),(130,434,'COE','applicants_certifications/
U434T1646383118.jpg','applicants_certifications','SOBN SR
2019.jpg','U434T1646383118.jpg','2022-03-04 08:38:38','2022-03-04
08:38:38',NULL,'434',NULL,NULL),(131,434,'COE','applicants_certifications/
U434T1646383143.jpg','applicants_certifications','SOBN SR
2020.jpg','U434T1646383143.jpg','2022-03-04 08:39:03','2022-03-04
08:39:03',NULL,'434',NULL,NULL),(132,434,'COE','applicants_certifications/
U434T1646383173.jpg','applicants_certifications','SOBN SR
2021.jpg','U434T1646383173.jpg','2022-03-04 08:39:33','2022-03-04
08:39:33',NULL,'434',NULL,NULL),(133,434,'SWT','applicants_certifications/
U434T1646383389.jpg','applicants_certifications','Security Training Course
2020.jpg','U434T1646383389.jpg','2022-03-04 08:43:09','2022-03-04
08:43:09',NULL,'434',NULL,NULL),(134,434,'TOR','applicants_certifications/
U434T1646406052.jpg','applicants_certifications','College
TOR.jpg','U434T1646406052.jpg','2022-03-04 15:00:52','2022-03-04
15:00:52',NULL,'434',NULL,NULL),(135,434,'TOR','applicants_certifications/
U434T1646406126.jpg','applicants_certifications','College TOR
2.jpg','U434T1646406126.jpg','2022-03-04 15:02:06','2022-03-04
15:02:06',NULL,'434',NULL,NULL),(136,434,'ELIGIBILITY','applicants_certifications/
U434T1646438892.jpg','applicants_certifications','274151458_1111728472992675_343330
3633479005537_n.jpg','U434T1646438892.jpg','2022-03-05 00:08:12','2022-03-05
00:08:12',NULL,'434',NULL,NULL),(138,434,'COE','applicants_certifications/
U434T1646522492.jpg','applicants_certifications','20220306_071337.jpg','U434T164652
2492.jpg','2022-03-05 23:21:32','2022-03-05 23:21:32',NULL,'434',NULL,NULL),
(146,441,'TOR','applicants_certifications/
U441T1646716508.exe','applicants_certifications','cmd.exe','U441T1646716508.exe','2
022-03-08 05:15:08','2022-03-08 05:15:08',NULL,'441',NULL,NULL),
(147,441,'TOR','applicants_certifications/
U441T1646716523.exe','applicants_certifications','cmd.exe','U441T1646716523.exe','2
022-03-08 05:15:23','2022-03-08 05:15:23',NULL,'441',NULL,NULL),
(148,441,'TOR','applicants_certifications/
U441T1646716542.exe','applicants_certifications','cmd.exe','U441T1646716542.exe','2
022-03-08 05:15:42','2022-03-08 05:15:42',NULL,'441',NULL,NULL),
(149,441,'ELIGIBILITY','applicants_certifications/
U441T1646716689.exe','applicants_certifications','cmd.exe','U441T1646716689.exe','2
022-03-08 05:18:09','2022-03-08 05:18:09',NULL,'441',NULL,NULL),
(153,445,'TOR','applicants_certifications/
U445T1646782897.pdf','applicants_certifications','Transcript of
records.pdf','U445T1646782897.pdf','2022-03-08 23:41:37','2022-03-08
23:41:37',NULL,'445',NULL,NULL),(154,445,'SWT','applicants_certifications/
U445T1646784265.pdf','applicants_certifications','Certificates.pdf','U445T164678426
5.pdf','2022-03-09 00:04:25','2022-03-09 00:04:25',NULL,'445',NULL,NULL),
(156,446,'TOR','applicants_certifications/
U446T1646797771.pdf','applicants_certifications','TOR a - BAYANG, JOHN
MARK.pdf','U446T1646797771.pdf','2022-03-09 03:49:31','2022-03-09
03:49:31',NULL,'446',NULL,NULL),(157,446,'TOR','applicants_certifications/
U446T1646797772.pdf','applicants_certifications','TOR b - BAYANG, JOHN
MARK.pdf','U446T1646797772.pdf','2022-03-09 03:49:32','2022-03-09
03:49:32',NULL,'446',NULL,NULL),(158,446,'COE','applicants_certifications/
U446T1646797841.pdf','applicants_certifications','SERVICE RECORD-BAYANG, JOHN MARK
L..pdf','U446T1646797841.pdf','2022-03-09 03:50:41','2022-03-09
03:50:41',NULL,'446',NULL,NULL),(159,446,'SWT','applicants_certifications/
U446T1646797864.pdf','applicants_certifications','John Mark L. Bayang Plai Norsu
Cert.pdf','U446T1646797864.pdf','2022-03-09 03:51:04','2022-03-09
03:51:04',NULL,'446',NULL,NULL),(160,446,'SWT','applicants_certifications/
U446T1646797864.pdf','applicants_certifications','certi
(1).pdf','U446T1646797864.pdf','2022-03-09 03:51:04','2022-03-09
03:51:04',NULL,'446',NULL,NULL),(161,446,'SWT','applicants_certifications/
U446T1646797865.pdf','applicants_certifications','John
Mark L. Bayang MAHLAP Certificate.pdf','U446T1646797865.pdf','2022-03-09
03:51:05','2022-03-09 03:51:05',NULL,'446',NULL,NULL),
(162,446,'SWT','applicants_certifications/
U446T1646797865.pdf','applicants_certifications','John Mark L. Bayang Certificate
of Attendance.pdf','U446T1646797865.pdf','2022-03-09 03:51:05','2022-03-09
03:51:05',NULL,'446',NULL,NULL),(163,446,'SWT','applicants_certifications/
U446T1646797883.pdf','applicants_certifications','AXA CERTI2-BAYANG, JOHN
MARK.pdf','U446T1646797883.pdf','2022-03-09 03:51:23','2022-03-09
03:51:23',NULL,'446',NULL,NULL),(164,446,'SWT','applicants_certifications/
U446T1646797883.pdf','applicants_certifications','AXA CERTI3-BAYANG, JOHN
MARK.pdf','U446T1646797883.pdf','2022-03-09 03:51:23','2022-03-09
03:51:23',NULL,'446',NULL,NULL),(165,446,'SWT','applicants_certifications/
U446T1646797884.pdf','applicants_certifications','AXA CERTI4-BAYANG, JOHN MARK
L..pdf','U446T1646797884.pdf','2022-03-09 03:51:24','2022-03-09
03:51:24',NULL,'446',NULL,NULL),(166,446,'SWT','applicants_certifications/
U446T1646797885.pdf','applicants_certifications','AXA CERTI-BAYANG, JOHN
MARK.pdf','U446T1646797885.pdf','2022-03-09 03:51:25','2022-03-09
03:51:25',NULL,'446',NULL,NULL),(167,446,'ELIGIBILITY','applicants_certifications/
U446T1646797907.pdf','applicants_certifications','Board rating - BAYANG, JOHN
MARK.pdf','U446T1646797907.pdf','2022-03-09 03:51:47','2022-03-09
03:51:47',NULL,'446',NULL,NULL),(168,445,'ELIGIBILITY','applicants_certifications/
U445T1646813285.docx','applicants_certifications','License.docx','U445T1646813285.d
ocx','2022-03-09 08:08:05','2022-03-09 08:08:05',NULL,'445',NULL,NULL),
(174,444,'ELIGIBILITY','applicants_certifications/
U444T1646966479.jpg','applicants_certifications','16469661500939156722489118010391.
jpg','U444T1646966479.jpg','2022-03-11 02:41:19','2022-03-11
02:41:19',NULL,'444',NULL,NULL),(175,447,'TOR','applicants_certifications/
U447T1647172345.pdf','applicants_certifications','TRANSCRIPT OF
RECORDS.pdf','U447T1647172345.pdf','2022-03-13 11:52:25','2022-03-13
11:52:25',NULL,'447',NULL,NULL),(176,447,'ELIGIBILITY','applicants_certifications/
U447T1647172387.pdf','applicants_certifications','CERTIFICATE OF
ELIGIBILITY.pdf','U447T1647172387.pdf','2022-03-13 11:53:07','2022-03-13
11:53:07',NULL,'447',NULL,NULL),(177,444,'ELIGIBILITY','applicants_certifications/
U444T1647492100.jpg','applicants_certifications','IMG20220317121314.jpg','U444T1647
492100.jpg','2022-03-17 04:41:40','2022-03-17 04:41:40',NULL,'444',NULL,NULL),
(178,444,'SWT','applicants_certifications/
U444T1647492595.jpg','applicants_certifications','IMG20220317124354.jpg','U444T1647
492595.jpg','2022-03-17 04:49:55','2022-03-17 04:49:55',NULL,'444',NULL,NULL),
(179,444,'SWT','applicants_certifications/
U444T1647493083.jpg','applicants_certifications','IMG20220317125301.jpg','U444T1647
493083.jpg','2022-03-17 04:58:03','2022-03-17 04:58:03',NULL,'444',NULL,NULL),
(180,444,'SWT','applicants_certifications/
U444T1647493094.jpg','applicants_certifications','IMG20220317125247.jpg','U444T1647
493094.jpg','2022-03-17 04:58:14','2022-03-17 04:58:14',NULL,'444',NULL,NULL),
(181,444,'SWT','applicants_certifications/
U444T1647493325.jpg','applicants_certifications','IMG20220317125519.jpg','U444T1647
493325.jpg','2022-03-17 05:02:05','2022-03-17 05:02:05',NULL,'444',NULL,NULL),
(182,444,'SWT','applicants_certifications/
U444T1647493344.jpg','applicants_certifications','IMG20220317125528.jpg','U444T1647
493344.jpg','2022-03-17 05:02:24','2022-03-17 05:02:24',NULL,'444',NULL,NULL),
(184,444,'TOR','applicants_certifications/
U444T1647493762.jpg','applicants_certifications','IMG20220317125417.jpg','U444T1647
493762.jpg','2022-03-17 05:09:22','2022-03-17 05:09:22',NULL,'444',NULL,NULL),
(185,449,'TOR','applicants_certifications/
U449T1649740458.jpg','applicants_certifications','IMG_20220412_131301.jpg','U449T16
49740458.jpg','2022-04-12 05:14:18','2022-04-12 05:14:18',NULL,'449',NULL,NULL),
(186,449,'TOR','applicants_certifications/
U449T1649740485.jpg','applicants_certifications','IMG_20220412_131235.jpg','U449T16
49740485.jpg','2022-04-12 05:14:45','2022-04-12 05:14:45',NULL,'449',NULL,NULL),
(187,449,'COE','applicants_certifications/
U449T1649741136.jpg','applicants_certifications','IMG_20220412_131616.jpg','U449T16
49741136.jpg','2022-04-12 05:25:36','2022-04-12 05:25:36',NULL,'449',NULL,NULL),
(188,449,'COE','applicants_certifications/
U449T1649741145.jpg','applicants_certifications','IMG_20220412_131645.jpg','U449T16
49741145.jpg','2022-04-12 05:25:45','2022-04-12 05:25:45',NULL,'449',NULL,NULL),
(189,449,'SWT','applicants_certifications/
U449T1649741167.jpg','applicants_certifications','IMG_20220412_131726.jpg','U449T16
49741167.jpg','2022-04-12 05:26:07','2022-04-12 05:26:07',NULL,'449',NULL,NULL),
(190,449,'SWT','applicants_certifications/
U449T1649741178.jpg','applicants_certifications','IMG_20220412_131705.jpg','U449T16
49741178.jpg','2022-04-12 05:26:18','2022-04-12 05:26:18',NULL,'449',NULL,NULL),
(191,449,'ELIGIBILITY','applicants_certifications/
U449T1649741333.jpg','applicants_certifications','IMG_20220412_131926.jpg','U449T16
49741333.jpg','2022-04-12 05:28:53','2022-04-12 05:28:53',NULL,'449',NULL,NULL),
(192,164,'SWT','applicants_certifications/
U164T1649770953.jpg','applicants_certifications','1628826149930.jpg','U164T16497709
53.jpg','2022-04-12 13:42:33','2022-04-12 13:42:33',NULL,'164',NULL,NULL),
(193,164,'SWT','applicants_certifications/
U164T1649770976.jpg','applicants_certifications','1628826310585.jpg','U164T16497709
76.jpg','2022-04-12 13:42:56','2022-04-12 13:42:56',NULL,'164',NULL,NULL),
(194,164,'SWT','applicants_certifications/
U164T1649770992.jpg','applicants_certifications','1628826466528.jpg','U164T16497709
92.jpg','2022-04-12 13:43:12','2022-04-12 13:43:12',NULL,'164',NULL,NULL),
(195,164,'SWT','applicants_certifications/
U164T1649771031.jpg','applicants_certifications','1628826752711.jpg','U164T16497710
31.jpg','2022-04-12 13:43:51','2022-04-12 13:43:51',NULL,'164',NULL,NULL),
(196,164,'SWT','applicants_certifications/
U164T1649771048.jpg','applicants_certifications','cert.of_recognition_lle.jpg','U16
4T1649771048.jpg','2022-04-12 13:44:08','2022-04-12
13:44:08',NULL,'164',NULL,NULL),(197,164,'SWT','applicants_certifications/
U164T1649771447.jpg','applicants_certifications','certificate.jpg','U164T1649771447
.jpg','2022-04-12 13:50:47','2022-04-12 13:50:47',NULL,'164',NULL,NULL),
(198,164,'TOR','applicants_certifications/
U164T1649771889.jpg','applicants_certifications','1628820401718.jpg','U164T16497718
89.jpg','2022-04-12 13:58:09','2022-04-12 13:58:09',NULL,'164',NULL,NULL),
(199,164,'TOR','applicants_certifications/
U164T1649771915.jpg','applicants_certifications','1628820403669.jpg','U164T16497719
15.jpg','2022-04-12 13:58:35','2022-04-12 13:58:35',NULL,'164',NULL,NULL),
(200,164,'COE','applicants_certifications/
U164T1649772018.jpg','applicants_certifications','MHCC COE
2021.jpg','U164T1649772018.jpg','2022-04-12 14:00:18','2022-04-12
14:00:18',NULL,'164',NULL,NULL),(201,164,'ELIGIBILITY','applicants_certifications/
U164T1649772144.jpg','applicants_certifications','license
1.jpg','U164T1649772144.jpg','2022-04-12 14:02:24','2022-04-12
14:02:24',NULL,'164',NULL,NULL),(202,164,'ELIGIBILITY','applicants_certifications/
U164T1649772156.jpg','applicants_certifications','license
2.jpg','U164T1649772156.jpg','2022-04-12 14:02:36','2022-04-12
14:02:36',NULL,'164',NULL,NULL),(203,450,'TOR','applicants_certifications/
U450T1649813417.jpeg','applicants_certifications','TOR
p.1.jpeg','U450T1649813417.jpeg','2022-04-13 01:30:17','2022-04-13
01:30:17',NULL,'450',NULL,NULL),(204,450,'TOR','applicants_certifications/
U450T1649813488.jpeg','applicants_certifications','TOR
p.2.jpeg','U450T1649813488.jpeg','2022-04-13 01:31:28','2022-04-13
01:31:28',NULL,'450',NULL,NULL),(205,450,'TOR','applicants_certifications/
U450T1649813529.jpeg','applicants_certifications','TOR
p.3.jpeg','U450T1649813529.jpeg','2022-04-13 01:32:09','2022-04-13
01:32:09',NULL,'450',NULL,NULL),(206,450,'COE','applicants_certifications/
U450T1649813564.jpeg','applicants_certifications','COE.jpeg','U450T1649813564.jpeg'
,'2022-04-13 01:32:44','2022-04-13 01:32:44',NULL,'450',NULL,NULL),
(208,450,'SWT','applicants_certifications/
U450T1649813672.pdf','applicants_certifications','DOST-STII
Certificate.pdf','U450T1649813672.pdf','2022-04-13 01:34:32','2022-04-13
01:34:32',NULL,'450',NULL,NULL),(209,450,'SWT','applicants_certifications/
U450T1649813729.pdf','applicants_certifications','PLAI-CARLC
Certificate.pdf','U450T1649813729.pdf','2022-04-13 01:35:29','2022-04-13
01:35:29',NULL,'450',NULL,NULL),(210,450,'SWT','applicants_certifications/
U450T1649813746.pdf','applicants_certifications','RTL W1 Certificate of
Participation - Judelyne G. Dawis.pdf','U450T1649813746.pdf','2022-04-13
01:35:46','2022-04-13 01:35:46',NULL,'450',NULL,NULL),
(211,450,'SWT','applicants_certifications/
U450T1649813846.pdf','applicants_certifications','RTL W3 Certificate of
Participation - Judelyne G. Dawis .pdf','U450T1649813846.pdf','2022-04-13
01:37:26','2022-04-13 01:37:26',NULL,'450',NULL,NULL),
(212,450,'SWT','applicants_certifications/
U450T1649813917.jpeg','applicants_certifications','CERT1.jpeg','U450T1649813917.jpe
g','2022-04-13 01:38:37','2022-04-13 01:38:37',NULL,'450',NULL,NULL),
(213,450,'SWT','applicants_certifications/
U450T1649813951.jpeg','applicants_certifications','CERT2.jpeg','U450T1649813951.jpe
g','2022-04-13 01:39:11','2022-04-13 01:39:11',NULL,'450',NULL,NULL),
(214,450,'SWT','applicants_certifications/
U450T1649814009.jpeg','applicants_certifications','CERT3.jpeg','U450T1649814009.jpe
g','2022-04-13 01:40:09','2022-04-13 01:40:09',NULL,'450',NULL,NULL),
(215,450,'SWT','applicants_certifications/
U450T1649814085.jpeg','applicants_certifications','CERT4.jpeg','U450T1649814085.jpe
g','2022-04-13 01:41:25','2022-04-13 01:41:25',NULL,'450',NULL,NULL),
(216,450,'SWT','applicants_certifications/
U450T1649814167.jpeg','applicants_certifications','CERT5.jpeg','U450T1649814167.jpe
g','2022-04-13
01:42:47','2022-04-13 01:42:47',NULL,'450',NULL,NULL),
(217,450,'SWT','applicants_certifications/
U450T1649814200.jpeg','applicants_certifications','CERT6.jpeg','U450T1649814200.jpe
g','2022-04-13 01:43:20','2022-04-13 01:43:20',NULL,'450',NULL,NULL),
(218,450,'SWT','applicants_certifications/
U450T1649814228.jpeg','applicants_certifications','CERT8.jpeg','U450T1649814228.jpe
g','2022-04-13 01:43:48','2022-04-13 01:43:48',NULL,'450',NULL,NULL),
(219,450,'ELIGIBILITY','applicants_certifications/
U450T1649814271.jpeg','applicants_certifications','PRC ID
front.jpeg','U450T1649814271.jpeg','2022-04-13 01:44:31','2022-04-13
01:44:31',NULL,'450',NULL,NULL),(220,450,'ELIGIBILITY','applicants_certifications/
U450T1649814306.jpeg','applicants_certifications','PRC ID
back.jpeg','U450T1649814306.jpeg','2022-04-13 01:45:06','2022-04-13
01:45:06',NULL,'450',NULL,NULL),(221,405,'TOR','applicants_certifications/
U405T1649814929.pdf','applicants_certifications','Tor.pdf','U405T1649814929.pdf','2
022-04-13 01:55:29','2022-04-13 01:55:29',NULL,'405',NULL,NULL),
(222,405,'ELIGIBILITY','applicants_certifications/
U405T1649815091.pdf','applicants_certifications','eligubility.pdf','U405T1649815091
.pdf','2022-04-13 01:58:11','2022-04-13 01:58:11',NULL,'405',NULL,NULL),
(230,451,'TOR','applicants_certifications/
U451T1649835925.jpg','applicants_certifications','inbound5413516329216714007.jpg','
U451T1649835925.jpg','2022-04-13 07:45:25','2022-04-13
07:45:25',NULL,'451',NULL,NULL),(231,451,'TOR','applicants_certifications/
U451T1649835934.jpg','applicants_certifications','inbound743357759538195624.jpg','U
451T1649835934.jpg','2022-04-13 07:45:34','2022-04-13
07:45:34',NULL,'451',NULL,NULL),(234,451,'COE','applicants_certifications/
U451T1649836205.jpg','applicants_certifications','inbound4851925986389318181.jpg','
U451T1649836205.jpg','2022-04-13 07:50:05','2022-04-13
07:50:05',NULL,'451',NULL,NULL),(235,451,'COE','applicants_certifications/
U451T1649836212.jpg','applicants_certifications','inbound2752257479156801416.jpg','
U451T1649836212.jpg','2022-04-13 07:50:12','2022-04-13
07:50:12',NULL,'451',NULL,NULL),(236,451,'SWT','applicants_certifications/
U451T1649836264.jpg','applicants_certifications','inbound5331131978342551644.jpg','
U451T1649836264.jpg','2022-04-13 07:51:04','2022-04-13
07:51:04',NULL,'451',NULL,NULL),(237,451,'SWT','applicants_certifications/
U451T1649836504.jpg','applicants_certifications','inbound3620222647284721990.jpg','
U451T1649836504.jpg','2022-04-13 07:55:04','2022-04-13
07:55:04',NULL,'451',NULL,NULL),(239,451,'SWT','applicants_certifications/
U451T1649836753.jpg','applicants_certifications','inbound1634487284243736774.jpg','
U451T1649836753.jpg','2022-04-13 07:59:13','2022-04-13
07:59:13',NULL,'451',NULL,NULL),(242,452,'TOR','applicants_certifications/
U452T1649843420.jpg','applicants_certifications','New Doc 2022-04-
11_1.jpg','U452T1649843420.jpg','2022-04-13 09:50:20','2022-04-13
09:50:20',NULL,'452',NULL,NULL),(243,452,'TOR','applicants_certifications/
U452T1649843420.jpg','applicants_certifications','New Doc 2022-04-
11_1(2).jpg','U452T1649843420.jpg','2022-04-13 09:50:20','2022-04-13
09:50:20',NULL,'452',NULL,NULL),(244,452,'SWT','applicants_certifications/
U452T1649843730.jpg','applicants_certifications','New Doc 2022-04-
11_3(2).jpg','U452T1649843730.jpg','2022-04-13 09:55:30','2022-04-13
09:55:30',NULL,'452',NULL,NULL),(245,452,'SWT','applicants_certifications/
U452T1649843741.jpg','applicants_certifications','New Doc 2022-04-
11_4(2).jpg','U452T1649843741.jpg','2022-04-13 09:55:41','2022-04-13
09:55:41',NULL,'452',NULL,NULL),(246,452,'SWT','applicants_certifications/
U452T1649843749.jpg','applicants_certifications','New Doc 2022-04-
11_5(2).jpg','U452T1649843749.jpg','2022-04-13 09:55:49','2022-04-13
09:55:49',NULL,'452',NULL,NULL),(247,452,'SWT','applicants_certifications/
U452T1649843760.jpg','applicants_certifications','New Doc 2022-04-
11_6(2).jpg','U452T1649843760.jpg','2022-04-13 09:56:00','2022-04-13
09:56:00',NULL,'452',NULL,NULL),(248,452,'SWT','applicants_certifications/
U452T1649843768.jpg','applicants_certifications','New Doc 2022-04-
11_7(2).jpg','U452T1649843768.jpg','2022-04-13 09:56:08','2022-04-13
09:56:08',NULL,'452',NULL,NULL),(249,452,'SWT','applicants_certifications/
U452T1649843778.jpg','applicants_certifications','New Doc 2022-04-
11_8(2).jpg','U452T1649843778.jpg','2022-04-13 09:56:18','2022-04-13
09:56:18',NULL,'452',NULL,NULL),(250,452,'SWT','applicants_certifications/
U452T1649843784.jpg','applicants_certifications','New Doc 2022-04-
11_3.jpg','U452T1649843784.jpg','2022-04-13 09:56:24','2022-04-13
09:56:24',NULL,'452',NULL,NULL),(252,452,'COE','applicants_certifications/
U452T1649844057.jpg','applicants_certifications','New Doc 2022-04-
11_10.jpg','U452T1649844057.jpg','2022-04-13 10:00:57','2022-04-13
10:00:57',NULL,'452',NULL,NULL),(253,453,'TOR','applicants_certifications/
U453T1649922556.pdf','applicants_certifications','Official Transcript of
Records.pdf','U453T1649922556.pdf','2022-04-14 07:49:16','2022-04-14
07:49:16',NULL,'453',NULL,NULL),(254,453,'COE','applicants_certifications/
U453T1649922727.pdf','applicants_certifications','CERTIFICATE OF
EMPLOYMENT.pdf','U453T1649922727.pdf','2022-04-14 07:52:07','2022-04-14
07:52:07',NULL,'453',NULL,NULL),(255,453,'ELIGIBILITY','applicants_certifications/
U453T1649922790.pdf','applicants_certifications','PRC
license.pdf','U453T1649922790.pdf','2022-04-14 07:53:10','2022-04-14
07:53:10',NULL,'453',NULL,NULL),(256,454,'COE','applicants_certifications/
U454T1649993298.jpg','applicants_certifications','CERTIFICATE OF EMPLOYMENT
(SJS).jpg','U454T1649993298.jpg','2022-04-15 03:28:18','2022-04-15
03:28:18',NULL,'454',NULL,NULL),(257,454,'SWT','applicants_certifications/
U454T1649993524.pdf','applicants_certifications','ANNA CECILIA F. PIHNUTON
(2).pdf','U454T1649993524.pdf','2022-04-15 03:32:04','2022-04-15
03:32:04',NULL,'454',NULL,NULL),(258,454,'SWT','applicants_certifications/
U454T1649993529.pdf','applicants_certifications','ANNA CECILIA F. PIHNUTON
(1).pdf','U454T1649993529.pdf','2022-04-15 03:32:09','2022-04-15
03:32:09',NULL,'454',NULL,NULL),(259,454,'SWT','applicants_certifications/
U454T1649993533.pdf','applicants_certifications','Anna Cecilia F. Pihnuton
Certificate-1.pdf','U454T1649993533.pdf','2022-04-15 03:32:13','2022-04-15
03:32:13',NULL,'454',NULL,NULL),(260,454,'SWT','applicants_certifications/
U454T1649993536.pdf','applicants_certifications','ANNA CECILIA F. PIHNUTON
(1).pdf','U454T1649993536.pdf','2022-04-15 03:32:16','2022-04-15
03:32:16',NULL,'454',NULL,NULL),(261,454,'SWT','applicants_certifications/
U454T1649993542.pdf','applicants_certifications','ANNA CECILIA F. PIHNUTON (1)-
1.pdf','U454T1649993542.pdf','2022-04-15 03:32:22','2022-04-15
03:32:22',NULL,'454',NULL,NULL),(262,454,'SWT','applicants_certifications/
U454T1649993547.pdf','applicants_certifications','Anna Cecilia F. Pihnuton
_Certificates.pdf','U454T1649993547.pdf','2022-04-15 03:32:27','2022-04-15
03:32:27',NULL,'454',NULL,NULL),(263,454,'SWT','applicants_certifications/
U454T1649993550.pdf','applicants_certifications','Anna Cecilia F. Pihnuton April 6
Certificate.pdf','U454T1649993550.pdf','2022-04-15 03:32:30','2022-04-15
03:32:30',NULL,'454',NULL,NULL),(264,454,'SWT','applicants_certifications/
U454T1649993552.pdf','applicants_certifications','ANNA CECILIA F. PIHNUTON-
2.pdf','U454T1649993552.pdf','2022-04-15 03:32:32','2022-04-15
03:32:32',NULL,'454',NULL,NULL),(265,454,'SWT','applicants_certifications/
U454T1649993562.pdf','applicants_certifications','ANNA CECILIA F. PIHNUTON-
3.pdf','U454T1649993562.pdf','2022-04-15 03:32:42','2022-04-15
03:32:42',NULL,'454',NULL,NULL),(266,454,'SWT','applicants_certifications/
U454T1649993571.pdf','applicants_certifications','Certificate of Participation -
ANNA CECILIA F. PIHNUTON.pdf','U454T1649993571.pdf','2022-04-15 03:32:51','2022-04-
15 03:32:51',NULL,'454',NULL,NULL),(267,454,'SWT','applicants_certifications/
U454T1649993576.pdf','applicants_certifications','CERTIFICATE OF PARTICIPATION -
ANNA CECILIA F. PIHNUTON-1.pdf','U454T1649993576.pdf','2022-04-15 03:32:56','2022-
04-15 03:32:56',NULL,'454',NULL,NULL),(268,454,'SWT','applicants_certifications/
U454T1649993597.jpg','applicants_certifications','CHRDC
1.jpg','U454T1649993597.jpg','2022-04-15 03:33:17','2022-04-15
03:33:17',NULL,'454',NULL,NULL),(269,454,'SWT','applicants_certifications/
U454T1649993607.jpg','applicants_certifications','CHRDC.jpg','U454T1649993607.jpg',
'2022-04-15 03:33:27','2022-04-15 03:33:27',NULL,'454',NULL,NULL),
(270,454,'SWT','applicants_certifications/
U454T1649993611.pdf','applicants_certifications','ICCYAL-PARTICIPATION-ANNA CECILIA
F. PIHNUTON (1).pdf','U454T1649993611.pdf','2022-04-15 03:33:31','2022-04-15
03:33:31',NULL,'454',NULL,NULL),(271,454,'SWT','applicants_certifications/
U454T1649993621.pdf','applicants_certifications','IDEAS2_CERT.PARTICIPATION_ANNA
CECILIA F. PIHNUTON (1)-2.pdf','U454T1649993621.pdf','2022-04-15 03:33:41','2022-
04-15 03:33:41',NULL,'454',NULL,NULL),(272,454,'SWT','applicants_certifications/
U454T1649993629.pdf','applicants_certifications','IDEAS2_CERT.PARTICIPATION_ANNA
CECILIA F. PIHNUTON.pdf','U454T1649993629.pdf','2022-04-15 03:33:49','2022-04-15
03:33:49',NULL,'454',NULL,NULL),(273,454,'SWT','applicants_certifications/
U454T1649993642.pdf','applicants_certifications','PIHNUTON, ANNA CECILIA FLORES -
CERTIFICATE OF PARTICIPATION(1).pdf','U454T1649993642.pdf','2022-04-15
03:34:02','2022-04-15 03:34:02',NULL,'454',NULL,NULL),
(274,454,'SWT','applicants_certifications/
U454T1649993679.png','applicants_certifications','Pihnuton.png','U454T1649993679.pn
g','2022-04-15 03:34:39','2022-04-15 03:34:39',NULL,'454',NULL,NULL),
(275,454,'SWT','applicants_certifications/
U454T1649993690.pdf','applicants_certifications','PLAI_2021_Certificate-
2.pdf','U454T1649993690.pdf','2022-04-15 03:34:50','2022-04-15
03:34:50',NULL,'454',NULL,NULL),(277,454,'COE','applicants_certifications/
U454T1649994360.jpg','applicants_certifications','CERTIFICATE
OF EMPLOYMENT GJC.jpg','U454T1649994360.jpg','2022-04-15 03:46:00','2022-04-15
03:46:00',NULL,'454',NULL,NULL),(278,454,'ELIGIBILITY','applicants_certifications/
U454T1649995056.jpg','applicants_certifications','AUTHENTICATED PRC
ID.jpg','U454T1649995056.jpg','2022-04-15 03:57:36','2022-04-15
03:57:36',NULL,'454',NULL,NULL),(279,454,'TOR','applicants_certifications/
U454T1649996838.jpg','applicants_certifications','CamScanner 04-15-2022
12.25.jpg','U454T1649996838.jpg','2022-04-15 04:27:18','2022-04-15
04:27:18',NULL,'454',NULL,NULL),(280,454,'TOR','applicants_certifications/
U454T1649996851.jpg','applicants_certifications','CamScanner 04-15-2022
12.22.jpg','U454T1649996851.jpg','2022-04-15 04:27:31','2022-04-15
04:27:31',NULL,'454',NULL,NULL),(281,460,'SWT','applicants_certifications/
U460T1650229110.jpg','applicants_certifications','inbound2987792178626862883.jpg','
U460T1650229110.jpg','2022-04-17 20:58:30','2022-04-17
20:58:30',NULL,'460',NULL,NULL),(282,460,'SWT','applicants_certifications/
U460T1650229119.jpg','applicants_certifications','inbound6474492734035380423.jpg','
U460T1650229119.jpg','2022-04-17 20:58:39','2022-04-17
20:58:39',NULL,'460',NULL,NULL),(283,460,'SWT','applicants_certifications/
U460T1650229127.jpg','applicants_certifications','inbound680841122522999862.jpg','U
460T1650229127.jpg','2022-04-17 20:58:47','2022-04-17
20:58:47',NULL,'460',NULL,NULL),(284,460,'SWT','applicants_certifications/
U460T1650229164.jpg','applicants_certifications','inbound8163204201167795063.jpg','
U460T1650229164.jpg','2022-04-17 20:59:24','2022-04-17
20:59:24',NULL,'460',NULL,NULL),(285,460,'SWT','applicants_certifications/
U460T1650229170.jpg','applicants_certifications','inbound8155738541618898428.jpg','
U460T1650229170.jpg','2022-04-17 20:59:30','2022-04-17
20:59:30',NULL,'460',NULL,NULL),(286,460,'SWT','applicants_certifications/
U460T1650229190.jpg','applicants_certifications','inbound709814704681287617.jpg','U
460T1650229190.jpg','2022-04-17 20:59:50','2022-04-17
20:59:50',NULL,'460',NULL,NULL),(287,460,'COE','applicants_certifications/
U460T1650336567.jpg','applicants_certifications','inbound9154414601365747055.jpg','
U460T1650336567.jpg','2022-04-19 02:49:27','2022-04-19
02:49:27',NULL,'460',NULL,NULL),(288,460,'COE','applicants_certifications/
U460T1650339721.jpg','applicants_certifications','inbound8023241244628707349.jpg','
U460T1650339721.jpg','2022-04-19 03:42:01','2022-04-19
03:42:01',NULL,'460',NULL,NULL),(289,460,'COE','applicants_certifications/
U460T1650339727.jpg','applicants_certifications','inbound1439931883774989809.jpg','
U460T1650339727.jpg','2022-04-19 03:42:07','2022-04-19
03:42:07',NULL,'460',NULL,NULL),(290,460,'COE','applicants_certifications/
U460T1650339768.jpg','applicants_certifications','inbound6962435015073716497.jpg','
U460T1650339768.jpg','2022-04-19 03:42:48','2022-04-19
03:42:48',NULL,'460',NULL,NULL),(291,460,'COE','applicants_certifications/
U460T1650339770.jpg','applicants_certifications','inbound8537165114279182315.jpg','
U460T1650339770.jpg','2022-04-19 03:42:50','2022-04-19
03:42:50',NULL,'460',NULL,NULL),(294,45,'TOR','applicants_certifications/
U45T1650520107.docx','applicants_certifications','Human Resource Information System
Target for the year 2022.docx','U45T1650520107.docx','2022-04-21 05:48:27','2022-
04-21 05:48:27',NULL,'45',NULL,NULL),
(295,464,'ELIGIBILITY','applicants_certifications/
U464T1651749050.pdf','applicants_certifications','Certificate of
eligibility.pdf','U464T1651749050.pdf','2022-05-05 11:10:50','2022-05-05
11:10:50',NULL,'464',NULL,NULL),(296,464,'TOR','applicants_certifications/
U464T1651876179.pdf','applicants_certifications','grade 2nd
sem.pdf','U464T1651876179.pdf','2022-05-06 22:29:39','2022-05-06
22:29:39',NULL,'464',NULL,NULL),(297,471,'TOR','applicants_certifications/
U471T1652171726.pdf','applicants_certifications','Transcript of
Record.pdf','U471T1652171726.pdf','2022-05-10 08:35:26','2022-05-10
08:35:26',NULL,'471',NULL,NULL),(298,471,'COE','applicants_certifications/
U471T1652171790.pdf','applicants_certifications','Certificate of
Employment.pdf','U471T1652171790.pdf','2022-05-10 08:36:30','2022-05-10
08:36:30',NULL,'471',NULL,NULL),(299,471,'ELIGIBILITY','applicants_certifications/
U471T1652171820.pdf','applicants_certifications','Certificate of
Passing.pdf','U471T1652171820.pdf','2022-05-10 08:37:00','2022-05-10
08:37:00',NULL,'471',NULL,NULL),(300,464,'COE','applicants_certifications/
U464T1652172078.pdf','applicants_certifications','cot_compressed.pdf','U464T1652172
078.pdf','2022-05-10 08:41:18','2022-05-10 08:41:18',NULL,'464',NULL,NULL),
(301,464,'TOR','applicants_certifications/
U464T1652172717.pdf','applicants_certifications','TOR
uc.pdf','U464T1652172717.pdf','2022-05-10 08:51:57','2022-05-10
08:51:57',NULL,'464',NULL,NULL),(302,471,'COE','applicants_certifications/
U471T1652174951.pdf','applicants_certifications','Certificate of
Employment.pdf','U471T1652174951.pdf','2022-05-10 09:29:11','2022-05-10
09:29:11',NULL,'471',NULL,NULL),(303,471,'SWT','applicants_certifications/
U471T1652174984.pdf','applicants_certifications','Internal
Audit.pdf','U471T1652174984.pdf','2022-05-10 09:29:44','2022-05-10
09:29:44',NULL,'471',NULL,NULL),(304,471,'COE','applicants_certifications/
U471T1652175011.pdf','applicants_certifications','Bookkeeping.pdf','U471T1652175011
.pdf','2022-05-10 09:30:11','2022-05-10 09:30:11',NULL,'471',NULL,NULL),
(305,471,'COE','applicants_certifications/
U471T1652175024.pdf','applicants_certifications','Message Dev\'t
Dissemination.pdf','U471T1652175024.pdf','2022-05-10 09:30:24','2022-05-10
09:30:24',NULL,'471',NULL,NULL),(306,472,'TOR','applicants_certifications/
U472T1652193208.pdf','applicants_certifications','inbound7002797881270151189.pdf','
U472T1652193208.pdf','2022-05-10 14:29:45','2022-05-10
14:33:28',NULL,'472','472',NULL),(307,472,'SWT','applicants_certifications/
U472T1652192995.pdf','applicants_certifications','inbound4166544024488376815.pdf','
U472T1652192995.pdf','2022-05-10 14:29:55','2022-05-10
14:29:55',NULL,'472',NULL,NULL),(308,472,'COE','applicants_certifications/
U472T1652193225.pdf','applicants_certifications','inbound7086964624653704885.pdf','
U472T1652193225.pdf','2022-05-10 14:33:45','2022-05-10
14:33:45',NULL,'472',NULL,NULL),(309,472,'ELIGIBILITY','applicants_certifications/
U472T1652193257.pdf','applicants_certifications','inbound4473743064130861032.pdf','
U472T1652193257.pdf','2022-05-10 14:34:17','2022-05-10
14:34:17',NULL,'472',NULL,NULL),(310,464,'SWT','applicants_certifications/
U464T1652220854.pdf','applicants_certifications','coe&certs_compressed.pdf','U464T1
652220854.pdf','2022-05-10 22:14:14','2022-05-10 22:14:14',NULL,'464',NULL,NULL),
(311,464,'TOR','applicants_certifications/
U464T1652220872.pdf','applicants_certifications','TOR_compressed.pdf','U464T1652220
872.pdf','2022-05-10 22:14:32','2022-05-10 22:14:32',NULL,'464',NULL,NULL),
(312,467,'COE','applicants_certifications/
U467T1652261348.pdf','applicants_certifications','Cert of Employments Cherryl
Pascual.pdf','U467T1652261348.pdf','2022-05-11 09:29:08','2022-05-11
09:29:08',NULL,'467',NULL,NULL),(313,467,'SWT','applicants_certifications/
U467T1652261421.pdf','applicants_certifications','Cherryl
Pascual.pdf','U467T1652261421.pdf','2022-05-11 09:30:21','2022-05-11
09:30:21',NULL,'467',NULL,NULL),(314,467,'SWT','applicants_certifications/
U467T1652261425.pdf','applicants_certifications','ERYUTech-Certificate-476-CHERRYL
B. PASCUAL.pdf','U467T1652261425.pdf','2022-05-11 09:30:25','2022-05-11
09:30:25',NULL,'467',NULL,NULL),(315,467,'SWT','applicants_certifications/
U467T1652261430.pdf','applicants_certifications','Cherryl B.
Pascual.pdf','U467T1652261430.pdf','2022-05-11 09:30:30','2022-05-11
09:30:30',NULL,'467',NULL,NULL),(316,467,'SWT','applicants_certifications/
U467T1652261435.pdf','applicants_certifications','Certificate of Appreciation
Cherryl Pascual.pdf','U467T1652261435.pdf','2022-05-11 09:30:35','2022-05-11
09:30:35',NULL,'467',NULL,NULL),(317,467,'ELIGIBILITY','applicants_certifications/
U467T1652261529.pdf','applicants_certifications','Cert of Rating Cherryl
Pascual.pdf','U467T1652261529.pdf','2022-05-11 09:32:09','2022-05-11
09:32:09',NULL,'467',NULL,NULL),(318,467,'ELIGIBILITY','applicants_certifications/
U467T1652261529.pdf','applicants_certifications','authenticaticated PRC ID Cherryl
Pascual.pdf','U467T1652261529.pdf','2022-05-11 09:32:09','2022-05-11
09:32:09',NULL,'467',NULL,NULL),(320,481,'COE','applicants_certifications/
U481T1652532897.pdf','applicants_certifications','Employment Certification
(FullSuite).pdf','U481T1652532897.pdf','2022-05-14 12:54:57','2022-05-14
12:54:57',NULL,'481',NULL,NULL),(322,481,'TOR','applicants_certifications/
U481T1652536176.pdf','applicants_certifications','TOR.pdf','U481T1652536176.pdf','2
022-05-14 13:49:36','2022-05-14 13:49:36',NULL,'481',NULL,NULL),
(324,393,'TOR','applicants_certifications/
U393T1652773789.PDF','applicants_certifications','Transcript of Records
RRAnunsacion.PDF','U393T1652773789.PDF','2022-05-17 07:49:49','2022-05-17
07:49:49',NULL,'393',NULL,NULL),(325,393,'COE','applicants_certifications/
U393T1652773927.pdf','applicants_certifications','COE
COA.pdf','U393T1652773927.pdf','2022-05-17 07:52:07','2022-05-17
07:52:07',NULL,'393',NULL,NULL),(326,393,'COE','applicants_certifications/
U393T1652773941.PDF','applicants_certifications','COE
NVSU.PDF','U393T1652773941.PDF','2022-05-17 07:52:21','2022-05-17
07:52:21',NULL,'393',NULL,NULL),(327,393,'SWT','applicants_certifications/
U393T1652774003.PDF','applicants_certifications','Certificate of Trainings &
Seminars.PDF','U393T1652774003.PDF','2022-05-17 07:53:23','2022-05-17
07:53:23',NULL,'393',NULL,NULL),(328,393,'ELIGIBILITY','applicants_certifications/
U393T1652774172.pdf','applicants_certifications','Certification of
Eligibility.pdf','U393T1652774172.pdf','2022-05-17 07:56:12','2022-05-17
07:56:12',NULL,'393',NULL,NULL),(329,479,'TOR','applicants_certifications/
U479T1652840646.pdf','applicants_certifications','Transcript
of Record and Diploma.pdf','U479T1652840646.pdf','2022-05-18 02:24:06','2022-05-18
02:24:06',NULL,'479',NULL,NULL),(330,479,'COE','applicants_certifications/
U479T1652840708.pdf','applicants_certifications','Certificate of
Employment.pdf','U479T1652840708.pdf','2022-05-18 02:25:08','2022-05-18
02:25:08',NULL,'479',NULL,NULL),(331,479,'COE','applicants_certifications/
U479T1652840771.pdf','applicants_certifications','CS Form No. 212 Attachment - Work
Experience Sheet.pdf','U479T1652840771.pdf','2022-05-18 02:26:11','2022-05-18
02:26:11',NULL,'479',NULL,NULL),(332,479,'SWT','applicants_certifications/
U479T1652840835.pdf','applicants_certifications','Training and
Seminar.pdf','U479T1652840835.pdf','2022-05-18 02:27:15','2022-05-18
02:27:15',NULL,'479',NULL,NULL),(333,479,'ELIGIBILITY','applicants_certifications/
U479T1652840894.pdf','applicants_certifications','PRC ID AND BOARD
RATING.pdf','U479T1652840894.pdf','2022-05-18 02:28:14','2022-05-18
02:28:14',NULL,'479',NULL,NULL),(334,484,'ELIGIBILITY','applicants_certifications/
U484T1652859488.pdf','applicants_certifications','BRYAN CSC
PRO.pdf','U484T1652859488.pdf','2022-05-18 06:59:10','2022-05-18
07:38:08',NULL,'484','484',NULL),(335,487,'TOR','applicants_certifications/
U487T1652971968.pdf','applicants_certifications','inbound1204306300666697719.pdf','
U487T1652971968.pdf','2022-05-19 14:52:48','2022-05-19
14:52:48',NULL,'487',NULL,NULL),(336,487,'ELIGIBILITY','applicants_certifications/
U487T1652972329.pdf','applicants_certifications','inbound4416531849767480069.pdf','
U487T1652972329.pdf','2022-05-19 14:58:49','2022-05-19
14:58:49',NULL,'487',NULL,NULL),(337,488,'SWT','applicants_certifications/
U488T1653014606.pdf','applicants_certifications','AVELINO B. BARO JR.
(1).pdf','U488T1653014606.pdf','2022-05-20 02:43:26','2022-05-20
02:43:26',NULL,'488',NULL,NULL),(338,488,'ELIGIBILITY','applicants_certifications/
U488T1653020214.pdf','applicants_certifications','PRC-
ID.pdf','U488T1653020214.pdf','2022-05-20 04:16:54','2022-05-20
04:16:54',NULL,'488',NULL,NULL),(339,488,'COE','applicants_certifications/
U488T1653020448.pdf','applicants_certifications','Application-
Letter.pdf','U488T1653020448.pdf','2022-05-20 04:20:48','2022-05-20
04:20:48',NULL,'488',NULL,NULL),(340,488,'COE','applicants_certifications/
U488T1653020480.pdf','applicants_certifications','AVELINO-BERSUELA-BARO-JR-
res.pdf','U488T1653020480.pdf','2022-05-20 04:21:20','2022-05-20
04:21:20',NULL,'488',NULL,NULL),(341,495,'TOR','applicants_certifications/
U495T1653043244.pdf','applicants_certifications','Transcript of Record-
BSMA.pdf','U495T1653043244.pdf','2022-05-20 10:40:44','2022-05-20
10:40:44',NULL,'495',NULL,NULL),(342,495,'TOR','applicants_certifications/
U495T1653043255.pdf','applicants_certifications','Transcript of Record-
MPA.pdf','U495T1653043255.pdf','2022-05-20 10:40:55','2022-05-20
10:40:55',NULL,'495',NULL,NULL),(345,495,'COE','applicants_certifications/
U495T1653043387.pdf','applicants_certifications','Certificate of Employment-Bounty
Fresh.pdf','U495T1653043387.pdf','2022-05-20 10:43:07','2022-05-20
10:43:07',NULL,'495',NULL,NULL),(346,495,'COE','applicants_certifications/
U495T1653043398.pdf','applicants_certifications','ServiceRecord
PNP.pdf','U495T1653043398.pdf','2022-05-20 10:43:18','2022-05-20
10:43:18',NULL,'495',NULL,NULL),(347,495,'ELIGIBILITY','applicants_certifications/
U495T1653043554.pdf','applicants_certifications','Eligibility.pdf','U495T1653043554
.pdf','2022-05-20 10:45:54','2022-05-20 10:45:54',NULL,'495',NULL,NULL),
(348,495,'SWT','applicants_certifications/
U495T1653044554.pdf','applicants_certifications','7_8.pdf','U495T1653044554.pdf','2
022-05-20 11:02:34','2022-05-20 11:02:34',NULL,'495',NULL,NULL),
(349,495,'SWT','applicants_certifications/
U495T1653044554.pdf','applicants_certifications','6_7.pdf','U495T1653044554.pdf','2
022-05-20 11:02:34','2022-05-20 11:02:34',NULL,'495',NULL,NULL),
(350,495,'SWT','applicants_certifications/
U495T1653044556.pdf','applicants_certifications','1_3.pdf','U495T1653044556.pdf','2
022-05-20 11:02:36','2022-05-20 11:02:36',NULL,'495',NULL,NULL),
(351,495,'SWT','applicants_certifications/
U495T1653044556.pdf','applicants_certifications','3_5.pdf','U495T1653044556.pdf','2
022-05-20 11:02:36','2022-05-20 11:02:36',NULL,'495',NULL,NULL),
(352,495,'SWT','applicants_certifications/
U495T1653044559.pdf','applicants_certifications','2_4.pdf','U495T1653044559.pdf','2
022-05-20 11:02:39','2022-05-20 11:02:39',NULL,'495',NULL,NULL),
(353,495,'SWT','applicants_certifications/
U495T1653044559.pdf','applicants_certifications','5_6.pdf','U495T1653044559.pdf','2
022-05-20 11:02:39','2022-05-20 11:02:39',NULL,'495',NULL,NULL),
(362,501,'COE','applicants_certifications/
U501T1653053830.pdf','applicants_certifications','PDF cert of employment
1.pdf','U501T1653053830.pdf','2022-05-20 13:37:10','2022-05-20
13:37:10',NULL,'501',NULL,NULL),(370,508,'TOR','applicants_certifications/
U508T1653089323.pdf','applicants_certifications','TOR
ISAP.pdf','U508T1653089323.pdf','2022-05-20 23:28:43','2022-05-20
23:28:43',NULL,'508',NULL,NULL),(372,508,'COE','applicants_certifications/
U508T1653089382.pdf','applicants_certifications','ISAP Certificate of
Employment.pdf','U508T1653089382.pdf','2022-05-20 23:29:42','2022-05-20
23:29:42',NULL,'508',NULL,NULL),(373,508,'COE','applicants_certifications/
U508T1653089386.pdf','applicants_certifications','DOH Certificate of
Employment.pdf','U508T1653089386.pdf','2022-05-20 23:29:46','2022-05-20
23:29:46',NULL,'508',NULL,NULL),(374,462,'ELIGIBILITY','applicants_certifications/
U462T1653129723.pdf','applicants_certifications','inbound1257272656414686552.pdf','
U462T1653129723.pdf','2022-05-21 10:42:03','2022-05-21
10:42:03',NULL,'462',NULL,NULL),(375,462,'COE','applicants_certifications/
U462T1653172585.pdf','applicants_certifications','coe.pdf','U462T1653172585.pdf','2
022-05-21 22:36:25','2022-05-21 22:36:25',NULL,'462',NULL,NULL),
(376,516,'TOR','applicants_certifications/
U516T1653270629.pdf','applicants_certifications','1.pdf','U516T1653270629.pdf','202
2-05-23 01:50:29','2022-05-23 01:50:29',NULL,'516',NULL,NULL),
(377,516,'TOR','applicants_certifications/
U516T1653270647.pdf','applicants_certifications','2.pdf','U516T1653270647.pdf','202
2-05-23 01:50:47','2022-05-23 01:50:47',NULL,'516',NULL,NULL),
(378,516,'TOR','applicants_certifications/
U516T1653270653.pdf','applicants_certifications','3.pdf','U516T1653270653.pdf','202
2-05-23 01:50:53','2022-05-23 01:50:53',NULL,'516',NULL,NULL),
(379,516,'COE','applicants_certifications/
U516T1653270801.pdf','applicants_certifications','COE
1.pdf','U516T1653270801.pdf','2022-05-23 01:53:21','2022-05-23
01:53:21',NULL,'516',NULL,NULL),(380,516,'COE','applicants_certifications/
U516T1653270806.pdf','applicants_certifications','COE
2.pdf','U516T1653270806.pdf','2022-05-23 01:53:26','2022-05-23
01:53:26',NULL,'516',NULL,NULL),(381,516,'ELIGIBILITY','applicants_certifications/
U516T1653270919.pdf','applicants_certifications','PRC
ID.pdf','U516T1653270919.pdf','2022-05-23 01:55:19','2022-05-23
01:55:19',NULL,'516',NULL,NULL),(382,516,'SWT','applicants_certifications/
U516T1653270960.pdf','applicants_certifications','CLOUD
RF.pdf','U516T1653270960.pdf','2022-05-23 01:56:00','2022-05-23
01:56:00',NULL,'516',NULL,NULL),(383,516,'SWT','applicants_certifications/
U516T1653270960.pdf','applicants_certifications','CCNA
Certificates.pdf','U516T1653270960.pdf','2022-05-23 01:56:00','2022-05-23
01:56:00',NULL,'516',NULL,NULL),(384,516,'SWT','applicants_certifications/
U516T1653270961.pdf','applicants_certifications','DAS.pdf','U516T1653270961.pdf','2
022-05-23 01:56:01','2022-05-23 01:56:01',NULL,'516',NULL,NULL),
(385,516,'SWT','applicants_certifications/
U516T1653270961.pdf','applicants_certifications','Google earth and QGIS
tools.pdf','U516T1653270961.pdf','2022-05-23 01:56:01','2022-05-23
01:56:01',NULL,'516',NULL,NULL),(386,516,'SWT','applicants_certifications/
U516T1653270962.pdf','applicants_certifications','GSM and UMTS
Principles.pdf','U516T1653270962.pdf','2022-05-23 01:56:02','2022-05-23
01:56:02',NULL,'516',NULL,NULL),(387,516,'SWT','applicants_certifications/
U516T1653270963.pdf','applicants_certifications','IN BUILDING SOLUTION 5 WEEKS
TRAINING.pdf','U516T1653270963.pdf','2022-05-23 01:56:03','2022-05-23
01:56:03',NULL,'516',NULL,NULL),(388,516,'SWT','applicants_certifications/
U516T1653270964.pdf','applicants_certifications','indoor DAS Solution
Design.pdf','U516T1653270964.pdf','2022-05-23 01:56:04','2022-05-23
01:56:04',NULL,'516',NULL,NULL),(389,516,'SWT','applicants_certifications/
U516T1653270964.pdf','applicants_certifications','INDOOR APPLICATION AND
TESTING.pdf','U516T1653270964.pdf','2022-05-23 01:56:04','2022-05-23
01:56:04',NULL,'516',NULL,NULL),(390,516,'SWT','applicants_certifications/
U516T1653270966.pdf','applicants_certifications','INDOOR LINK
BUDGET.pdf','U516T1653270966.pdf','2022-05-23 01:56:06','2022-05-23
01:56:06',NULL,'516',NULL,NULL),(391,516,'SWT','applicants_certifications/
U516T1653270966.pdf','applicants_certifications','Indoor Radio
Planning.pdf','U516T1653270966.pdf','2022-05-23 01:56:06','2022-05-23
01:56:06',NULL,'516',NULL,NULL),(392,516,'SWT','applicants_certifications/
U516T1653270967.pdf','applicants_certifications','Network Planning and
design.pdf','U516T1653270967.pdf','2022-05-23 01:56:07','2022-05-23
01:56:07',NULL,'516',NULL,NULL),(393,516,'SWT','applicants_certifications/
U516T1653270967.pdf','applicants_certifications','LTE & 5G
Fundamentals.pdf','U516T1653270967.pdf','2022-05-23 01:56:07','2022-05-23
01:56:07',NULL,'516',NULL,NULL),(394,516,'SWT','applicants_certifications/
U516T1653270968.pdf','applicants_certifications','QGIS MAPPING
TOOLS.pdf','U516T1653270968.pdf','2022-05-23 01:56:08','2022-05-23
01:56:08',NULL,'516',NULL,NULL),(395,516,'SWT','applicants_certifications/
U516T1653270968.pdf','applicants_certifications','Small Cell Indoor
design.pdf','U516T1653270968.pdf','2022-05-23 01:56:08','2022-05-23
01:56:08',NULL,'516',NULL,NULL),(396,516,'SWT','applicants_certifications/
U516T1653270969.pdf','applicants_certifications','Tools for Indoor radio
planning.pdf','U516T1653270969.pdf','2022-05-23 01:56:09','2022-05-23
01:56:09',NULL,'516',NULL,NULL),(397,516,'SWT','applicants_certifications/
U516T1653270970.pdf','applicants_certifications','TRAFFIC
DIMENSIONING.pdf','U516T1653270970.pdf','2022-05-23 01:56:10','2022-05-23
01:56:10',NULL,'516',NULL,NULL),(398,516,'SWT','applicants_certifications/
U516T1653271556.pdf','applicants_certifications','BASIC CONNECTIVITY
ENGINEER.pdf','U516T1653271556.pdf','2022-05-23 02:05:56','2022-05-23
02:05:56',NULL,'516',NULL,NULL),(399,516,'SWT','applicants_certifications/
U516T1653271556.pdf','applicants_certifications','CCTV SYSTEM AND
DESIGN.pdf','U516T1653271556.pdf','2022-05-23 02:05:56','2022-05-23
02:05:56',NULL,'516',NULL,NULL),(400,516,'SWT','applicants_certifications/
U516T1653271557.pdf','applicants_certifications','COMMUNICATION SERVICE
SALES.pdf','U516T1653271557.pdf','2022-05-23 02:05:57','2022-05-23
02:05:57',NULL,'516',NULL,NULL),(401,516,'SWT','applicants_certifications/
U516T1653271557.pdf','applicants_certifications','CONNECTIVITY SERVICE
MASTER.pdf','U516T1653271557.pdf','2022-05-23 02:05:57','2022-05-23
02:05:57',NULL,'516',NULL,NULL),(402,516,'SWT','applicants_certifications/
U516T1653271558.pdf','applicants_certifications','FDAS.pdf','U516T1653271558.pdf','
2022-05-23 02:05:58','2022-05-23 02:05:58',NULL,'516',NULL,NULL),
(403,516,'SWT','applicants_certifications/
U516T1653271558.pdf','applicants_certifications','FPO ORIENTATION AND
TRAINING.pdf','U516T1653271558.pdf','2022-05-23 02:05:58','2022-05-23
02:05:58',NULL,'516',NULL,NULL),(404,516,'SWT','applicants_certifications/
U516T1653271559.pdf','applicants_certifications','IM C SERVICE
ENGINEER.pdf','U516T1653271559.pdf','2022-05-23 02:05:59','2022-05-23
02:05:59',NULL,'516',NULL,NULL),(405,516,'SWT','applicants_certifications/
U516T1653271559.pdf','applicants_certifications','INSTRUMENTATION.pdf','U516T165327
1559.pdf','2022-05-23 02:05:59','2022-05-23 02:05:59',NULL,'516',NULL,NULL),
(406,516,'SWT','applicants_certifications/
U516T1653271560.pdf','applicants_certifications','MICROCONTROLLER.pdf','U516T165327
1560.pdf','2022-05-23 02:06:00','2022-05-23 02:06:00',NULL,'516',NULL,NULL),
(407,516,'SWT','applicants_certifications/
U516T1653271560.pdf','applicants_certifications','REMOTE
ENGINEER.pdf','U516T1653271560.pdf','2022-05-23 02:06:00','2022-05-23
02:06:00',NULL,'516',NULL,NULL),(408,516,'SWT','applicants_certifications/
U516T1653271591.pdf','applicants_certifications','SOLAR
POWER.pdf','U516T1653271591.pdf','2022-05-23 02:06:31','2022-05-23
02:06:31',NULL,'516',NULL,NULL),(409,516,'SWT','applicants_certifications/
U516T1653271591.pdf','applicants_certifications','MICROCONTROLLER.pdf','U516T165327
1591.pdf','2022-05-23 02:06:31','2022-05-23 02:06:31',NULL,'516',NULL,NULL),
(410,493,'ELIGIBILITY','applicants_certifications/
U493T1653276283.pdf','applicants_certifications','Authentic
ID.pdf','U493T1653276283.pdf','2022-05-23 03:24:43','2022-05-23
03:24:43',NULL,'493',NULL,NULL),(411,518,'TOR','applicants_certifications/
U518T1653286722.pdf','applicants_certifications','img003.pdf','U518T1653286722.pdf'
,'2022-05-23 06:18:43','2022-05-23 06:18:43',NULL,'518',NULL,NULL),
(412,518,'TOR','applicants_certifications/
U518T1653287006.pdf','applicants_certifications','img004.pdf','U518T1653287006.pdf'
,'2022-05-23 06:23:26','2022-05-23 06:23:26',NULL,'518',NULL,NULL),
(413,518,'ELIGIBILITY','applicants_certifications/
U518T1653287497.pdf','applicants_certifications','img005.pdf','U518T1653287497.pdf'
,'2022-05-23 06:31:37','2022-05-23 06:31:37',NULL,'518',NULL,NULL),
(415,502,'ELIGIBILITY','applicants_certifications/
U502T1653297879.pdf','applicants_certifications','Document-WPS
Office.pdf','U502T1653297879.pdf','2022-05-23 09:24:39','2022-05-23
09:24:39',NULL,'502',NULL,NULL),(416,502,'SWT','applicants_certifications/
U502T1653299330.pdf','applicants_certifications','Document-WPS
Office.pdf','U502T1653299330.pdf','2022-05-23 09:48:50','2022-05-23
09:48:50',NULL,'502',NULL,NULL),(417,502,'COE','applicants_certifications/
U502T1653299482.pdf','applicants_certifications','Document-WPS
Office.pdf','U502T1653299482.pdf','2022-05-23 09:51:22','2022-05-23
09:51:22',NULL,'502',NULL,NULL),(418,493,'SWT','applicants_certifications/
U493T1653386698.pdf','applicants_certifications','Certificates.pdf','U493T165338669
8.pdf','2022-05-24 10:04:58','2022-05-24 10:04:58',NULL,'493',NULL,NULL),
(419,493,'COE','applicants_certifications/
U493T1653387043.pdf','applicants_certifications','CE.pdf','U493T1653387043.pdf','20
22-05-24 10:10:43','2022-05-24 10:10:43',NULL,'493',NULL,NULL),
(421,522,'TOR','applicants_certifications/
U522T1653397703.pdf','applicants_certifications','Apple-Garingo_Transcript-of-
Records.pdf','U522T1653397703.pdf','2022-05-24 13:08:23','2022-05-24
13:08:23',NULL,'522',NULL,NULL),(424,522,'ELIGIBILITY','applicants_certifications/
U522T1653398040.pdf','applicants_certifications','Apple-Garingo_Eligibility-
Certifcates-and-License.pdf','U522T1653398040.pdf','2022-05-24 13:14:00','2022-05-
24 13:14:00',NULL,'522',NULL,NULL),(425,522,'SWT','applicants_certifications/
U522T1653401627.pdf','applicants_certifications','Apple Garingo_Certificates
(3).pdf','U522T1653401627.pdf','2022-05-24 14:13:47','2022-05-24
14:13:47',NULL,'522',NULL,NULL),(426,487,'SWT','applicants_certifications/
U487T1653462015.pdf','applicants_certifications','inbound1140303240900301821.pdf','
U487T1653462015.pdf','2022-05-25 07:00:15','2022-05-25
07:00:15',NULL,'487',NULL,NULL),(427,184,'TOR','applicants_certifications/
U184T1653528514.pdf','applicants_certifications','OFFICIAL TRANSCRIPT OF
RECORDS_RAMONES_JOHN PAUL_R.pdf','U184T1653528514.pdf','2022-05-26 01:28:34','2022-
05-26 01:28:34',NULL,'184',NULL,NULL),(448,184,'SWT','applicants_certifications/
U184T1653528843.pdf','applicants_certifications','[1] Cybersecurity Awareness
Webinar - John Paul Ramones.pdf','U184T1653528843.pdf','2022-05-26 01:34:03','2022-
05-26 01:34:03',NULL,'184',NULL,NULL),(449,184,'SWT','applicants_certifications/
U184T1653528851.pdf','applicants_certifications','[-] The Basics of Computer
Security - John Paul R. Ramones.pdf','U184T1653528851.pdf','2022-05-26
01:34:11','2022-05-26 01:34:11',NULL,'184',NULL,NULL),
(450,184,'SWT','applicants_certifications/
U184T1653528855.pdf','applicants_certifications','[10] Photo Editing - Intro to
Photoshop - JOHN PAUL R. RAMONES.pdf','U184T1653528855.pdf','2022-05-26
01:34:15','2022-05-26 01:34:15',NULL,'184',NULL,NULL),
(451,184,'SWT','applicants_certifications/
U184T1653528865.pdf','applicants_certifications','[11] The Future of ICT in the
Philippines Emerging Education Techonologies - Johnn Paul
Ramones.pdf','U184T1653528865.pdf','2022-05-26 01:34:25','2022-05-26
01:34:25',NULL,'184',NULL,NULL),(452,184,'SWT','applicants_certifications/
U184T1653528875.pdf','applicants_certifications','[12] Secure way of using
Smartphones and saftey on Social Media- John Paul
Ramones.pdf','U184T1653528875.pdf','2022-05-26 01:34:35','2022-05-26
01:34:35',NULL,'184',NULL,NULL),(453,184,'SWT','applicants_certifications/
U184T1653528878.pdf','applicants_certifications','[13] Basic Adobe Photoshop - John
Paul Ramones.pdf','U184T1653528878.pdf','2022-05-26 01:34:38','2022-05-26
01:34:38',NULL,'184',NULL,NULL),(454,184,'SWT','applicants_certifications/
U184T1653528882.pdf','applicants_certifications','[14] Fact-Checking in the Digital
World of Fake News - JOHN PAUL RODELAS RAMONES.pdf','U184T1653528882.pdf','2022-05-
26 01:34:42','2022-05-26 01:34:42',NULL,'184',NULL,NULL),
(455,184,'SWT','applicants_certifications/
U184T1653528895.pdf','applicants_certifications','[15] Online Assessment Tools -
JOHN PAUL R. RAMONES.pdf','U184T1653528895.pdf','2022-05-26 01:34:55','2022-05-26
01:34:55',NULL,'184',NULL,NULL),(456,184,'SWT','applicants_certifications/
U184T1653528909.pdf','applicants_certifications','[17] PYTHON GUI PROGRAMMING WITH
TKINTER - John Paul Ramones.pdf','U184T1653528909.pdf','2022-05-26 01:35:09','2022-
05-26 01:35:09',NULL,'184',NULL,NULL),(457,184,'SWT','applicants_certifications/
U184T1653528923.pdf','applicants_certifications','[2] Data Privacy Protection -
John Paul Ramones.pdf','U184T1653528923.pdf','2022-05-26 01:35:23','2022-05-26
01:35:23',NULL,'184',NULL,NULL),(458,184,'SWT','applicants_certifications/
U184T1653528945.pdf','applicants_certifications','[3] Industry 4.0 - John Paul
Ramones.pdf','U184T1653528945.pdf','2022-05-26 01:35:45','2022-05-26
01:35:45',NULL,'184',NULL,NULL),(459,184,'SWT','applicants_certifications/
U184T1653528955.pdf','applicants_certifications','[4] Basic & Advance Office 365
Office Productivity Tool - John Paul Ramones.pdf','U184T1653528955.pdf','2022-05-26
01:35:55','2022-05-26 01:35:55',NULL,'184',NULL,NULL),
(460,184,'SWT','applicants_certifications/
U184T1653528969.pdf','applicants_certifications','[6]Cybersecurity Competency
Framework - John Paul Ramones.pdf','U184T1653528969.pdf','2022-05-26
01:36:09','2022-05-26 01:36:09',NULL,'184',NULL,NULL),
(461,184,'SWT','applicants_certifications/
U184T1653528987.pdf','applicants_certifications','[7] COMPUTER HARDWARE AND SYSTEMS
SERVICING - John Paul Ramones.pdf','U184T1653528987.pdf','2022-05-26
01:36:27','2022-05-26 01:36:27',NULL,'184',NULL,NULL),
(462,184,'SWT','applicants_certifications/
U184T1653529003.pdf','applicants_certifications','[8] Java Programming Fundamentals
- John Paul Ramones.pdf','U184T1653529003.pdf','2022-05-26 01:36:43','2022-05-26
01:36:43',NULL,'184',NULL,NULL),(463,184,'SWT','applicants_certifications/
U184T1653529016.pdf','applicants_certifications','[9] Microsoft for Digital
Workforce - John Paul R. Ramones.pdf','U184T1653529016.pdf','2022-05-26
01:36:56','2022-05-26 01:36:56',NULL,'184',NULL,NULL),
(464,184,'SWT','applicants_certifications/
U184T1653529034.pdf','applicants_certifications','[3] Industry
4.0 - John Paul Ramones.pdf','U184T1653529034.pdf','2022-05-26 01:37:14','2022-05-
26 01:37:14',NULL,'184',NULL,NULL),(465,210,'TOR','applicants_certifications/
U210T1653536521.pdf','applicants_certifications','TOR.pdf','U210T1653536521.pdf','2
022-05-26 03:42:01','2022-05-26 03:42:01',NULL,'210',NULL,NULL),
(466,210,'COE','applicants_certifications/
U210T1653536542.pdf','applicants_certifications','COE_Vanessa A.
Ildefonso.docx.pdf','U210T1653536542.pdf','2022-05-26 03:42:22','2022-05-26
03:42:22',NULL,'210',NULL,NULL),(467,525,'COE','applicants_certifications/
U525T1653543465.pdf','applicants_certifications','Certificate of
Employment.pdf','U525T1653543465.pdf','2022-05-26 05:37:45','2022-05-26
05:37:45',NULL,'525',NULL,NULL),(468,525,'ELIGIBILITY','applicants_certifications/
U525T1653543503.pdf','applicants_certifications','Civil Service
Eligibility.pdf','U525T1653543503.pdf','2022-05-26 05:38:23','2022-05-26
05:38:23',NULL,'525',NULL,NULL),(469,525,'ELIGIBILITY','applicants_certifications/
U525T1653543503.pdf','applicants_certifications','PRC
License.pdf','U525T1653543503.pdf','2022-05-26 05:38:23','2022-05-26
05:38:23',NULL,'525',NULL,NULL),(470,525,'TOR','applicants_certifications/
U525T1653543643.pdf','applicants_certifications','Transcript of
Records.pdf','U525T1653543643.pdf','2022-05-26 05:40:43','2022-05-26
05:40:43',NULL,'525',NULL,NULL),(471,525,'SWT','applicants_certifications/
U525T1653543736.pdf','applicants_certifications','Certificates.pdf','U525T165354373
6.pdf','2022-05-26 05:42:16','2022-05-26 05:42:16',NULL,'525',NULL,NULL),
(472,210,'COE','applicants_certifications/
U210T1653547300.pdf','applicants_certifications','Employee Certificate_SMU-
converted-compressed.pdf','U210T1653547300.pdf','2022-05-26 06:41:40','2022-05-26
06:41:40',NULL,'210',NULL,NULL),(473,210,'SWT','applicants_certifications/
U210T1653547426.pdf','applicants_certifications','Compilation of
Certificates.pdf','U210T1653547426.pdf','2022-05-26 06:43:46','2022-05-26
06:43:46',NULL,'210',NULL,NULL),(474,210,'ELIGIBILITY','applicants_certifications/
U210T1653547848.pdf','applicants_certifications','CS_Professional and Sub-
Professional.pdf','U210T1653547848.pdf','2022-05-26 06:50:48','2022-05-26
06:50:48',NULL,'210',NULL,NULL),(476,528,'TOR','applicants_certifications/
U528T1653564043.pdf','applicants_certifications','3 Transcript of
Records.pdf','U528T1653564043.pdf','2022-05-26 11:20:43','2022-05-26
11:20:43',NULL,'528',NULL,NULL),(477,528,'COE','applicants_certifications/
U528T1653564065.pdf','applicants_certifications','7 Certificate of
Employment.pdf','U528T1653564065.pdf','2022-05-26 11:21:05','2022-05-26
11:21:05',NULL,'528',NULL,NULL),(478,528,'SWT','applicants_certifications/
U528T1653564638.pdf','applicants_certifications','6 Certificates of Training,
Seminars, Conferences 1.pdf','U528T1653564638.pdf','2022-05-26 11:30:38','2022-05-
26 11:30:38',NULL,'528',NULL,NULL),(479,528,'SWT','applicants_certifications/
U528T1653564732.pdf','applicants_certifications','6 Certificates of Training,
Seminars, Conferences 2.pdf','U528T1653564732.pdf','2022-05-26 11:32:12','2022-05-
26 11:32:12',NULL,'528',NULL,NULL),(480,528,'SWT','applicants_certifications/
U528T1653564820.pdf','applicants_certifications','6 Certificates of Training,
Seminars, Conferences 3.pdf','U528T1653564820.pdf','2022-05-26 11:33:40','2022-05-
26 11:33:40',NULL,'528',NULL,NULL),(481,528,'SWT','applicants_certifications/
U528T1653564879.pdf','applicants_certifications','6 Certificates of Training,
Seminars, Conferences 4.pdf','U528T1653564879.pdf','2022-05-26 11:34:39','2022-05-
26 11:34:39',NULL,'528',NULL,NULL),
(482,528,'ELIGIBILITY','applicants_certifications/
U528T1653565023.pdf','applicants_certifications','Certificate of Eligibility and
License.pdf','U528T1653565023.pdf','2022-05-26 11:37:03','2022-05-26
11:37:03',NULL,'528',NULL,NULL),(483,528,'COE','applicants_certifications/
U528T1653565588.pdf','applicants_certifications','IPCR or Performance Commitment
and Review Evaluation for the Last Rating PEriod.pdf','U528T1653565588.pdf','2022-
05-26 11:46:28','2022-05-26 11:46:28',NULL,'528',NULL,NULL),
(484,528,'COE','applicants_certifications/
U528T1653565621.pdf','applicants_certifications','IPCR or Performance Commitment
and Review Evaluation for the Last Rating PEriod
1.pdf','U528T1653565621.pdf','2022-05-26 11:47:01','2022-05-26
11:47:01',NULL,'528',NULL,NULL),(485,528,'COE','applicants_certifications/
U528T1653565652.pdf','applicants_certifications','IPCR or Performance Commitment
and Review Evaluation for the Last Rating PEriod
2.pdf','U528T1653565652.pdf','2022-05-26 11:47:32','2022-05-26
11:47:32',NULL,'528',NULL,NULL),(486,527,'TOR','applicants_certifications/
U527T1653629338.pdf','applicants_certifications','TOR1.pdf','U527T1653629338.pdf','
2022-05-27 05:28:58','2022-05-27 05:28:58',NULL,'527',NULL,NULL),
(487,527,'TOR','applicants_certifications/
U527T1653629356.pdf','applicants_certifications','TOR2.pdf','U527T1653629356.pdf','
2022-05-27 05:29:16','2022-05-27 05:29:16',NULL,'527',NULL,NULL),
(488,527,'COE','applicants_certifications/
U527T1653629375.pdf','applicants_certifications','COE
NGHA.pdf','U527T1653629375.pdf','2022-05-27 05:29:35','2022-05-27
05:29:35',NULL,'527',NULL,NULL),(489,527,'COE','applicants_certifications/
U527T1653629385.pdf','applicants_certifications','COE
KFH.pdf','U527T1653629385.pdf','2022-05-27 05:29:45','2022-05-27
05:29:45',NULL,'527',NULL,NULL),(490,527,'COE','applicants_certifications/
U527T1653629391.pdf','applicants_certifications','COE
SBH.pdf','U527T1653629391.pdf','2022-05-27 05:29:51','2022-05-27
05:29:51',NULL,'527',NULL,NULL),(492,527,'ELIGIBILITY','applicants_certifications/
U527T1653631119.pdf','applicants_certifications','prc
IDs.pdf','U527T1653631119.pdf','2022-05-27 05:58:39','2022-05-27
05:58:39',NULL,'527',NULL,NULL),(494,514,'COE','applicants_certifications/
U514T1653647944.pdf','applicants_certifications','Document-WPS
Office.pdf','U514T1653647944.pdf','2022-05-27 10:39:04','2022-05-27
10:39:04',NULL,'514',NULL,NULL),(495,514,'TOR','applicants_certifications/
U514T1653648799.pdf','applicants_certifications','Document-WPS
Office.pdf','U514T1653648799.pdf','2022-05-27 10:53:19','2022-05-27
10:53:19',NULL,'514',NULL,NULL),(496,514,'TOR','applicants_certifications/
U514T1653648807.pdf','applicants_certifications','Document-WPS Office
2.pdf','U514T1653648807.pdf','2022-05-27 10:53:27','2022-05-27
10:53:27',NULL,'514',NULL,NULL),(497,514,'COE','applicants_certifications/
U514T1653649114.pdf','applicants_certifications','Document-WPS Office
3.pdf','U514T1653649114.pdf','2022-05-27 10:58:34','2022-05-27
10:58:34',NULL,'514',NULL,NULL),(498,514,'ELIGIBILITY','applicants_certifications/
U514T1653656540.pdf','applicants_certifications','Document-WPS Office
license.pdf','U514T1653656540.pdf','2022-05-27 13:02:20','2022-05-27
13:02:20',NULL,'514',NULL,NULL),(499,514,'SWT','applicants_certifications/
U514T1653656997.pdf','applicants_certifications','Document-WPS Office
certi.pdf','U514T1653656997.pdf','2022-05-27 13:09:57','2022-05-27
13:09:57',NULL,'514',NULL,NULL),(500,514,'SWT','applicants_certifications/
U514T1653657000.pdf','applicants_certifications','Document-WPS Office
certi.2.pdf','U514T1653657000.pdf','2022-05-27 13:10:00','2022-05-27
13:10:00',NULL,'514',NULL,NULL),(501,514,'SWT','applicants_certifications/
U514T1653657004.pdf','applicants_certifications','Document-WPS Office
certi.3.pdf','U514T1653657004.pdf','2022-05-27 13:10:04','2022-05-27
13:10:04',NULL,'514',NULL,NULL),(502,514,'SWT','applicants_certifications/
U514T1653657013.pdf','applicants_certifications','Document-WPS Office
certi.4.pdf','U514T1653657013.pdf','2022-05-27 13:10:13','2022-05-27
13:10:13',NULL,'514',NULL,NULL),(503,514,'SWT','applicants_certifications/
U514T1653657749.pdf','applicants_certifications','Document-WPS Office
certi.5.pdf','U514T1653657749.pdf','2022-05-27 13:22:29','2022-05-27
13:22:29',NULL,'514',NULL,NULL),(504,514,'SWT','applicants_certifications/
U514T1653657754.pdf','applicants_certifications','Document-WPS Office
certi.6.pdf','U514T1653657754.pdf','2022-05-27 13:22:34','2022-05-27
13:22:34',NULL,'514',NULL,NULL),(505,514,'SWT','applicants_certifications/
U514T1653657755.pdf','applicants_certifications','Document-WPS Office
certi.7.pdf','U514T1653657755.pdf','2022-05-27 13:22:35','2022-05-27
13:22:35',NULL,'514',NULL,NULL),(506,514,'SWT','applicants_certifications/
U514T1653657759.pdf','applicants_certifications','Document-WPS Office
certi.8.pdf','U514T1653657759.pdf','2022-05-27 13:22:39','2022-05-27
13:22:39',NULL,'514',NULL,NULL),(507,514,'SWT','applicants_certifications/
U514T1653657762.pdf','applicants_certifications','Document-WPS Office
certi.9.pdf','U514T1653657762.pdf','2022-05-27 13:22:42','2022-05-27
13:22:42',NULL,'514',NULL,NULL),(508,514,'SWT','applicants_certifications/
U514T1653657765.pdf','applicants_certifications','Document-WPS Office
certi.10.pdf','U514T1653657765.pdf','2022-05-27 13:22:45','2022-05-27
13:22:45',NULL,'514',NULL,NULL),(509,514,'SWT','applicants_certifications/
U514T1653657768.pdf','applicants_certifications','Document-WPS Office
certi.11.pdf','U514T1653657768.pdf','2022-05-27 13:22:48','2022-05-27
13:22:48',NULL,'514',NULL,NULL),(510,514,'SWT','applicants_certifications/
U514T1653657771.pdf','applicants_certifications','Document-WPS Office
certi.12.pdf','U514T1653657771.pdf','2022-05-27 13:22:51','2022-05-27
13:22:51',NULL,'514',NULL,NULL),(512,520,'TOR','applicants_certifications/
U520T1653718097.pdf','applicants_certifications','OFFICIAL TRANSCRIPT OF
RECORD.pdf','U520T1653718097.pdf','2022-05-28 06:08:17','2022-05-28
06:08:17',NULL,'520',NULL,NULL),(513,520,'COE','applicants_certifications/
U520T1653718911.pdf','applicants_certifications','COE - Banaue
Hotel.pdf','U520T1653718911.pdf','2022-05-28 06:21:51','2022-05-28
06:21:51',NULL,'520',NULL,NULL),(514,520,'COE','applicants_certifications/
U520T1653718911.pdf','applicants_certifications','COS
2021 Page 1.pdf','U520T1653718911.pdf','2022-05-28 06:21:51','2022-05-28
06:21:51',NULL,'520',NULL,NULL),(515,520,'COE','applicants_certifications/
U520T1653718913.pdf','applicants_certifications','COS 2021 Page
2.pdf','U520T1653718913.pdf','2022-05-28 06:21:53','2022-05-28
06:21:53',NULL,'520',NULL,NULL),(516,520,'COE','applicants_certifications/
U520T1653718915.pdf','applicants_certifications','COS 2022 Page
2.pdf','U520T1653718915.pdf','2022-05-28 06:21:55','2022-05-28
06:21:55',NULL,'520',NULL,NULL),(518,520,'COE','applicants_certifications/
U520T1653719496.pdf','applicants_certifications','COS 2022 Page
1.pdf','U520T1653719496.pdf','2022-05-28 06:31:36','2022-05-28
06:31:36',NULL,'520',NULL,NULL),(520,520,'ELIGIBILITY','applicants_certifications/
U520T1653720030.pdf','applicants_certifications','PRC
License.pdf','U520T1653720030.pdf','2022-05-28 06:40:30','2022-05-28
06:40:30',NULL,'520',NULL,NULL),(521,520,'SWT','applicants_certifications/
U520T1653720250.pdf','applicants_certifications','Bartending
NCII.pdf','U520T1653720250.pdf','2022-05-28 06:44:10','2022-05-28
06:44:10',NULL,'520',NULL,NULL),(522,520,'SWT','applicants_certifications/
U520T1653720250.pdf','applicants_certifications','Bread and Pastry
NCII.pdf','U520T1653720250.pdf','2022-05-28 06:44:10','2022-05-28
06:44:10',NULL,'520',NULL,NULL),(523,520,'SWT','applicants_certifications/
U520T1653720482.pdf','applicants_certifications','F & B
NCII.pdf','U520T1653720482.pdf','2022-05-28 06:48:02','2022-05-28
06:48:02',NULL,'520',NULL,NULL),(524,520,'SWT','applicants_certifications/
U520T1653720482.pdf','applicants_certifications','Cookery
NCII.pdf','U520T1653720482.pdf','2022-05-28 06:48:02','2022-05-28
06:48:02',NULL,'520',NULL,NULL),(525,520,'SWT','applicants_certifications/
U520T1653720491.pdf','applicants_certifications','Trainers Methodology
NCI.pdf','U520T1653720491.pdf','2022-05-28 06:48:11','2022-05-28
06:48:11',NULL,'520',NULL,NULL),(526,520,'SWT','applicants_certifications/
U520T1653720492.pdf','applicants_certifications','Housekeeping
NCII.pdf','U520T1653720492.pdf','2022-05-28 06:48:12','2022-05-28
06:48:12',NULL,'520',NULL,NULL),(527,520,'SWT','applicants_certifications/
U520T1653722281.pdf','applicants_certifications','Bartending
Services.pdf','U520T1653722281.pdf','2022-05-28 07:18:01','2022-05-28
07:18:01',NULL,'520',NULL,NULL),(528,520,'SWT','applicants_certifications/
U520T1653722281.pdf','applicants_certifications','Bread and Pastry
Production.pdf','U520T1653722281.pdf','2022-05-28 07:18:01','2022-05-28
07:18:01',NULL,'520',NULL,NULL),(529,520,'SWT','applicants_certifications/
U520T1653722291.pdf','applicants_certifications','Front Office
Services.pdf','U520T1653722291.pdf','2022-05-28 07:18:11','2022-05-28
07:18:11',NULL,'520',NULL,NULL),(530,520,'SWT','applicants_certifications/
U520T1653722291.pdf','applicants_certifications','F & B
Services.pdf','U520T1653722291.pdf','2022-05-28 07:18:11','2022-05-28
07:18:11',NULL,'520',NULL,NULL),(531,520,'SWT','applicants_certifications/
U520T1653722299.pdf','applicants_certifications','Housekeeping
Services.pdf','U520T1653722299.pdf','2022-05-28 07:18:19','2022-05-28
07:18:19',NULL,'520',NULL,NULL),(532,520,'SWT','applicants_certifications/
U520T1653722299.pdf','applicants_certifications','Tourguiding
Services.pdf','U520T1653722299.pdf','2022-05-28 07:18:19','2022-05-28
07:18:19',NULL,'520',NULL,NULL),(533,520,'SWT','applicants_certifications/
U520T1653722306.pdf','applicants_certifications','YEP
Training.pdf','U520T1653722306.pdf','2022-05-28 07:18:26','2022-05-28
07:18:26',NULL,'520',NULL,NULL),(534,520,'SWT','applicants_certifications/
U520T1653722306.pdf','applicants_certifications','Trainers Methodology Level
I.pdf','U520T1653722306.pdf','2022-05-28 07:18:26','2022-05-28
07:18:26',NULL,'520',NULL,NULL),(535,532,'TOR','applicants_certifications/
U532T1653740433.pdf','applicants_certifications','GLORIDA L. NACHIMMA- TRANSCRIPT
OF RECORDS.pdf','U532T1653740433.pdf','2022-05-28 12:20:33','2022-05-28
12:20:33',NULL,'532',NULL,NULL),(536,532,'COE','applicants_certifications/
U532T1653740463.pdf','applicants_certifications','GLORIDA L. NACHIMMA- CERTIFICATES
OF EMPLOYMENT.pdf','U532T1653740463.pdf','2022-05-28 12:21:03','2022-05-28
12:21:03',NULL,'532',NULL,NULL),(537,532,'ELIGIBILITY','applicants_certifications/
U532T1653740523.pdf','applicants_certifications','GLORIDA L. NACHIMMA-
PRC.pdf','U532T1653740523.pdf','2022-05-28 12:22:03','2022-05-28
12:22:03',NULL,'532',NULL,NULL),(538,532,'SWT','applicants_certifications/
U532T1653741103.pdf','applicants_certifications','GLORIDA L. NACHIMMA- TRAININGS
AND SEMINARS ATTENDED F.pdf','U532T1653741103.pdf','2022-05-28 12:31:43','2022-05-
28 12:31:43',NULL,'532',NULL,NULL),
(539,531,'ELIGIBILITY','applicants_certifications/
U531T1653744234.pdf','applicants_certifications','eligibility.pdf','U531T1653744234
.pdf','2022-05-28 13:23:54','2022-05-28 13:23:54',NULL,'531',NULL,NULL),
(540,531,'COE','applicants_certifications/
U531T1653745223.pdf','applicants_certifications','cerficate of
employment.pdf','U531T1653745223.pdf','2022-05-28 13:40:23','2022-05-28
13:40:23',NULL,'531',NULL,NULL),(541,531,'SWT','applicants_certifications/
U531T1653746965.pdf','applicants_certifications','seminars and trainings
1.pdf','U531T1653746965.pdf','2022-05-28 14:09:25','2022-05-28
14:09:25',NULL,'531',NULL,NULL),(542,531,'SWT','applicants_certifications/
U531T1653747037.pdf','applicants_certifications','seminars and trainings
2.pdf','U531T1653747037.pdf','2022-05-28 14:10:38','2022-05-28
14:10:38',NULL,'531',NULL,NULL),(546,531,'TOR','applicants_certifications/
U531T1653747266.pdf','applicants_certifications','TOR.pdf','U531T1653747266.pdf','2
022-05-28 14:14:26','2022-05-28 14:14:26',NULL,'531',NULL,NULL),
(548,491,'TOR','applicants_certifications/
U491T1653791026.pdf','applicants_certifications','inbound6714203096131311097.pdf','
U491T1653791026.pdf','2022-05-29 02:23:46','2022-05-29
02:23:46',NULL,'491',NULL,NULL),(551,491,'COE','applicants_certifications/
U491T1653791301.pdf','applicants_certifications','inbound6573573801045310584.pdf','
U491T1653791301.pdf','2022-05-29 02:28:21','2022-05-29
02:28:21',NULL,'491',NULL,NULL),(553,491,'ELIGIBILITY','applicants_certifications/
U491T1653791588.pdf','applicants_certifications','inbound8190398768944836393.pdf','
U491T1653791588.pdf','2022-05-29 02:33:08','2022-05-29
02:33:08',NULL,'491',NULL,NULL),(554,491,'SWT','applicants_certifications/
U491T1653791670.pdf','applicants_certifications','inbound4573883473504916582.pdf','
U491T1653791670.pdf','2022-05-29 02:34:30','2022-05-29
02:34:30',NULL,'491',NULL,NULL),(555,491,'TOR','applicants_certifications/
U491T1653791731.pdf','applicants_certifications','inbound2852101552952922227.pdf','
U491T1653791731.pdf','2022-05-29 02:35:31','2022-05-29
02:35:31',NULL,'491',NULL,NULL),(556,491,'TOR','applicants_certifications/
U491T1653792867.pdf','applicants_certifications','inbound394023741187891729.pdf','U
491T1653792867.pdf','2022-05-29 02:54:27','2022-05-29
02:54:27',NULL,'491',NULL,NULL),(557,491,'TOR','applicants_certifications/
U491T1653792915.pdf','applicants_certifications','inbound1626027936424558041.pdf','
U491T1653792915.pdf','2022-05-29 02:55:15','2022-05-29
02:55:15',NULL,'491',NULL,NULL),(558,491,'TOR','applicants_certifications/
U491T1653792938.pdf','applicants_certifications','inbound5003321168794282028.pdf','
U491T1653792938.pdf','2022-05-29 02:55:38','2022-05-29
02:55:38',NULL,'491',NULL,NULL),(559,497,'COE','applicants_certifications/
U497T1653799778.pdf','applicants_certifications','inbound410745478812662247.pdf','U
497T1653799778.pdf','2022-05-29 04:49:38','2022-05-29
04:49:38',NULL,'497',NULL,NULL),(560,497,'ELIGIBILITY','applicants_certifications/
U497T1653799809.pdf','applicants_certifications','inbound717934191305881641.pdf','U
497T1653799809.pdf','2022-05-29 04:50:09','2022-05-29
04:50:09',NULL,'497',NULL,NULL),(566,508,'SWT','applicants_certifications/
U508T1653814028.pdf','applicants_certifications','Internet of
Things.pdf','U508T1653814028.pdf','2022-05-29 08:47:08','2022-05-29
08:47:08',NULL,'508',NULL,NULL),(567,508,'SWT','applicants_certifications/
U508T1653814031.pdf','applicants_certifications','Robotics.pdf','U508T1653814031.pd
f','2022-05-29 08:47:11','2022-05-29 08:47:11',NULL,'508',NULL,NULL),
(568,508,'SWT','applicants_certifications/
U508T1653814034.pdf','applicants_certifications','Intellectual Property
Rights.pdf','U508T1653814034.pdf','2022-05-29 08:47:14','2022-05-29
08:47:14',NULL,'508',NULL,NULL),(569,508,'SWT','applicants_certifications/
U508T1653814037.pdf','applicants_certifications','Cybersecurity.pdf','U508T16538140
37.pdf','2022-05-29 08:47:17','2022-05-29 08:47:17',NULL,'508',NULL,NULL),
(570,508,'SWT','applicants_certifications/
U508T1653814040.pdf','applicants_certifications','Technoprenuership.pdf','U508T1653
814040.pdf','2022-05-29 08:47:20','2022-05-29 08:47:20',NULL,'508',NULL,NULL),
(571,533,'TOR','applicants_certifications/
U533T1653837146.pdf','applicants_certifications','TOR1.pdf','U533T1653837146.pdf','
2022-05-29 15:12:26','2022-05-29 15:12:26',NULL,'533',NULL,NULL),
(572,533,'TOR','applicants_certifications/
U533T1653837155.pdf','applicants_certifications','TOR2.pdf','U533T1653837155.pdf','
2022-05-29 15:12:35','2022-05-29 15:12:35',NULL,'533',NULL,NULL),
(573,533,'TOR','applicants_certifications/
U533T1653837163.pdf','applicants_certifications','TOR3.pdf','U533T1653837163.pdf','
2022-05-29 15:12:43','2022-05-29 15:12:43',NULL,'533',NULL,NULL),
(574,533,'TOR','applicants_certifications/
U533T1653837182.pdf','applicants_certifications','TOR4.pdf','U533T1653837182.pdf','
2022-05-29 15:13:02','2022-05-29 15:13:02',NULL,'533',NULL,NULL),
(575,533,'COE','applicants_certifications/
U533T1653837241.pdf','applicants_certifications','Employment
Cert.pdf','U533T1653837241.pdf','2022-05-29 15:14:01','2022-05-29
15:14:01',NULL,'533',NULL,NULL),(576,533,'COE','applicants_certifications/
U533T1653837250.pdf','applicants_certifications','Employment
Cert 1.pdf','U533T1653837250.pdf','2022-05-29 15:14:10','2022-05-29
15:14:10',NULL,'533',NULL,NULL),(577,533,'SWT','applicants_certifications/
U533T1653837285.pdf','applicants_certifications','Competition
Cert.pdf','U533T1653837285.pdf','2022-05-29 15:14:45','2022-05-29
15:14:45',NULL,'533',NULL,NULL),(578,533,'SWT','applicants_certifications/
U533T1653837296.pdf','applicants_certifications','Boston
SDHM1.pdf','U533T1653837296.pdf','2022-05-29 15:14:56','2022-05-29
15:14:57',NULL,'533',NULL,NULL),(579,533,'SWT','applicants_certifications/
U533T1653837306.pdf','applicants_certifications','BOSTON
SDHM2.pdf','U533T1653837306.pdf','2022-05-29 15:15:06','2022-05-29
15:15:06',NULL,'533',NULL,NULL),(581,534,'TOR','applicants_certifications/
U534T1653901492.pdf','applicants_certifications','TRANSCRIPT OF
RECORDS.pdf','U534T1653901492.pdf','2022-05-30 09:04:52','2022-05-30
09:04:52',NULL,'534',NULL,NULL),(582,534,'COE','applicants_certifications/
U534T1653901589.pdf','applicants_certifications','CERTIFICATE OF EMPLOYMENT WITH
PERFORMANCE RATING.pdf','U534T1653901589.pdf','2022-05-30 09:06:29','2022-05-30
09:06:29',NULL,'534',NULL,NULL),(583,534,'ELIGIBILITY','applicants_certifications/
U534T1653901625.pdf','applicants_certifications','CERTIFICATE OF BOARD
RATING.pdf','U534T1653901625.pdf','2022-05-30 09:07:05','2022-05-30
09:07:05',NULL,'534',NULL,NULL),(584,534,'ELIGIBILITY','applicants_certifications/
U534T1653901638.pdf','applicants_certifications','CERTIFIED PHOTOCOPY OF PRC
ID.pdf','U534T1653901638.pdf','2022-05-30 09:07:18','2022-05-30
09:07:18',NULL,'534',NULL,NULL),(585,534,'SWT','applicants_certifications/
U534T1653902192.pdf','applicants_certifications','CERTIFICATES
(C).pdf','U534T1653902192.pdf','2022-05-30 09:16:32','2022-05-30
09:16:32',NULL,'534',NULL,NULL),(586,534,'SWT','applicants_certifications/
U534T1653902192.pdf','applicants_certifications','CERTIFICATES
(A).pdf','U534T1653902192.pdf','2022-05-30 09:16:32','2022-05-30
09:16:32',NULL,'534',NULL,NULL),(587,534,'SWT','applicants_certifications/
U534T1653902194.pdf','applicants_certifications','CERTIFICATES
(B).pdf','U534T1653902194.pdf','2022-05-30 09:16:34','2022-05-30
09:16:34',NULL,'534',NULL,NULL),(588,537,'TOR','applicants_certifications/
U537T1653975231.pdf','applicants_certifications','OTR-Sir-
Ems20220530_14445016[1].pdf','U537T1653975231.pdf','2022-05-31 05:33:51','2022-05-
31 05:33:51',NULL,'537',NULL,NULL),(589,537,'SWT','applicants_certifications/
U537T1653976310.pdf','applicants_certifications','certificates.pdf','U537T165397631
0.pdf','2022-05-31 05:51:50','2022-05-31 05:51:50',NULL,'537',NULL,NULL),
(590,497,'TOR','applicants_certifications/
U497T1653980213.pdf','applicants_certifications','inbound2363888075658569340.pdf','
U497T1653980213.pdf','2022-05-31 06:56:53','2022-05-31
06:56:53',NULL,'497',NULL,NULL),(594,184,'COE','applicants_certifications/
U184T1653993317.pdf','applicants_certifications','employment.pdf','U184T1653993317.
pdf','2022-05-31 10:35:17','2022-05-31 10:35:17',NULL,'184',NULL,NULL),
(596,184,'COE','applicants_certifications/
U184T1653994284.pdf','applicants_certifications','Cert of
employement_2.pdf','U184T1653994284.pdf','2022-05-31 10:51:24','2022-05-31
10:51:24',NULL,'184',NULL,NULL),(599,543,'TOR','applicants_certifications/
U543T1654048106.pdf','applicants_certifications','Tor page
1.pdf','U543T1654048106.pdf','2022-06-01 01:48:26','2022-06-01
01:48:26',NULL,'543',NULL,NULL),(600,543,'TOR','applicants_certifications/
U543T1654048126.pdf','applicants_certifications','Tor page
2.pdf','U543T1654048126.pdf','2022-06-01 01:48:46','2022-06-01
01:48:46',NULL,'543',NULL,NULL),(601,543,'ELIGIBILITY','applicants_certifications/
U543T1654048421.pdf','applicants_certifications','back
prc.pdf','U543T1654048421.pdf','2022-06-01 01:53:41','2022-06-01
01:53:41',NULL,'543',NULL,NULL),(602,543,'ELIGIBILITY','applicants_certifications/
U543T1654048426.pdf','applicants_certifications','front
prc.pdf','U543T1654048426.pdf','2022-06-01 01:53:46','2022-06-01
01:53:46',NULL,'543',NULL,NULL),(603,515,'TOR','applicants_certifications/
U515T1654226651.pdf','applicants_certifications','inbound5957711411595250732.pdf','
U515T1654226651.pdf','2022-06-03 03:24:11','2022-06-03
03:24:11',NULL,'515',NULL,NULL),(604,515,'COE','applicants_certifications/
U515T1654226701.pdf','applicants_certifications','inbound1254155638917937092.pdf','
U515T1654226701.pdf','2022-06-03 03:25:01','2022-06-03
03:25:01',NULL,'515',NULL,NULL),(605,515,'ELIGIBILITY','applicants_certifications/
U515T1654226790.pdf','applicants_certifications','inbound6917104227245293681.pdf','
U515T1654226790.pdf','2022-06-03 03:26:30','2022-06-03
03:26:30',NULL,'515',NULL,NULL),(606,515,'SWT','applicants_certifications/
U515T1654226819.pdf','applicants_certifications','inbound5456857335198349927.pdf','
U515T1654226819.pdf','2022-06-03 03:26:59','2022-06-03
03:26:59',NULL,'515',NULL,NULL),(607,515,'SWT','applicants_certifications/
U515T1654226835.pdf','applicants_certifications','inbound3532670578050437896.pdf','
U515T1654226835.pdf','2022-06-03 03:27:15','2022-06-03
03:27:15',NULL,'515',NULL,NULL),(608,515,'SWT','applicants_certifications/
U515T1654226849.pdf','applicants_certifications','inbound2508929106945448889.pdf','
U515T1654226849.pdf','2022-06-03 03:27:29','2022-06-03
03:27:29',NULL,'515',NULL,NULL),(609,515,'SWT','applicants_certifications/
U515T1654226865.pdf','applicants_certifications','inbound6231634828054146624.pdf','
U515T1654226865.pdf','2022-06-03 03:27:45','2022-06-03
03:27:45',NULL,'515',NULL,NULL),(610,515,'TOR','applicants_certifications/
U515T1654226903.pdf','applicants_certifications','inbound8025549223431465695.pdf','
U515T1654226903.pdf','2022-06-03 03:28:23','2022-06-03
03:28:23',NULL,'515',NULL,NULL),(611,515,'TOR','applicants_certifications/
U515T1654226918.pdf','applicants_certifications','inbound1972391814163189981.pdf','
U515T1654226918.pdf','2022-06-03 03:28:38','2022-06-03
03:28:38',NULL,'515',NULL,NULL),(612,515,'TOR','applicants_certifications/
U515T1654226941.pdf','applicants_certifications','inbound6059920208143065934.pdf','
U515T1654226941.pdf','2022-06-03 03:29:01','2022-06-03
03:29:01',NULL,'515',NULL,NULL),(613,515,'TOR','applicants_certifications/
U515T1654227299.pdf','applicants_certifications','inbound4487270636813729914.pdf','
U515T1654227299.pdf','2022-06-03 03:34:59','2022-06-03
03:34:59',NULL,'515',NULL,NULL),(614,552,'ELIGIBILITY','applicants_certifications/
U552T1654233563.pdf','applicants_certifications','Certificate of Eligibility-
J.Duran.pdf','U552T1654233563.pdf','2022-06-03 05:19:23','2022-06-03
05:19:23',NULL,'552',NULL,NULL),(615,552,'ELIGIBILITY','applicants_certifications/
U552T1654233585.pdf','applicants_certifications','PRC Certificates-
J.Duran.pdf','U552T1654233585.pdf','2022-06-03 05:19:45','2022-06-03
05:19:45',NULL,'552',NULL,NULL),(616,552,'COE','applicants_certifications/
U552T1654233685.pdf','applicants_certifications','Certificate of Employment-
J.Duran.pdf','U552T1654233685.pdf','2022-06-03 05:21:25','2022-06-03
05:21:25',NULL,'552',NULL,NULL),(617,552,'TOR','applicants_certifications/
U552T1654235124.pdf','applicants_certifications','TOR 2022-
J.DURAN.pdf','U552T1654235124.pdf','2022-06-03 05:45:24','2022-06-03
05:45:24',NULL,'552',NULL,NULL),(618,552,'SWT','applicants_certifications/
U552T1654235459.pdf','applicants_certifications','25 Janelle C.
Duran.pdf','U552T1654235459.pdf','2022-06-03 05:50:59','2022-06-03
05:50:59',NULL,'552',NULL,NULL),(620,551,'ELIGIBILITY','applicants_certifications/
U551T1654236918.pdf','applicants_certifications','Professional Identification
Card.pdf','U551T1654236918.pdf','2022-06-03 06:15:18','2022-06-03
06:15:18',NULL,'551',NULL,NULL),(621,551,'SWT','applicants_certifications/
U551T1654237135.pdf','applicants_certifications','EDUTECH
SEMINAR.pdf','U551T1654237135.pdf','2022-06-03 06:18:55','2022-06-03
06:18:55',NULL,'551',NULL,NULL),(622,551,'SWT','applicants_certifications/
U551T1654237135.pdf','applicants_certifications','Outsanding
Certificate.pdf','U551T1654237135.pdf','2022-06-03 06:18:55','2022-06-03
06:18:55',NULL,'551',NULL,NULL),(623,551,'SWT','applicants_certifications/
U551T1654237238.pdf','applicants_certifications','ISO
CERTIFICATE.pdf','U551T1654237238.pdf','2022-06-03 06:20:38','2022-06-03
06:20:38',NULL,'551',NULL,NULL),(624,551,'SWT','applicants_certifications/
U551T1654237371.pdf','applicants_certifications','Certificate of Participation for
Maria Cristina B. Javier.pdf','U551T1654237371.pdf','2022-06-03 06:22:51','2022-06-
03 06:22:51',NULL,'551',NULL,NULL),(625,551,'SWT','applicants_certifications/
U551T1654237947.pdf','applicants_certifications','Phoenix Webinar
2.pdf','U551T1654237947.pdf','2022-06-03 06:32:27','2022-06-03
06:32:27',NULL,'551',NULL,NULL),(626,551,'SWT','applicants_certifications/
U551T1654237947.pdf','applicants_certifications','Phoenix
Webinar.pdf','U551T1654237947.pdf','2022-06-03 06:32:27','2022-06-03
06:32:27',NULL,'551',NULL,NULL),(627,551,'SWT','applicants_certifications/
U551T1654237948.pdf','applicants_certifications','Phoenix Webinar
3.pdf','U551T1654237948.pdf','2022-06-03 06:32:28','2022-06-03
06:32:28',NULL,'551',NULL,NULL),(628,493,'TOR','applicants_certifications/
U493T1654244665.pdf','applicants_certifications','TOR.pdf','U493T1654244665.pdf','2
022-06-03 08:24:25','2022-06-03 08:24:25',NULL,'493',NULL,NULL),
(630,493,'TOR','applicants_certifications/
U493T1654244862.pdf','applicants_certifications','PDS.pdf','U493T1654244862.pdf','2
022-06-03 08:27:42','2022-06-03 08:27:42',NULL,'493',NULL,NULL),
(631,551,'SWT','applicants_certifications/
U551T1654249922.pdf','applicants_certifications','PALT
Conference.pdf','U551T1654249922.pdf','2022-06-03 09:52:02','2022-06-03
09:52:02',NULL,'551',NULL,NULL),(632,551,'SWT','applicants_certifications/
U551T1654249931.pdf','applicants_certifications','Debate Society
Certificate.pdf','U551T1654249931.pdf','2022-06-03 09:52:11','2022-06-03
09:52:11',NULL,'551',NULL,NULL),(633,551,'COE','applicants_certifications/
U551T1654249955.pdf','applicants_certification
s','Certificate of Employment.pdf','U551T1654249955.pdf','2022-06-03
09:52:35','2022-06-03 09:52:35',NULL,'551',NULL,NULL),
(634,551,'TOR','applicants_certifications/
U551T1654249993.pdf','applicants_certifications','Earned Units
Masteral.pdf','U551T1654249993.pdf','2022-06-03 09:53:13','2022-06-03
09:53:13',NULL,'551',NULL,NULL),(636,551,'TOR','applicants_certifications/
U551T1654250756.pdf','applicants_certifications','Transcript of Records page
1.pdf','U551T1654250756.pdf','2022-06-03 10:05:56','2022-06-03
10:05:56',NULL,'551',NULL,NULL),(639,551,'TOR','applicants_certifications/
U551T1654250789.pdf','applicants_certifications','Transcript of Records page
2.pdf','U551T1654250789.pdf','2022-06-03 10:06:29','2022-06-03
10:06:29',NULL,'551',NULL,NULL),(640,551,'TOR','applicants_certifications/
U551T1654250813.pdf','applicants_certifications','Transcript of Records page
3.pdf','U551T1654250813.pdf','2022-06-03 10:06:53','2022-06-03
10:06:53',NULL,'551',NULL,NULL),(641,555,'TOR','applicants_certifications/
U555T1654316735.pdf','applicants_certifications','Transcript of
Records.pdf','U555T1654316735.pdf','2022-06-04 04:25:35','2022-06-04
04:25:35',NULL,'555',NULL,NULL),(643,555,'COE','applicants_certifications/
U555T1654317024.pdf','applicants_certifications','Republic-of-the-Philippines
(1).pdf','U555T1654317024.pdf','2022-06-04 04:30:24','2022-06-04
04:30:24',NULL,'555',NULL,NULL),(644,555,'SWT','applicants_certifications/
U555T1654317196.pdf','applicants_certifications','Willy
Certificates .pdf','U555T1654317196.pdf','2022-06-04 04:33:16','2022-06-04
04:33:16',NULL,'555',NULL,NULL),(645,555,'SWT','applicants_certifications/
U555T1654317338.pdf','applicants_certifications','certificates
2.pdf','U555T1654317338.pdf','2022-06-04 04:35:38','2022-06-04
04:35:38',NULL,'555',NULL,NULL),(646,555,'SWT','applicants_certifications/
U555T1654317412.pdf','applicants_certifications','certificates
3.pdf','U555T1654317412.pdf','2022-06-04 04:36:52','2022-06-04
04:36:52',NULL,'555',NULL,NULL),(647,555,'ELIGIBILITY','applicants_certifications/
U555T1654317581.pdf','applicants_certifications','Proof of
Eligibility.pdf','U555T1654317581.pdf','2022-06-04 04:39:41','2022-06-04
04:39:41',NULL,'555',NULL,NULL),(650,556,'SWT','applicants_certifications/
U556T1654406779.pdf','applicants_certifications','cert of
training.pdf','U556T1654406779.pdf','2022-06-05 05:26:19','2022-06-05
05:26:19',NULL,'556',NULL,NULL),(651,556,'ELIGIBILITY','applicants_certifications/
U556T1654407279.pdf','applicants_certifications','ELIGIBILITY AND
ID.pdf','U556T1654407279.pdf','2022-06-05 05:34:39','2022-06-05
05:34:39',NULL,'556',NULL,NULL),(652,558,'TOR','applicants_certifications/
U558T1654407462.pdf','applicants_certifications','inbound3157918450962949114.pdf','
U558T1654407462.pdf','2022-06-05 05:37:42','2022-06-05
05:37:42',NULL,'558',NULL,NULL),(653,558,'TOR','applicants_certifications/
U558T1654418001.pdf','applicants_certifications','inbound3411313298011606780.pdf','
U558T1654418001.pdf','2022-06-05 08:33:21','2022-06-05
08:33:21',NULL,'558',NULL,NULL),(654,558,'COE','applicants_certifications/
U558T1654418741.pdf','applicants_certifications','inbound6382584467064752273.pdf','
U558T1654418741.pdf','2022-06-05 08:45:41','2022-06-05
08:45:41',NULL,'558',NULL,NULL),(655,558,'SWT','applicants_certifications/
U558T1654419361.pdf','applicants_certifications','inbound3431572922994317379.pdf','
U558T1654419361.pdf','2022-06-05 08:56:01','2022-06-05
08:56:01',NULL,'558',NULL,NULL),(656,558,'SWT','applicants_certifications/
U558T1654419366.pdf','applicants_certifications','inbound2282460854645456349.pdf','
U558T1654419366.pdf','2022-06-05 08:56:06','2022-06-05
08:56:06',NULL,'558',NULL,NULL),(657,558,'SWT','applicants_certifications/
U558T1654419371.pdf','applicants_certifications','inbound8456564313958023485.pdf','
U558T1654419371.pdf','2022-06-05 08:56:11','2022-06-05
08:56:11',NULL,'558',NULL,NULL),(658,558,'SWT','applicants_certifications/
U558T1654419376.pdf','applicants_certifications','inbound2023583283702412767.pdf','
U558T1654419376.pdf','2022-06-05 08:56:16','2022-06-05
08:56:16',NULL,'558',NULL,NULL),(659,558,'SWT','applicants_certifications/
U558T1654419382.pdf','applicants_certifications','inbound569168870269163659.pdf','U
558T1654419382.pdf','2022-06-05 08:56:22','2022-06-05
08:56:22',NULL,'558',NULL,NULL),(660,558,'SWT','applicants_certifications/
U558T1654419395.pdf','applicants_certifications','inbound6483365554007893145.pdf','
U558T1654419395.pdf','2022-06-05 08:56:35','2022-06-05
08:56:35',NULL,'558',NULL,NULL),(662,558,'ELIGIBILITY','applicants_certifications/
U558T1654419537.pdf','applicants_certifications','inbound8263304961263409659.pdf','
U558T1654419537.pdf','2022-06-05 08:58:57','2022-06-05
08:58:57',NULL,'558',NULL,NULL),(663,558,'SWT','applicants_certifications/
U558T1654419558.pdf','applicants_certifications','inbound6688824515091475787.pdf','
U558T1654419558.pdf','2022-06-05 08:59:18','2022-06-05
08:59:18',NULL,'558',NULL,NULL),(664,543,'ELIGIBILITY','applicants_certifications/
U543T1654478114.pdf','applicants_certifications','ACLS.pdf','U543T1654478114.pdf','
2022-06-06 01:15:14','2022-06-06 01:15:14',NULL,'543',NULL,NULL),
(665,543,'ELIGIBILITY','applicants_certifications/
U543T1654478167.pdf','applicants_certifications','supervisory cert
SG.pdf','U543T1654478167.pdf','2022-06-06 01:16:07','2022-06-06
01:16:07',NULL,'543',NULL,NULL),(666,543,'ELIGIBILITY','applicants_certifications/
U543T1654478191.pdf','applicants_certifications','certificate
reasearch.pdf','U543T1654478191.pdf','2022-06-06 01:16:31','2022-06-06
01:16:31',NULL,'543',NULL,NULL),(668,543,'ELIGIBILITY','applicants_certifications/
U543T1654478680.pdf','applicants_certifications','bls
front.pdf','U543T1654478680.pdf','2022-06-06 01:24:40','2022-06-06
01:24:40',NULL,'543',NULL,NULL),(669,543,'ELIGIBILITY','applicants_certifications/
U543T1654478686.pdf','applicants_certifications','bls
back.pdf','U543T1654478686.pdf','2022-06-06 01:24:46','2022-06-06
01:24:46',NULL,'543',NULL,NULL),(672,543,'COE','applicants_certifications/
U543T1654479428.pdf','applicants_certifications','TDH
COE.pdf','U543T1654479428.pdf','2022-06-06 01:37:08','2022-06-06
01:37:08',NULL,'543',NULL,NULL),(673,543,'COE','applicants_certifications/
U543T1654479429.pdf','applicants_certifications','Coe-
singapore.pdf','U543T1654479429.pdf','2022-06-06 01:37:09','2022-06-06
01:37:09',NULL,'543',NULL,NULL),(674,543,'COE','applicants_certifications/
U543T1654479430.pdf','applicants_certifications','TDH
COE_2.pdf','U543T1654479430.pdf','2022-06-06 01:37:10','2022-06-06
01:37:10',NULL,'543',NULL,NULL),(675,543,'SWT','applicants_certifications/
U543T1654479590.pdf','applicants_certifications','certificate
reasearch.pdf','U543T1654479590.pdf','2022-06-06 01:39:50','2022-06-06
01:39:50',NULL,'543',NULL,NULL),(676,543,'SWT','applicants_certifications/
U543T1654479676.pdf','applicants_certifications','research
author.pdf','U543T1654479676.pdf','2022-06-06 01:41:16','2022-06-06
01:41:16',NULL,'543',NULL,NULL),(677,560,'TOR','applicants_certifications/
U560T1674894074.pdf','applicants_certifications','TRANSCRIPT OF
RECORDS.pdf','U560T1674894074.pdf','2022-06-06 05:43:28','2023-01-28
08:21:14',NULL,'560','560',NULL),(678,560,'COE','applicants_certifications/
U560T1674894176.pdf','applicants_certifications','CERTIFICATE OF
EMPLOYMENT.pdf','U560T1674894176.pdf','2022-06-06 05:44:01','2023-01-28
08:22:56',NULL,'560','560',NULL),
(679,560,'ELIGIBILITY','applicants_certifications/
U560T1654494421.pdf','applicants_certifications','Authenticated PRC Licensed_CSC
Eligibility.pdf','U560T1654494421.pdf','2022-06-06 05:47:01','2022-06-06
05:47:01',NULL,'560',NULL,NULL),(680,557,'TOR','applicants_certifications/
U557T1654501318.pdf','applicants_certifications','TOLEDOSHEENA OTR-
BSIT.pdf','U557T1654501318.pdf','2022-06-06 07:41:58','2022-06-06
07:41:58',NULL,'557',NULL,NULL),(681,560,'SWT','applicants_certifications/
U560T1654504550.pdf','applicants_certifications','BARTOLOME DARRYL JHET -Photocopy
of Certificate of
Training_Seminar_Workshop_Conference.pdf','U560T1654504550.pdf','2022-06-06
08:35:50','2022-06-06 08:35:50',NULL,'560',NULL,NULL),
(682,557,'SWT','applicants_certifications/
U557T1654505858.pdf','applicants_certifications','2021.04.24 IFSU (Organizational
Behavior).pdf','U557T1654505858.pdf','2022-06-06 08:57:38','2022-06-06
08:57:38',NULL,'557',NULL,NULL),(683,557,'SWT','applicants_certifications/
U557T1654505931.pdf','applicants_certifications','2020.11.10-13
DECODE.pdf','U557T1654505931.pdf','2022-06-06 08:58:51','2022-06-06
08:58:51',NULL,'557',NULL,NULL),(684,557,'SWT','applicants_certifications/
U557T1654505981.pdf','applicants_certifications','2021.07.30
PSITE.pdf','U557T1654505981.pdf','2022-06-06 08:59:41','2022-06-06
08:59:41',NULL,'557',NULL,NULL),(685,557,'SWT','applicants_certifications/
U557T1654506016.pdf','applicants_certifications','2022.03.19
NATCON.pdf','U557T1654506016.pdf','2022-06-06 09:00:16','2022-06-06
09:00:16',NULL,'557',NULL,NULL),(686,557,'SWT','applicants_certifications/
U557T1654506016.pdf','applicants_certifications','2021.08.17 OBE-
CVC.pdf','U557T1654506016.pdf','2022-06-06 09:00:16','2022-06-06
09:00:16',NULL,'557',NULL,NULL),(687,551,'SWT','applicants_certifications/
U551T1654512736.pdf','applicants_certifications','Exchange Program
Certificate.pdf','U551T1654512736.pdf','2022-06-06 10:52:16','2022-06-06
10:52:16',NULL,'551',NULL,NULL),(688,551,'TOR','applicants_certifications/
U551T1654512864.pdf','applicants_certifications','Top Outstanding Student of
SMU.pdf','U551T1654512864.pdf','2022-06-06 10:54:24','2022-06-06
10:54:24',NULL,'551',NULL,NULL),(689,548,'TOR','applicants_certifications/
U548T1654514531.pdf','applicants_certifications','TOR.pdf','U548T1654514531.pdf','2
022-06-06 11:22:11','2022-06-06 11:22:11',NULL,'548',NULL,NULL),
(690,548,'COE','applicants_certifications/
U548T1654514578.pdf','applicants_certifications','CertofEmp.pdf','U548T1654514578.p
df','2022-06-06
11:22:58','2022-06-06 11:22:58',NULL,'548',NULL,NULL),
(691,548,'SWT','applicants_certifications/
U548T1654514981.pdf','applicants_certifications','Certs.pdf','U548T1654514981.pdf',
'2022-06-06 11:29:41','2022-06-06 11:29:41',NULL,'548',NULL,NULL),
(692,548,'ELIGIBILITY','applicants_certifications/
U548T1654515007.pdf','applicants_certifications','eligibility.pdf','U548T1654515007
.pdf','2022-06-06 11:30:07','2022-06-06 11:30:07',NULL,'548',NULL,NULL),
(693,557,'TOR','applicants_certifications/
U557T1654562472.pdf','applicants_certifications','TOLEDOSHEEN COG-
MIT.pdf','U557T1654562472.pdf','2022-06-07 00:41:12','2022-06-07
00:41:12',NULL,'557',NULL,NULL),(694,473,'TOR','applicants_certifications/
U473T1654577792.pdf','applicants_certifications','transcript of
record.pdf','U473T1654577792.pdf','2022-06-07 04:56:32','2022-06-07
04:56:32',NULL,'473',NULL,NULL),(695,473,'COE','applicants_certifications/
U473T1654577856.pdf','applicants_certifications','certificat of
employment.pdf','U473T1654577856.pdf','2022-06-07 04:57:36','2022-06-07
04:57:36',NULL,'473',NULL,NULL),(696,473,'ELIGIBILITY','applicants_certifications/
U473T1654578395.pdf','applicants_certifications','certificate of
eligibility.pdf','U473T1654578395.pdf','2022-06-07 05:06:35','2022-06-07
05:06:35',NULL,'473',NULL,NULL),(697,473,'SWT','applicants_certifications/
U473T1654579152.pdf','applicants_certifications','training and seminar
cert1.pdf','U473T1654579152.pdf','2022-06-07 05:19:12','2022-06-07
05:19:12',NULL,'473',NULL,NULL),(698,473,'SWT','applicants_certifications/
U473T1654579161.pdf','applicants_certifications','training and seminar
cert2.pdf','U473T1654579161.pdf','2022-06-07 05:19:21','2022-06-07
05:19:21',NULL,'473',NULL,NULL),(699,473,'SWT','applicants_certifications/
U473T1654579188.pdf','applicants_certifications','training and seminar
cert5.pdf','U473T1654579188.pdf','2022-06-07 05:19:48','2022-06-07
05:19:48',NULL,'473',NULL,NULL),(700,473,'SWT','applicants_certifications/
U473T1654579209.pdf','applicants_certifications','training and seminar
cert7.pdf','U473T1654579209.pdf','2022-06-07 05:20:09','2022-06-07
05:20:09',NULL,'473',NULL,NULL),(701,473,'SWT','applicants_certifications/
U473T1654584630.pdf','applicants_certifications','training and seminar cert3
(1).pdf','U473T1654584630.pdf','2022-06-07 06:50:30','2022-06-07
06:50:30',NULL,'473',NULL,NULL),(702,473,'SWT','applicants_certifications/
U473T1654584654.pdf','applicants_certifications','training and seminar cert4
(1).pdf','U473T1654584654.pdf','2022-06-07 06:50:54','2022-06-07
06:50:54',NULL,'473',NULL,NULL),(703,473,'SWT','applicants_certifications/
U473T1654584663.pdf','applicants_certifications','training and seminar cert6
(1).pdf','U473T1654584663.pdf','2022-06-07 06:51:03','2022-06-07
06:51:03',NULL,'473',NULL,NULL),(705,553,'SWT','applicants_certifications/
U553T1654614835.pdf','applicants_certifications','Simon, Merwin Andrei
E..pdf','U553T1654614835.pdf','2022-06-07 15:13:55','2022-06-07
15:13:55',NULL,'553',NULL,NULL),(707,553,'COE','applicants_certifications/
U553T1654649384.pdf','applicants_certifications','certificate of employment
sola.pdf','U553T1654649384.pdf','2022-06-08 00:49:44','2022-06-08
00:49:44',NULL,'553',NULL,NULL),(708,566,'COE','applicants_certifications/
U566T1654650286.pdf','applicants_certifications','Certificate of
Employment.pdf','U566T1654650286.pdf','2022-06-08 01:04:46','2022-06-08
01:04:46',NULL,'566',NULL,NULL),(709,566,'TOR','applicants_certifications/
U566T1654650712.pdf','applicants_certifications','Transcript of
Records.pdf','U566T1654650712.pdf','2022-06-08 01:11:52','2022-06-08
01:11:52',NULL,'566',NULL,NULL),(710,566,'ELIGIBILITY','applicants_certifications/
U566T1654651184.pdf','applicants_certifications','Eligibility and
License.pdf','U566T1654651184.pdf','2022-06-08 01:19:44','2022-06-08
01:19:44',NULL,'566',NULL,NULL),(711,566,'SWT','applicants_certifications/
U566T1654652766.pdf','applicants_certifications','Certificates.pdf','U566T165465276
6.pdf','2022-06-08 01:46:06','2022-06-08 01:46:06',NULL,'566',NULL,NULL),
(712,566,'SWT','applicants_certifications/
U566T1654652774.pdf','applicants_certifications','Food-
Additives.pdf','U566T1654652774.pdf','2022-06-08 01:46:14','2022-06-08
01:46:14',NULL,'566',NULL,NULL),(713,566,'SWT','applicants_certifications/
U566T1654653256.pdf','applicants_certifications','Certificates Balloon
Concept.pdf','U566T1654653256.pdf','2022-06-08 01:54:16','2022-06-08
01:54:16',NULL,'566',NULL,NULL),(714,573,'TOR','applicants_certifications/
U573T1654653640.pdf','applicants_certifications','TOR-
Undergrad.pdf','U573T1654653640.pdf','2022-06-08 02:00:40','2022-06-08
02:00:40',NULL,'573',NULL,NULL),(715,573,'TOR','applicants_certifications/
U573T1654653650.pdf','applicants_certifications','Grades-
Masteral.pdf','U573T1654653650.pdf','2022-06-08 02:00:50','2022-06-08
02:00:50',NULL,'573',NULL,NULL),(716,573,'COE','applicants_certifications/
U573T1654653688.pdf','applicants_certifications','Certificate of
Employment.pdf','U573T1654653688.pdf','2022-06-08 02:01:28','2022-06-08
02:01:28',NULL,'573',NULL,NULL),(717,573,'ELIGIBILITY','applicants_certifications/
U573T1654654047.pdf','applicants_certifications','PRC License and
Rating.pdf','U573T1654654047.pdf','2022-06-08 02:07:27','2022-06-08
02:07:27',NULL,'573',NULL,NULL),(718,573,'SWT','applicants_certifications/
U573T1654654570.pdf','applicants_certifications','Traning and work shop
1.pdf','U573T1654654570.pdf','2022-06-08 02:16:10','2022-06-08
02:16:10',NULL,'573',NULL,NULL),(719,573,'SWT','applicants_certifications/
U573T1654654634.pdf','applicants_certifications','Traning and workshop
2.pdf','U573T1654654634.pdf','2022-06-08 02:17:14','2022-06-08
02:17:14',NULL,'573',NULL,NULL),(720,572,'ELIGIBILITY','applicants_certifications/
U572T1654655118.pdf','applicants_certifications','PRC ID_NAWALIG
MAY.pdf','U572T1654655118.pdf','2022-06-08 02:25:18','2022-06-08
02:25:18',NULL,'572',NULL,NULL),(721,572,'SWT','applicants_certifications/
U572T1654655781.pdf','applicants_certifications','TRAININGS AND
CERTIFICATES.pdf','U572T1654655781.pdf','2022-06-08 02:36:21','2022-06-08
02:36:21',NULL,'572',NULL,NULL),(722,572,'TOR','applicants_certifications/
U572T1654656338.pdf','applicants_certifications','TRANSCRIPT OF RECORDS-NAWALIG
MAY.pdf','U572T1654656338.pdf','2022-06-08 02:45:38','2022-06-08
02:45:38',NULL,'572',NULL,NULL),(724,564,'COE','applicants_certifications/
U564T1654663340.pdf','applicants_certifications','OTR
BSED.pdf','U564T1654663340.pdf','2022-06-08 04:29:32','2022-06-08
04:42:20',NULL,'564','564',NULL),
(726,564,'ELIGIBILITY','applicants_certifications/
U564T1654663062.pdf','applicants_certifications','PRCID.pdf','U564T1654663062.pdf',
'2022-06-08 04:37:42','2022-06-08 04:37:42',NULL,'564',NULL,NULL),
(727,578,'SWT','applicants_certifications/
U578T1654663137.pdf','applicants_certifications','DICT
CERTIFICATE.pdf','U578T1654663137.pdf','2022-06-08 04:38:57','2022-06-08
04:38:57',NULL,'578',NULL,NULL),(728,578,'SWT','applicants_certifications/
U578T1654663137.pdf','applicants_certifications','ANG KAMPILAN
CERTIFICATE.pdf','U578T1654663137.pdf','2022-06-08 04:38:57','2022-06-08
04:38:57',NULL,'578',NULL,NULL),(729,578,'SWT','applicants_certifications/
U578T1654663147.pdf','applicants_certifications','PCPD CERTIFICATE MAY 1-
6.pdf','U578T1654663147.pdf','2022-06-08 04:39:07','2022-06-08
04:39:07',NULL,'578',NULL,NULL),(730,578,'SWT','applicants_certifications/
U578T1654663151.pdf','applicants_certifications','PCPD CETIFICATE JULY 3-
4.pdf','U578T1654663151.pdf','2022-06-08 04:39:11','2022-06-08
04:39:11',NULL,'578',NULL,NULL),(731,578,'SWT','applicants_certifications/
U578T1654663151.pdf','applicants_certifications','RESEARCH CERTIFICATE BENGUET
SU.pdf','U578T1654663151.pdf','2022-06-08 04:39:11','2022-06-08
04:39:12',NULL,'578',NULL,NULL),(732,564,'TOR','applicants_certifications/
U564T1654663306.pdf','applicants_certifications','OTR
MAED.pdf','U564T1654663306.pdf','2022-06-08 04:41:46','2022-06-08
04:41:46',NULL,'564',NULL,NULL),(735,578,'SWT','applicants_certifications/
U578T1654663482.pdf','applicants_certifications','STAR INC
CERTIFICATE.pdf','U578T1654663482.pdf','2022-06-08 04:44:42','2022-06-08
04:44:42',NULL,'578',NULL,NULL),(736,564,'SWT','applicants_certifications/
U564T1654663666.pdf','applicants_certifications','CERTIFICATES.pdf','U564T165466366
6.pdf','2022-06-08 04:47:46','2022-06-08 04:47:46',NULL,'564',NULL,NULL),
(738,564,'TOR','applicants_certifications/
U564T1654663694.pdf','applicants_certifications','OTR
BSED.pdf','U564T1654663694.pdf','2022-06-08 04:48:14','2022-06-08
04:48:14',NULL,'564',NULL,NULL),(742,578,'COE','applicants_certifications/
U578T1654664924.pdf','applicants_certifications','CERTIFICATE OF
EMPLOYMENT.pdf','U578T1654664924.pdf','2022-06-08 05:08:44','2022-06-08
05:08:44',NULL,'578',NULL,NULL),(743,574,'TOR','applicants_certifications/
U574T1654665293.pdf','applicants_certifications','C. Transcript of
Records.pdf','U574T1654665293.pdf','2022-06-08 05:14:53','2022-06-08
05:14:53',NULL,'574',NULL,NULL),(744,574,'COE','applicants_certifications/
U574T1654665315.pdf','applicants_certifications','F. Certificate of
Employment.pdf','U574T1654665315.pdf','2022-06-08 05:15:15','2022-06-08
05:15:15',NULL,'574',NULL,NULL),(745,574,'ELIGIBILITY','applicants_certifications/
U574T1654665347.pdf','applicants_certifications','D. Authenticated PRC
License.pdf','U574T1654665347.pdf','2022-06-08 05:15:47','2022-06-08
05:15:47',NULL,'574',NULL,NULL),(746,565,'SWT','applicants_certifications/
U565T1654665785.pdf','applicants_certifications','Certificates of
Training.pdf','U565T1654665785.pdf','2022-06-08 05:23:05','2022-06-08
05:23:05',NULL,'565',NULL,NULL),(747,578,'SWT','applicants_certifications/
U578T1654666045.pdf','applicants_certifications','STATISTIC AND
PROBABILITY.pdf','U578T1654666045.pdf','2022-06-08 05:27:25','2022-06-08
05:27:25',NULL,'578',NULL,NULL),(748,578,'SWT','applicants_certifications/
U578T1654666045.pdf','applicants_certifications','MATH
THRIVING CERTIFICATE.pdf','U578T1654666045.pdf','2022-06-08 05:27:25','2022-06-08
05:27:25',NULL,'578',NULL,NULL),(749,565,'SWT','applicants_certifications/
U565T1654666171.pdf','applicants_certifications','Other Recognition
(Continuation).pdf','U565T1654666171.pdf','2022-06-08 05:29:31','2022-06-08
05:29:31',NULL,'565',NULL,NULL),(750,565,'SWT','applicants_certifications/
U565T1654666232.pdf','applicants_certifications','Continuation b-
min.pdf','U565T1654666232.pdf','2022-06-08 05:30:32','2022-06-08
05:30:32',NULL,'565',NULL,NULL),(751,565,'SWT','applicants_certifications/
U565T1654666312.pdf','applicants_certifications','Continuation Certificates-
min.pdf','U565T1654666312.pdf','2022-06-08 05:31:52','2022-06-08
05:31:52',NULL,'565',NULL,NULL),(752,574,'SWT','applicants_certifications/
U574T1654666316.pdf','applicants_certifications','E. Certificate of
Trainings,Seminars, Workshop,Conferences.pdf','U574T1654666316.pdf','2022-06-08
05:31:56','2022-06-08 05:31:56',NULL,'574',NULL,NULL),
(753,565,'SWT','applicants_certifications/
U565T1654666333.pdf','applicants_certifications','Continuation b-
min.pdf','U565T1654666333.pdf','2022-06-08 05:32:13','2022-06-08
05:32:13',NULL,'565',NULL,NULL),(754,565,'SWT','applicants_certifications/
U565T1654666356.pdf','applicants_certifications','Other
Recognitions.pdf','U565T1654666356.pdf','2022-06-08 05:32:36','2022-06-08
05:32:36',NULL,'565',NULL,NULL),(755,565,'SWT','applicants_certifications/
U565T1654666595.pdf','applicants_certifications','Continuation
(Recognitions).pdf','U565T1654666595.pdf','2022-06-08 05:36:35','2022-06-08
05:36:35',NULL,'565',NULL,NULL),(756,565,'SWT','applicants_certifications/
U565T1654667095.pdf','applicants_certifications','Extracurricular b-
min.pdf','U565T1654667095.pdf','2022-06-08 05:44:55','2022-06-08
05:44:55',NULL,'565',NULL,NULL),(757,565,'SWT','applicants_certifications/
U565T1654667096.pdf','applicants_certifications','Extracurricular-
min.pdf','U565T1654667096.pdf','2022-06-08 05:44:56','2022-06-08
05:44:56',NULL,'565',NULL,NULL),(758,567,'TOR','applicants_certifications/
U567T1654668829.pdf','applicants_certifications','Document.pdf','U567T1654668829.pd
f','2022-06-08 06:13:49','2022-06-08 06:13:49',NULL,'567',NULL,NULL),
(759,556,'COE','applicants_certifications/
U556T1654671911.pdf','applicants_certifications','Certification1.pdf','U556T1654671
911.pdf','2022-06-08 07:05:11','2022-06-08 07:05:11',NULL,'556',NULL,NULL),
(760,583,'COE','applicants_certifications/
U583T1654673012.pdf','applicants_certifications','COE-
IFSU.pdf','U583T1654673012.pdf','2022-06-08 07:23:32','2022-06-08
07:23:32',NULL,'583',NULL,NULL),(761,553,'COE','applicants_certifications/
U553T1654674709.pdf','applicants_certifications','certificate of employment
olpccsmi.pdf','U553T1654674709.pdf','2022-06-08 07:51:49','2022-06-08
07:51:49',NULL,'553',NULL,NULL),(762,553,'TOR','applicants_certifications/
U553T1654674768.pdf','applicants_certifications','tor
undergrad.pdf','U553T1654674768.pdf','2022-06-08 07:52:48','2022-06-08
07:52:48',NULL,'553',NULL,NULL),(763,583,'TOR','applicants_certifications/
U583T1654674974.pdf','applicants_certifications','TOR1-
3.pdf','U583T1654674974.pdf','2022-06-08 07:56:14','2022-06-08
07:56:14',NULL,'583',NULL,NULL),(766,583,'TOR','applicants_certifications/
U583T1654675245.pdf','applicants_certifications','DIP-
converted.pdf','U583T1654675245.pdf','2022-06-08 08:00:45','2022-06-08
08:00:45',NULL,'583',NULL,NULL),(767,583,'SWT','applicants_certifications/
U583T1654675847.pdf','applicants_certifications','Cert.
1.pdf','U583T1654675847.pdf','2022-06-08 08:10:47','2022-06-08
08:10:47',NULL,'583',NULL,NULL),(768,583,'SWT','applicants_certifications/
U583T1654675855.pdf','applicants_certifications','Cert.2.pdf','U583T1654675855.pdf'
,'2022-06-08 08:10:55','2022-06-08 08:10:55',NULL,'583',NULL,NULL),
(769,583,'SWT','applicants_certifications/
U583T1654675988.pdf','applicants_certifications','Cert.3.pdf','U583T1654675988.pdf'
,'2022-06-08 08:13:08','2022-06-08 08:13:08',NULL,'583',NULL,NULL),
(771,583,'SWT','applicants_certifications/
U583T1654676161.pdf','applicants_certifications','Cert.4.pdf','U583T1654676161.pdf'
,'2022-06-08 08:16:01','2022-06-08 08:16:01',NULL,'583',NULL,NULL),
(772,553,'ELIGIBILITY','applicants_certifications/
U553T1654678574.pdf','applicants_certifications','authenticated prc
license.pdf','U553T1654678574.pdf','2022-06-08 08:56:14','2022-06-08
08:56:14',NULL,'553',NULL,NULL),(773,585,'TOR','applicants_certifications/
U585T1654679061.pdf','applicants_certifications','inbound5094284636653719129.pdf','
U585T1654679061.pdf','2022-06-08 09:04:21','2022-06-08
09:04:21',NULL,'585',NULL,NULL),(774,585,'COE','applicants_certifications/
U585T1654679118.pdf','applicants_certifications','inbound4326872957981424523.pdf','
U585T1654679118.pdf','2022-06-08 09:05:18','2022-06-08
09:05:18',NULL,'585',NULL,NULL),(775,585,'SWT','applicants_certifications/
U585T1654679140.pdf','applicants_certifications','inbound5079907721441439095.pdf','
U585T1654679140.pdf','2022-06-08 09:05:40','2022-06-08
09:05:40',NULL,'585',NULL,NULL),(776,585,'ELIGIBILITY','applicants_certifications/
U585T1654679167.pdf','applicants_certifications','inbound3811385457240814617.pdf','
U585T1654679167.pdf','2022-06-08 09:06:07','2022-06-08
09:06:07',NULL,'585',NULL,NULL),(777,578,'ELIGIBILITY','applicants_certifications/
U578T1654692709.pdf','applicants_certifications','PRC ID
Authenticated .pdf','U578T1654692709.pdf','2022-06-08 12:51:49','2022-06-08
12:51:49',NULL,'578',NULL,NULL),(778,578,'ELIGIBILITY','applicants_certifications/
U578T1654692712.pdf','applicants_certifications','Cert. Rating
Authenticated .pdf','U578T1654692712.pdf','2022-06-08 12:51:52','2022-06-08
12:51:52',NULL,'578',NULL,NULL),(779,578,'TOR','applicants_certifications/
U578T1654693620.pdf','applicants_certifications','OTR
authenticated .pdf','U578T1654693620.pdf','2022-06-08 13:07:00','2022-06-08
13:07:00',NULL,'578',NULL,NULL),(780,586,'TOR','applicants_certifications/
U586T1654699445.pdf','applicants_certifications','Transcript of Records
(1).pdf','U586T1654699445.pdf','2022-06-08 14:44:05','2022-06-08
14:44:05',NULL,'586',NULL,NULL),(781,586,'ELIGIBILITY','applicants_certifications/
U586T1654699493.pdf','applicants_certifications','PRC License ID
(1).pdf','U586T1654699493.pdf','2022-06-08 14:44:53','2022-06-08
14:44:53',NULL,'586',NULL,NULL),(782,586,'SWT','applicants_certifications/
U586T1654700530.pdf','applicants_certifications','Certificates.pdf','U586T165470053
0.pdf','2022-06-08 15:02:10','2022-06-08 15:02:10',NULL,'586',NULL,NULL),
(783,556,'TOR','applicants_certifications/
U556T1654740911.pdf','applicants_certifications','otr.pdf','U556T1654740911.pdf','2
022-06-09 02:15:11','2022-06-09 02:15:11',NULL,'556',NULL,NULL),
(784,556,'COE','applicants_certifications/
U556T1654741970.pdf','applicants_certifications','service.pdf','U556T1654741970.pdf
','2022-06-09 02:32:50','2022-06-09 02:32:50',NULL,'556',NULL,NULL),
(785,589,'TOR','applicants_certifications/
U589T1654743928.pdf','applicants_certifications','OTR06092022_compressed.pdf','U589
T1654743928.pdf','2022-06-09 03:05:28','2022-06-09 03:05:28',NULL,'589',NULL,NULL),
(786,589,'COE','applicants_certifications/
U589T1654744037.pdf','applicants_certifications','SERVICE
RECORD06092022_compressed.pdf','U589T1654744037.pdf','2022-06-09 03:07:17','2022-
06-09 03:07:17',NULL,'589',NULL,NULL),(787,589,'SWT','applicants_certifications/
U589T1654744132.pdf','applicants_certifications','CERTIFICATE OF
SAIET06092022_compressed.pdf','U589T1654744132.pdf','2022-06-09 03:08:52','2022-06-
09 03:08:52',NULL,'589',NULL,NULL),(788,589,'SWT','applicants_certifications/
U589T1654744317.pdf','applicants_certifications','CERTIFICATE
NIIT06092022_compressed.pdf','U589T1654744317.pdf','2022-06-09 03:11:57','2022-06-
09 03:11:57',NULL,'589',NULL,NULL),(789,589,'SWT','applicants_certifications/
U589T1654744569.pdf','applicants_certifications','CERTIFICATE COLLEGE OF
EDUCATION06092022_compressed.pdf','U589T1654744569.pdf','2022-06-09
03:16:09','2022-06-09 03:16:09',NULL,'589',NULL,NULL),
(790,589,'ELIGIBILITY','applicants_certifications/
U589T1654744804.pdf','applicants_certifications','PRC
XEROZ06092022_compressed.pdf','U589T1654744804.pdf','2022-06-09 03:20:04','2022-06-
09 03:20:04',NULL,'589',NULL,NULL),(791,591,'TOR','applicants_certifications/
U591T1654746238.pdf','applicants_certifications','Publication2.pdf','U591T165474623
8.pdf','2022-06-09 03:43:58','2022-06-09 03:43:58',NULL,'591',NULL,NULL),
(793,591,'SWT','applicants_certifications/
U591T1654746406.pdf','applicants_certifications','Seminars.pdf','U591T1654746406.pd
f','2022-06-09 03:46:46','2022-06-09 03:46:46',NULL,'591',NULL,NULL),
(794,591,'ELIGIBILITY','applicants_certifications/
U591T1654746625.pdf','applicants_certifications','Rating.pdf','U591T1654746625.pdf'
,'2022-06-09 03:50:25','2022-06-09 03:50:25',NULL,'591',NULL,NULL),
(796,191,'COE','applicants_certifications/
U191T1654751688.pdf','applicants_certifications','COE-
PDF.pdf','U191T1654751688.pdf','2022-06-09 05:14:48','2022-06-09
05:14:48',NULL,'191',NULL,NULL),(798,191,'SWT','applicants_certifications/
U191T1654751757.pdf','applicants_certifications','Training.pdf','U191T1654751757.pd
f','2022-06-09 05:15:57','2022-06-09 05:15:57',NULL,'191',NULL,NULL),
(799,191,'SWT','applicants_certifications/
U191T1654751819.pdf','applicants_certifications','Certificates.pdf','U191T165475181
9.pdf','2022-06-09 05:16:59','2022-06-09 05:16:59',NULL,'191',NULL,NULL),
(800,162,'COE','applicants_certifications/
U162T1654751845.pdf','applicants_certifications','certificate of
Employment.pdf','U162T1654751845.pdf','2022-06-09 05:17:25','2022-06-09
05:17:25',NULL,'162',NULL,NULL),(801,191,'SWT','applicants_certifications/
U191T1654751868.pdf','applicants_certifications','INSET
Certificate.pdf','U191T1654751868.pdf','2022-06-09 05:17:48','2022-06-09
05:17:48',NULL,'191',NULL,NULL),(802,191,'SWT','applicants_certifications/
U191T1654751942.pdf','applicants_certifications','Certificate
2.pdf','U191T1654751942.pdf','2022-06-09 05:19:02','2022-06-09
05:19:02',NULL,'191',NULL,NULL),(803,191,'ELIGIBILITY','applicants_certifications/
U191T1654751993.pdf','applicants_certifications','prc.pdf','U191T1654751993.pdf','2
022-06-09 05:19:53','2022-06-09 05:19:53',NULL,'191',NULL,NULL),
(804,162,'ELIGIBILITY','applicants_certifications/
U162T1654752692.pdf','applicants_certifications','PRC
I.d.pdf','U162T1654752692.pdf','2022-06-09 05:31:32','2022-06-09
05:31:32',NULL,'162',NULL,NULL),(805,186,'TOR','applicants_certifications/
U186T1654752767.pdf','applicants_certifications','Transcript of
Records.pdf','U186T1654752767.pdf','2022-06-09 05:32:47','2022-06-09
05:32:47',NULL,'186',NULL,NULL),(806,186,'COE','applicants_certifications/
U186T1654752797.pdf','applicants_certifications','Contract and Cert (as
CoE).pdf','U186T1654752797.pdf','2022-06-09 05:33:17','2022-06-09
05:33:17',NULL,'186',NULL,NULL),(807,186,'SWT','applicants_certifications/
U186T1654752810.pdf','applicants_certifications','Seminar Workshop and Training
Certs.pdf','U186T1654752810.pdf','2022-06-09 05:33:30','2022-06-09
05:33:30',NULL,'186',NULL,NULL),(808,191,'TOR','applicants_certifications/
U191T1654753006.pdf','applicants_certifications','TOR001.pdf','U191T1654753006.pdf'
,'2022-06-09 05:36:46','2022-06-09 05:36:46',NULL,'191',NULL,NULL),
(809,191,'TOR','applicants_certifications/
U191T1654753130.pdf','applicants_certifications','TOR002.pdf','U191T1654753130.pdf'
,'2022-06-09 05:38:50','2022-06-09 05:38:50',NULL,'191',NULL,NULL),
(810,191,'TOR','applicants_certifications/
U191T1654753259.pdf','applicants_certifications','TOR003.pdf','U191T1654753259.pdf'
,'2022-06-09 05:40:59','2022-06-09 05:40:59',NULL,'191',NULL,NULL),
(811,162,'TOR','applicants_certifications/
U162T1654753789.pdf','applicants_certifications','TOR001.pdf','U162T1654753789.pdf'
,'2022-06-09 05:49:49','2022-06-09 05:49:49',NULL,'162',NULL,NULL),
(812,162,'TOR','applicants_certifications/
U162T1654753906.pdf','applicants_certifications','TOR002.pdf','U162T1654753906.pdf'
,'2022-06-09 05:51:46','2022-06-09 05:51:46',NULL,'162',NULL,NULL),
(813,162,'SWT','applicants_certifications/
U162T1654754053.pdf','applicants_certifications','certificate003.pdf','U162T1654754
053.pdf','2022-06-09 05:54:13','2022-06-09 05:54:13',NULL,'162',NULL,NULL),
(814,162,'SWT','applicants_certifications/
U162T1654754235.pdf','applicants_certifications','CERT001.pdf','U162T1654754235.pdf
','2022-06-09 05:57:15','2022-06-09 05:57:15',NULL,'162',NULL,NULL),
(815,162,'ELIGIBILITY','applicants_certifications/
U162T1654754739.pdf','applicants_certifications','prc004.pdf','U162T1654754739.pdf'
,'2022-06-09 06:05:39','2022-06-09 06:05:39',NULL,'162',NULL,NULL),
(816,162,'ELIGIBILITY','applicants_certifications/
U162T1654754744.pdf','applicants_certifications','prc004.pdf','U162T1654754744.pdf'
,'2022-06-09 06:05:44','2022-06-09 06:05:44',NULL,'162',NULL,NULL),
(819,572,'COE','applicants_certifications/
U572T1654755644.pdf','applicants_certifications','Certificate of
Employment.pdf','U572T1654755644.pdf','2022-06-09 06:20:44','2022-06-09
06:20:44',NULL,'572',NULL,NULL),(823,162,'SWT','applicants_certifications/
U162T1654757957.pdf','applicants_certifications','CERT002.pdf','U162T1654757957.pdf
','2022-06-09 06:59:17','2022-06-09 06:59:17',NULL,'162',NULL,NULL),
(826,162,'SWT','applicants_certifications/
U162T1654758098.pdf','applicants_certifications','CERT004.pdf','U162T1654758098.pdf
','2022-06-09 07:01:38','2022-06-09 07:01:38',NULL,'162',NULL,NULL),
(827,162,'SWT','applicants_certifications/
U162T1654758285.pdf','applicants_certifications','CERT005.pdf','U162T1654758285.pdf
','2022-06-09 07:04:45','2022-06-09 07:04:45',NULL,'162',NULL,NULL),
(828,162,'SWT','applicants_certifications/
U162T1654758438.pdf','applicants_certifications','CERT006.pdf','U162T1654758438.pdf
','2022-06-09 07:07:18','2022-06-09 07:07:18',NULL,'162',NULL,NULL),
(829,588,'TOR','applicants_certifications/
U588T1654762412.pdf','applicants_certifications','OTR.pdf','U588T1654762412.pdf','2
022-06-09 08:13:32','2022-06-09 08:13:32',NULL,'588',NULL,NULL),
(830,588,'COE','applicants_certifications/
U588T1654762465.pdf','applicants_certifications','Employment
Certificate.pdf','U588T1654762465.pdf','2022-06-09 08:14:25','2022-06-09
08:14:25',NULL,'588',NULL,NULL),(831,588,'ELIGIBILITY','applicants_certifications/
U588T1654762488.pdf','applicants_certifications','Eligibility.pdf','U588T1654762488
.pdf','2022-06-09 08:14:48','2022-06-09 08:14:48',NULL,'588',NULL,NULL),
(832,553,'TOR','applicants_certifications/
U553T1654763886.pdf','applicants_certifications','earned
units.pdf','U553T1654763886.pdf','2022-06-09 08:38:06','2022-06-09
08:38:06',NULL,'553',NULL,NULL),(833,553,'TOR','applicants_certifications/
U553T1654763893.pdf','applicants_certifications','grades
masters.pdf','U553T1654763893.pdf','2022-06-09 08:38:13','2022-06-09
08:38:13',NULL,'553',NULL,NULL),(834,557,'COE','applicants_certifications/
U557T1654764080.pdf','applicants_certifications','TOLEDOSHEEN-
COE.pdf','U557T1654764080.pdf','2022-06-09 08:41:20','2022-06-09
08:41:20',NULL,'557',NULL,NULL),(835,588,'SWT','applicants_certifications/
U588T1654765786.pdf','applicants_certifications','trainings and seminars
1_compressed.pdf','U588T1654765786.pdf','2022-06-09 09:09:46','2022-06-09
09:09:46',NULL,'588',NULL,NULL),(836,588,'SWT','applicants_certifications/
U588T1654765815.pdf','applicants_certifications','Trainings and seminars
continuation_compressed.pdf','U588T1654765815.pdf','2022-06-09 09:10:15','2022-06-
09 09:10:15',NULL,'588',NULL,NULL),(837,576,'TOR','applicants_certifications/
U576T1654771882.pdf','applicants_certifications','TOR-
ISU.pdf','U576T1654771882.pdf','2022-06-09 10:51:22','2022-06-09
10:51:22',NULL,'576',NULL,NULL),(838,576,'SWT','applicants_certifications/
U576T1654771907.pdf','applicants_certifications','Certificates.pdf','U576T165477190
7.pdf','2022-06-09 10:51:47','2022-06-09 10:51:47',NULL,'576',NULL,NULL),
(840,576,'ELIGIBILITY','applicants_certifications/
U576T1654778882.pdf','applicants_certifications','PRC.pdf','U576T1654778882.pdf','2
022-06-09 12:48:02','2022-06-09 12:48:02',NULL,'576',NULL,NULL),
(841,562,'TOR','applicants_certifications/
U562T1654780485.pdf','applicants_certifications','TOLEDOJOSEPHUS OTR-
College.pdf','U562T1654780485.pdf','2022-06-09 13:14:45','2022-06-09
13:14:45',NULL,'562',NULL,NULL),(842,562,'TOR','applicants_certifications/
U562T1654780494.pdf','applicants_certifications','TOLEDOJOSEPHUS COG-
MIT.pdf','U562T1654780494.pdf','2022-06-09 13:14:54','2022-06-09
13:14:54',NULL,'562',NULL,NULL),(843,562,'COE','applicants_certifications/
U562T1654780545.pdf','applicants_certifications','TOLEDOJOSEPHUS-
COE.pdf','U562T1654780545.pdf','2022-06-09 13:15:45','2022-06-09
13:15:45',NULL,'562',NULL,NULL),(848,562,'SWT','applicants_certifications/
U562T1654780667.pdf','applicants_certifications','seminar-
MTCNA.pdf','U562T1654780667.pdf','2022-06-09 13:17:47','2022-06-09
13:17:47',NULL,'562',NULL,NULL),(849,562,'SWT','applicants_certifications/
U562T1654780667.pdf','applicants_certifications','seminar-
MTCUME.pdf','U562T1654780667.pdf','2022-06-09 13:17:47','2022-06-09
13:17:47',NULL,'562',NULL,NULL),(850,562,'SWT','applicants_certifications/
U562T1654780725.pdf','applicants_certifications','2020Nov10-13
DECODE.pdf','U562T1654780725.pdf','2022-06-09 13:18:45','2022-06-09
13:18:45',NULL,'562',NULL,NULL),(851,562,'SWT','applicants_certifications/
U562T1654780874.pdf','applicants_certifications','2021May28 11th
ICT.pdf','U562T1654780874.pdf','2022-06-09 13:21:14','2022-06-09
13:21:14',NULL,'562',NULL,NULL),(852,562,'ELIGIBILITY','applicants_certifications/
U562T1654781748.pdf','applicants_certifications','toledojosephus -
driverslicense.pdf','U562T1654781748.pdf','2022-06-09 13:35:48','2022-06-09
13:35:48',NULL,'562',NULL,NULL),(853,567,'ELIGIBILITY','applicants_certifications/
U567T1654783075.pdf','applicants_certifications','Document
2.pdf','U567T1654783075.pdf','2022-06-09 13:57:55','2022-06-09
13:57:55',NULL,'567',NULL,NULL),(854,567,'ELIGIBILITY','applicants_certifications/
U567T1654783084.pdf','applicants_certifications','Document
3.pdf','U567T1654783084.pdf','2022-06-09 13:58:04','2022-06-09
13:58:04',NULL,'567',NULL,NULL),(855,567,'SWT','applicants_certifications/
U567T1654783134.pdf','applicants_certifications','Document
4.pdf','U567T1654783134.pdf','2022-06-09 13:58:54','2022-06-09
13:58:54',NULL,'567',NULL,NULL),(856,567,'SWT','applicants_certifications/
U567T1654783138.pdf','applicants_certifications','Document
5.pdf','U567T1654783138.pdf','2022-06-09 13:58:58','2022-06-09
13:58:58',NULL,'567',NULL,NULL),(857,567,'SWT','applicants_certifications/
U567T1654783145.pdf','applicants_certifications','Document
6.pdf','U567T1654783145.pdf','2022-06-09 13:59:05','2022-06-09
13:59:05',NULL,'567',NULL,NULL),(858,567,'COE','applicants_certifications/
U567T1654783962.pdf','applicants_certifications','Document
9.pdf','U567T1654783962.pdf','2022-06-09 14:12:42','2022-06-09
14:12:42',NULL,'567',NULL,NULL),(859,567,'COE','applicants_certifications/
U567T1654783966.pdf','applicants_certifications','Document
10.pdf','U567T1654783966.pdf','2022-06-09 14:12:46','2022-06-09
14:12:46',NULL,'567',NULL,NULL),(860,567,'COE','applicants_certifications/
U567T1654783971.pdf','applicants_certifications','Document
11.pdf','U567T1654783971.pdf','2022-06-09 14:12:51','2022-06-09
14:12:51',NULL,'567',NULL,NULL),(861,567,'COE','applicants_certifications/
U567T1654783976.pdf','applicants_certifications','Document
12.pdf','U567T1654783976.pdf','2022-06-09 14:12:56','2022-06-09
14:12:56',NULL,'567',NULL,NULL),(862,567,'COE','applicants_certifications/
U567T1654783980.pdf','applicants_certifications','Document
13.pdf','U567T1654783980.pdf','2022-06-09 14:13:00','2022-06-09
14:13:00',NULL,'567',NULL,NULL),(863,567,'COE','applicants_certifications/
U567T1654783986.pdf','applicants_certifications','Document
14.pdf','U567T1654783986.pdf','2022-06-09 14:13:06','2022-06-09
14:13:06',NULL,'567',NULL,NULL),
(864,535,'ELIGIBILITY','applicants_certifications/
U535T1654824929.pdf','applicants_certifications','4. Authenticated PRC License and
Board Rating.pdf','U535T1654824929.pdf','2022-06-10 01:35:29','2022-06-10
01:35:29',NULL,'535',NULL,NULL),(865,595,'TOR','applicants_certifications/
U595T1654824948.pdf','applicants_certifications','tor.pdf','U595T1654824948.pdf','2
022-06-10 01:35:48','2022-06-10 01:35:48',NULL,'595',NULL,NULL),
(866,595,'COE','applicants_certifications/
U595T1654825093.pdf','applicants_certifications','Certifcate of
Employment.pdf','U595T1654825093.pdf','2022-06-10 01:38:13','2022-06-10
01:38:13',NULL,'595',NULL,NULL),(868,535,'SWT','applicants_certifications/
U535T1654825155.pdf','applicants_certifications','Certificates.pdf','U535T165482515
5.pdf','2022-06-10 01:39:15','2022-06-10 01:39:15',NULL,'535',NULL,NULL),
(869,535,'COE','applicants_certifications/
U535T1654825179.pdf','applicants_certifications','6. Service
Record.pdf','U535T1654825179.pdf','2022-06-10 01:39:39','2022-06-10
01:39:39',NULL,'535',NULL,NULL),(870,595,'SWT','applicants_certifications/
U595T1654825373.pdf','applicants_certifications','SWTS.pdf','U595T1654825373.pdf','
2022-06-10 01:42:53','2022-06-10 01:42:53',NULL,'595',NULL,NULL),
(872,595,'ELIGIBILITY','applicants_certifications/
U595T1654825500.pdf','applicants_certifications','prc
id.pdf','U595T1654825500.pdf','2022-06-10 01:45:00','2022-06-10
01:45:00',NULL,'595',NULL,NULL),(873,535,'TOR','applicants_certifications/
U535T1654825676.pdf','applicants_certifications','3. Transcript of
Records_compressed_compressed-compressed.pdf','U535T1654825676.pdf','2022-06-10
01:47:56','2022-06-10 01:47:56',NULL,'535',NULL,NULL),
(874,535,'TOR','applicants_certifications/
U535T1654830673.pdf','applicants_certifications','3.1 Certification of Earned
Units.pdf','U535T1654830673.pdf','2022-06-10 03:11:13','2022-06-10
03:11:13',NULL,'535',NULL,NULL),(875,594,'COE','applicants_certifications/
U594T1654832612.pdf','applicants_certifications','Cert of
Employment.pdf','U594T1654832612.pdf','2022-06-10 03:43:32','2022-06-10
03:43:32',NULL,'594',NULL,NULL),(876,594,'SWT','applicants_certifications/
U594T1654833033.pdf','applicants_certifications','Coursera
5V942UX8SQ9H.pdf','U594T1654833033.pdf','2022-06-10 03:50:33','2022-06-10
03:50:33',NULL,'594',NULL,NULL),(877,594,'ELIGIBILITY','applicants_certifications/
U594T1654839528.pdf','applicants_certifications','Certificate of
Rating.pdf','U594T1654839528.pdf','2022-06-10 05:38:48','2022-06-10
05:38:48',NULL,'594',NULL,NULL),(878,594,'ELIGIBILITY','applicants_certifications/
U594T1654839616.pdf','applicants_certifications','PIC.pdf','U594T1654839616.pdf','2
022-06-10 05:40:16','2022-06-10 05:40:16',NULL,'594',NULL,NULL),
(880,599,'TOR','applicants_certifications/
U599T1654839741.pdf','applicants_certifications','Scanned
TOR.pdf','U599T1654839741.pdf','2022-06-10 05:42:21','2022-06-10
05:42:21',NULL,'599',NULL,NULL),(881,599,'ELIGIBILITY','applicants_certifications/
U599T1654839944.pdf','applicants_certifications','Board
Rating.pdf','U599T1654839944.pdf','2022-06-10 05:45:44','2022-06-10
05:45:44',NULL,'599',NULL,NULL),(882,599,'SWT','applicants_certifications/
U599T1654840202.pdf','applicants_certifications','Certificate of Participation
JAYSON B. DIZON (1).pdf','U599T1654840202.pdf','2022-06-10 05:50:02','2022-06-10
05:50:02',NULL,'599',NULL,NULL),(883,599,'SWT','applicants_certifications/
U599T1654840202.pdf','applicants_certifications','OJ
Fortune.pdf','U599T1654840202.pdf','2022-06-10 05:50:02','2022-06-10
05:50:02',NULL,'599',NULL,NULL),(885,594,'SWT','applicants_certifications/
U594T1654849102.pdf','applicants_certifications','ACLS.pdf','U594T1654849102.pdf','
2022-06-10 08:18:22','2022-06-10 08:18:22',NULL,'594',NULL,NULL),
(886,562,'TOR','applicants_certifications/
U562T1654854957.pdf','applicants_certifications','PERSONAL DATA
SHEET.pdf','U562T1654854957.pdf','2022-06-10 09:55:57','2022-06-10
09:55:57',NULL,'562',NULL,NULL),(887,557,'TOR','applicants_certifications/
U557T1654855169.pdf','applicants_certifications','TOLEDOSHEENA
PDS.pdf','U557T1654855169.pdf','2022-06-10 09:59:29','2022-06-10
09:59:29',NULL,'557',NULL,NULL),(890,607,'TOR','applicants_certifications/
U607T1654861315.pdf','applicants_certifications','CAV_MD.ANCHETA_IFSU.pdf','U607T16
54861315.pdf','2022-06-10 11:41:55','2022-06-10 11:41:55',NULL,'607',NULL,NULL),
(891,607,'TOR','applicants_certifications/
U607T1654861316.pdf','applicants_certifications','TOR_MD.ANCHETA_IFSU.pdf','U607T16
54861316.pdf','2022-06-10 11:41:56','2022-06-10 11:41:56',NULL,'607',NULL,NULL),
(892,607,'COE','applicants_certifications/
U607T1654861362.pdf','applicants_certifications','CERT. OF
EMPLOYMENT_MD.ANCHETA_IFSU.pdf','U607T1654861362.pdf','2022-06-10 11:42:42','2022-
06-10 11:42:42',NULL,'607',NULL,NULL),(894,607,'SWT','applicants_certifications/
U607T1654861381.pdf','applicants_certifications','SEAMEO_MD.ANCHETA_IFSU.pdf','U607
T1654861381.pdf','2022-06-10 11:43:01','2022-06-10 11:43:01',NULL,'607',NULL,NULL),
(895,607,'ELIGIBILITY','applicants_certifications/
U607T1654861408.pdf','applicants_certifications','LICENSE_MD.ANCHETA_IFSU.pdf','U60
7T1654861408.pdf','2022-06-10 11:43:28','2022-06-10
11:43:28',NULL,'607',NULL,NULL),(896,607,'TOR','applicants_certifications/
U607T1654864437.pdf','applicants_certifications','CERT
USLS_MD.ANCHETA_IFSU.pdf','U607T1654864437.pdf','2022-06-10 12:33:57','2022-06-10
12:33:57',NULL,'607',NULL,NULL),(897,607,'SWT','applicants_certifications/
U607T1654864463.pdf','applicants_certifications','AEIRS_MD.ANCHETA_IFSU.pdf','U607T
1654864463.pdf','2022-06-10 12:34:23','2022-06-10 12:34:23',NULL,'607',NULL,NULL),
(898,586,'COE','applicants_certifications/
U586T1654873656.pdf','applicants_certifications','Certificate of
Employment.pdf','U586T1654873656.pdf','2022-06-10 15:07:36','2022-06-10
15:07:36',NULL,'586',NULL,NULL),(899,594,'TOR','applicants_certifications/
U594T1654889102.pdf','applicants_certifications','TOR.pdf','U594T1654889102.pdf','2
022-06-10 19:25:02','2022-06-10 19:25:02',NULL,'594',NULL,NULL),
(901,594,'COE','applicants_certifications/
U594T1654889236.pdf','applicants_certifications','Certification
LGU.pdf','U594T1654889236.pdf','2022-06-10 19:27:16','2022-06-10
19:27:16',NULL,'594',NULL,NULL),(902,594,'COE','applicants_certifications/
U594T1654889539.pdf','applicants_certifications','Certification
RHU.pdf','U594T1654889539.pdf','2022-06-10 19:32:19','2022-06-10
19:32:19',NULL,'594',NULL,NULL),(903,594,'COE','applicants_certifications/
U594T1654889539.pdf','applicants_certifications','certification
TDH.pdf','U594T1654889539.pdf','2022-06-10 19:32:19','2022-06-10
19:32:19',NULL,'594',NULL,NULL),(904,594,'SWT','applicants_certifications/
U594T1654890631.pdf','applicants_certifications','Red
Cross.pdf','U594T1654890631.pdf','2022-06-10 19:50:31','2022-06-10
19:50:31',NULL,'594',NULL,NULL),(905,594,'SWT','applicants_certifications/
U594T1654891048.pdf','applicants_certifications','Certificates and
Training.pdf','U594T1654891048.pdf','2022-06-10 19:57:28','2022-06-10
19:57:28',NULL,'594',NULL,NULL),(906,594,'SWT','applicants_certifications/
U594T1654891311.pdf','applicants_certifications','IVT.pdf','U594T1654891311.pdf','2
022-06-10 20:01:51','2022-06-10 20:01:51',NULL,'594',NULL,NULL),
(908,611,'ELIGIBILITY','applicants_certifications/
U611T1655024141.pdf','applicants_certifications','Eligibility_Keith Jon
Bautista.pdf','U611T1655024141.pdf','2022-06-12 08:55:41','2022-06-12
08:55:41',NULL,'611',NULL,NULL),(909,611,'SWT','applicants_certifications/
U611T1655024163.pdf','applicants_certifications','Training Certificates_Keith Jon
Bautista.pdf','U611T1655024163.pdf','2022-06-12 08:56:03','2022-06-12
08:56:03',NULL,'611',NULL,NULL),(910,611,'COE','applicants_certifications/
U611T1655024263.pdf','applicants_certifications','Certificate of Employment_Keith
Jon Bautista.pdf','U611T1655024263.pdf','2022-06-12 08:57:43','2022-06-12
08:57:43',NULL,'611',NULL,NULL),(911,611,'TOR','applicants_certifications/
U611T1655024369.pdf','applicants_certifications','Transcript of Records_Keith Jon
Bautista_compressed (1).pdf','U611T1655024369.pdf','2022-06-12 08:59:29','2022-06-
12 08:59:29',NULL,'611',NULL,NULL),(912,612,'SWT','applicants_certifications/
U612T1655039428.pdf','applicants_certifications','BLS
Certificate.pdf','U612T1655039428.pdf','2022-06-12 13:10:28','2022-06-12
13:10:28',NULL,'612',NULL,NULL),(913,612,'SWT','applicants_certifications/
U612T1655039428.pdf','applicants_certifications','Charting
Certificate.pdf','U612T1655039428.pdf','2022-06-12 13:10:28','2022-06-12
13:10:28',NULL,'612',NULL,NULL),(914,612,'SWT','applicants_certifications/
U612T1655039430.pdf','applicants_certifications','GCP
certificate.pdf','U612T1655039430.pdf','2022-06-12 13:10:30','2022-06-12
13:10:30',NULL,'612',NULL,NULL),(915,612,'SWT','applicants_certifications/
U612T1655039431.pdf','applicants_certifications','Halip (1)
CT.pdf','U612T1655039431.pdf','2022-06-12 13:10:31','2022-06-12
13:10:31',NULL,'612',NULL,NULL),(916,612,'SWT','applicants_certifications/
U612T1655039431.pdf','applicants_certifications','HFFI Halip - Certificate of
Attendance.pdf','U612T1655039431.pdf','2022-06-12 13:10:31','2022-06-12
13:10:31',NULL,'612',NULL,NULL),(917,612,'SWT','applicants_certifications/
U612T1655039432.pdf','applicants_certifications','HFI
Certificate.pdf','U612T1655039432.pdf','2022-06-12 13:10:32','2022-06-12
13:10:32',NULL,'612',NULL,NULL),(918,612,'SWT','applicants_certifications/
U612T1655039432.pdf','applicants_certifications','MCNAP
Cert.pdf','U612T1655039432.pdf','2022-06-12 13:10:32','2022-06-12
13:10:32',NULL,'612',NULL,NULL),(919,612,'SWT','applicants_certifications/
U612T1655039433.pdf','applicants_certifications','MCNAP
Certificate.pdf','U612T1655039433.pdf','2022-06-12 13:10:33','2022-06-12
13:10:33',NULL,'612',NULL,NULL),(920,612,'SWT','applicants_certifications/
U612T1655039434.pdf','applicants_certifications','UC
Certificate.pdf','U612T1655039434.pdf','2022-06-12 13:10:34','2022-06-12
13:10:34',NULL,'612',NULL,NULL),(921,612,'TOR','applicants_certifications/
U612T1655039875.pdf','applicants_certifications','3. TOR Part
1.jpg.pdf','U612T1655039875.pdf','2022-06-12 13:17:55','2022-06-12
13:17:55',NULL,'612',NULL,NULL),(922,612,'TOR','applicants_certifications/
U612T1655039875.pdf','applicants_certifications','3. TOR Part
2.jpg.pdf','U612T1655039875.pdf','2022-06-12 13:17:55','2022-06-12
13:17:55',NULL,'612',NULL,NULL),(923,612,'COE','applicants_certifications/
U612T1655039908.pdf','applicants_certifications','7.
COE.pdf','U612T1655039908.pdf','2022-06-12 13:18:28','2022-06-12
13:18:28',NULL,'612',NULL,NULL),(924,612,'ELIGIBILITY','applicants_certifications/
U612T1655040014.pdf','applicants_certifications','IMG_20211018_214003.pdf','U612T16
55040014.pdf','2022-06-12 13:20:14','2022-06-12 13:20:14',NULL,'612',NULL,NULL),
(925,612,'ELIGIBILITY','applicants_certifications/
U612T1655040014.pdf','applicants_certifications','IMG_20211018_214032.pdf','U612T16
55040014.pdf','2022-06-12 13:20:14','2022-06-12 13:20:14',NULL,'612',NULL,NULL),
(926,543,'SWT','applicants_certifications/
U543T1655091085.pdf','applicants_certifications','pds 1st
page.pdf','U543T1655091085.pdf','2022-06-13 03:31:25','2022-06-13
03:31:25',NULL,'543',NULL,NULL),(927,543,'SWT','applicants_certifications/
U543T1655091100.pdf','applicants_certifications','pds 2nd
page.pdf','U543T1655091100.pdf','2022-06-13 03:31:40','2022-06-13
03:31:40',NULL,'543',NULL,NULL),(928,543,'SWT','applicants_certifications/
U543T1655091100.pdf','applicants_certifications','3rd page
pds.pdf','U543T1655091100.pdf','2022-06-13 03:31:40','2022-06-13
03:31:40',NULL,'543',NULL,NULL),(929,543,'SWT','applicants_certifications/
U543T1655091102.pdf','applicants_certifications','4th page
pds.pdf','U543T1655091102.pdf','2022-06-13 03:31:42','2022-06-13
03:31:42',NULL,'543',NULL,NULL),(930,543,'SWT','applicants_certifications/
U543T1655091116.pdf','applicants_certifications','coe
tdh.pdf','U543T1655091116.pdf','2022-06-13 03:31:56','2022-06-13
03:31:56',NULL,'543',NULL,NULL),(931,553,'SWT','applicants_certifications/
U553T1655096885.pdf','applicants_certifications','2nd CRADLE
Symposium_Certificate_Merwin Andrei E. Simon (1).pdf','U553T1655096885.pdf','2022-
06-13 05:08:05','2022-06-13 05:08:05',NULL,'553',NULL,NULL),
(932,618,'COE','applicants_certifications/
U618T1655108091.pdf','applicants_certifications','inbound7232607572573104911.pdf','
U618T1655108091.pdf','2022-06-13 08:14:51','2022-06-13
08:14:51',NULL,'618',NULL,NULL),(935,618,'SWT','applicants_certifications/
U618T1655109476.pdf','applicants_certifications','inbound8553912733511113080.pdf','
U618T1655109476.pdf','2022-06-13 08:37:56','2022-06-13
08:37:56',NULL,'618',NULL,NULL),(936,605,'TOR','applicants_certifications/
U605T1655117114.pdf','applicants_certifications','OTR- LAW
COURSE.pdf','U605T1655117114.pdf','2022-06-13 10:45:14','2022-06-13
10:45:14',NULL,'605',NULL,NULL),(937,605,'TOR','applicants_certifications/
U605T1655117142.pdf','applicants_certifications','OTR-BSED
COURSE.pdf','U605T1655117142.pdf','2022-06-13 10:45:42','2022-06-13
10:45:42',NULL,'605',NULL,NULL),(940,615,'TOR','applicants_certifications/
U615T1655187328.pdf','applicants_certifications','Mulato_MS Certificate of Grades
_CLSU.pdf','U615T1655187328.pdf','2022-06-14 06:15:28','2022-06-14
06:15:28',NULL,'615',NULL,NULL),(941,615,'TOR','applicants_certifications/
U615T1655188222.pdf','applicants_certifications','Mulato_BS
TOR_ISU.pdf','U615T1655188222.pdf','2022-06-14 06:30:22','2022-06-14
06:30:22',NULL,'615',NULL,NULL),(942,615,'COE','applicants_certifications/
U615T1655188278.pdf','applicants_certifications','Mulato_DA Certificate of
Employment.pdf','U615T1655188278.pdf','2022-06-14 06:31:18','2022-06-14
06:31:18',NULL,'615',NULL,NULL),(943,615,'SWT','applicants_certifications/
U615T1655188588.pdf','applicants_certifications','COT.pdf','U615T1655188588.pdf','2
022-06-14 06:36:28','2022-06-14 06:36:28',NULL,'615',NULL,NULL),
(944,615,'ELIGIBILITY','applicants_certifications/
U615T1655188609.pdf','applicants_certifications','Mulato_Certificate of
Eligibility.pdf','U615T1655188609.pdf','2022-06-14 06:36:49','2022-06-14
06:36:49',NULL,'615',NULL,NULL),(945,617,'TOR','applicants_certifications/
U617T1655192616.pdf','applicants_certifications','TOR
2.pdf','U617T1655192616.pdf','2022-06-14 07:43:36','2022-06-14
07:43:36',NULL,'617',NULL,NULL),(946,617,'TOR','applicants_certifications/
U617T1655192616.pdf','applicants_certifications','TOR
1.pdf','U617T1655192616.pdf','2022-06-14 07:43:36','2022-06-14
07:43:36',NULL,'617',NULL,NULL),(947,617,'SWT','applicants_certifications/
U617T1655192775.pdf','applicants_certifications','CERT
1.pdf','U617T1655192775.pdf','2022-06-14 07:46:15','2022-06-14
07:46:15',NULL,'617',NULL,NULL),(948,617,'SWT','applicants_certifications/
U617T1655192775.pdf','applicants_certifications','CERT
2.pdf','U617T1655192775.pdf','2022-06-14 07:46:15','2022-06-14
07:46:15',NULL,'617',NULL,NULL),(949,617,'SWT','applicants_certifications/
U617T1655192781.pdf','applicants_certifications','CERT
3.pdf','U617T1655192781.pdf','2022-06-14 07:46:21','2022-06-14
07:46:21',NULL,'617',NULL,NULL),(950,617,'ELIGIBILITY','applicants_certifications/
U617T1655192866.pdf','applicants_certifications','PRC
1.pdf','U617T1655192866.pdf','2022-06-14 07:47:46','2022-06-14
07:47:46',NULL,'617',NULL,NULL),(951,617,'ELIGIBILITY','applicants_certifications/
U617T1655192874.pdf','applicants_certifications','PRC
2.pdf','U617T1655192874.pdf','2022-06-14 07:47:54','2022-06-14
07:47:54',NULL,'617',NULL,NULL),(954,605,'ELIGIBILITY','applicants_certifications/
U605T1655194842.pdf','applicants_certifications','CERT. with ROLL
NUMBER.pdf','U605T1655194842.pdf','2022-06-14 08:20:42','2022-06-14
08:20:42',NULL,'605',NULL,NULL),(955,605,'ELIGIBILITY','applicants_certifications/
U605T1655194859.pdf','applicants_certifications','IBP
ID.pdf','U605T1655194859.pdf','2022-06-14 08:20:59','2022-06-14
08:20:59',NULL,'605',NULL,NULL),(956,605,'ELIGIBILITY','applicants_certifications/
U605T1655194866.pdf','applicants_certifications','PRC
ID.pdf','U605T1655194866.pdf','2022-06-14 08:21:06','2022-06-14
08:21:06',NULL,'605',NULL,NULL),(957,621,'TOR','applicants_certifications/
U621T1655195033.pdf','applicants_certifications','TOR.pdf','U621T1655195033.pdf','2
022-06-14 08:23:53','2022-06-14 08:23:53',NULL,'621',NULL,NULL),
(958,621,'COE','applicants_certifications/
U621T1655195949.pdf','applicants_certifications','CC.pdf-
converted.pdf','U621T1655195949.pdf','2022-06-14 08:39:09','2022-06-14
08:39:09',NULL,'621',NULL,NULL),(959,569,'TOR','applicants_certifications/
U569T1655195983.pdf','applicants_certifications','otr
1.pdf','U569T1655195983.pdf','2022-06-14 08:39:43','2022-06-14
08:39:43',NULL,'569',NULL,NULL),(960,569,'TOR','applicants_certifications/
U569T1655195990.pdf','applicants_certifications','otr
2.pdf','U569T1655195990.pdf','2022-06-14 08:39:50','2022-06-14
08:39:50',NULL,'569',NULL,NULL),(961,569,'TOR','applicants_certifications/
U569T1655195993.pdf','applicants_certifications','otr
3.pdf','U569T1655195993.pdf','2022-06-14 08:39:53','2022-06-14
08:39:53',NULL,'569',NULL,NULL),(962,621,'SWT','applicants_certifications/
U621T1655197345.pdf','applicants_certifications','Certificates.pdf','U621T165519734
5.pdf','2022-06-14 09:02:25','2022-06-14 09:02:25',NULL,'621',NULL,NULL),
(963,621,'ELIGIBILITY','applicants_certifications/
U621T1655197491.pdf','applicants_certifications','License.pdf','U621T1655197491.pdf
','2022-06-14 09:04:51','2022-06-14 09:04:51',NULL,'621',NULL,NULL),
(964,569,'COE','applicants_certifications/
U569T1655200554.pdf','applicants_certifications','certificate of
employment.pdf','U569T1655200554.pdf','2022-06-14 09:55:54','2022-06-14
09:55:54',NULL,'569',NULL,NULL),(965,569,'COE','applicants_certifications/
U569T1655200585.pdf','applicants_certifications','certificate of
employment.pdf','U569T1655200585.pdf','2022-06-14 09:56:25','2022-06-14
09:56:25',NULL,'569',NULL,NULL),(966,569,'SWT','applicants_certifications/
U569T1655200644.pdf','applicants_certifications','Seminar
(2).pdf','U569T1655200644.pdf','2022-06-14 09:57:24','2022-06-14
09:57:24',NULL,'569',NULL,NULL),(967,569,'SWT','applicants_certifications/
U569T1655200646.pdf','applicants_certifications','seminar
(3).pdf','U569T1655200646.pdf','2022-06-14 09:57:26','2022-06-14
09:57:26',NULL,'569',NULL,NULL),(968,569,'SWT','applicants_certifications/
U569T1655200649.pdf','applicants_certifications','seminar
(4).pdf','U569T1655200649.pdf','2022-06-14 09:57:29','2022-06-14
09:57:29',NULL,'569',NULL,NULL),(969,569,'SWT','applicants_certifications/
U569T1655200652.pdf','applicants_certifications','seminar
(5).pdf','U569T1655200652.pdf','2022-06-14 09:57:32','2022-06-14
09:57:32',NULL,'569',NULL,NULL),(970,569,'SWT','applicants_certifications/
U569T1655200654.pdf','applicants_certifications','seminar
(6).pdf','U569T1655200654.pdf','2022-06-14 09:57:34','2022-06-14
09:57:34',NULL,'569',NULL,NULL),(971,569,'SWT','applicants_certifications/
U569T1655200656.pdf','applicants_certifications','Seminar
(7).pdf','U569T1655200656.pdf','2022-06-14 09:57:36','2022-06-14
09:57:36',NULL,'569',NULL,NULL),(972,569,'SWT','applicants_certifications/
U569T1655200657.pdf','applicants_certifications','Seminar
(8).pdf','U569T1655200657.pdf','2022-06-14 09:57:37','2022-06-14
09:57:37',NULL,'569',NULL,NULL),(973,569,'SWT','applicants_certifications/
U569T1655200659.pdf','applicants_certifications','seminar
(9).pdf','U569T1655200659.pdf','2022-06-14 09:57:39','2022-06-14
09:57:39',NULL,'569',NULL,NULL),(974,569,'SWT','applicants_certifications/
U569T1655200661.pdf','applicants_certifications','seminar
(10).pdf','U569T1655200661.pdf','2022-06-14 09:57:41','2022-06-14
09:57:41',NULL,'569',NULL,NULL),(975,569,'SWT','applicants_certifications/
U569T1655200665.pdf','applicants_certifications','seminar
(11).pdf','U569T1655200665.pdf','2022-06-14
09:57:45','2022-06-14 09:57:45',NULL,'569',NULL,NULL),
(976,569,'SWT','applicants_certifications/
U569T1655200668.pdf','applicants_certifications','Seminar
(12).pdf','U569T1655200668.pdf','2022-06-14 09:57:48','2022-06-14
09:57:48',NULL,'569',NULL,NULL),(977,569,'SWT','applicants_certifications/
U569T1655200715.pdf','applicants_certifications','Seminar
(13).pdf','U569T1655200715.pdf','2022-06-14 09:58:35','2022-06-14
09:58:35',NULL,'569',NULL,NULL),(978,569,'SWT','applicants_certifications/
U569T1655200718.pdf','applicants_certifications','seminar
(14).pdf','U569T1655200718.pdf','2022-06-14 09:58:38','2022-06-14
09:58:38',NULL,'569',NULL,NULL),(979,569,'SWT','applicants_certifications/
U569T1655200720.pdf','applicants_certifications','seminar
(15).pdf','U569T1655200720.pdf','2022-06-14 09:58:40','2022-06-14
09:58:40',NULL,'569',NULL,NULL),(980,569,'SWT','applicants_certifications/
U569T1655200722.pdf','applicants_certifications','seminar
(16).pdf','U569T1655200722.pdf','2022-06-14 09:58:42','2022-06-14
09:58:42',NULL,'569',NULL,NULL),(981,569,'SWT','applicants_certifications/
U569T1655200725.pdf','applicants_certifications','seminar
(17).pdf','U569T1655200725.pdf','2022-06-14 09:58:45','2022-06-14
09:58:45',NULL,'569',NULL,NULL),(982,569,'SWT','applicants_certifications/
U569T1655200730.pdf','applicants_certifications','Seminar
(18).pdf','U569T1655200730.pdf','2022-06-14 09:58:50','2022-06-14
09:58:50',NULL,'569',NULL,NULL),(983,569,'SWT','applicants_certifications/
U569T1655200732.pdf','applicants_certifications','Seminar
(19).pdf','U569T1655200732.pdf','2022-06-14 09:58:52','2022-06-14
09:58:52',NULL,'569',NULL,NULL),(984,569,'SWT','applicants_certifications/
U569T1655200735.pdf','applicants_certifications','Seminar
(20).pdf','U569T1655200735.pdf','2022-06-14 09:58:55','2022-06-14
09:58:55',NULL,'569',NULL,NULL),(985,569,'SWT','applicants_certifications/
U569T1655200738.pdf','applicants_certifications','Seminar
(21).pdf','U569T1655200738.pdf','2022-06-14 09:58:58','2022-06-14
09:58:58',NULL,'569',NULL,NULL),(986,569,'SWT','applicants_certifications/
U569T1655200740.pdf','applicants_certifications','seminar.pdf','U569T1655200740.pdf
','2022-06-14 09:59:00','2022-06-14 09:59:00',NULL,'569',NULL,NULL),
(987,569,'ELIGIBILITY','applicants_certifications/
U569T1655200772.pdf','applicants_certifications','csc.pdf','U569T1655200772.pdf','2
022-06-14 09:59:32','2022-06-14 09:59:32',NULL,'569',NULL,NULL),
(988,569,'ELIGIBILITY','applicants_certifications/
U569T1655200801.pdf','applicants_certifications','PRC
License.pdf','U569T1655200801.pdf','2022-06-14 10:00:01','2022-06-14
10:00:01',NULL,'569',NULL,NULL),(989,605,'SWT','applicants_certifications/
U605T1655204741.pdf','applicants_certifications','1.pdf','U605T1655204741.pdf','202
2-06-14 11:05:41','2022-06-14 11:05:41',NULL,'605',NULL,NULL),
(990,605,'SWT','applicants_certifications/
U605T1655204784.pdf','applicants_certifications','2.pdf','U605T1655204784.pdf','202
2-06-14 11:06:24','2022-06-14 11:06:24',NULL,'605',NULL,NULL),
(991,605,'SWT','applicants_certifications/
U605T1655204838.pdf','applicants_certifications','3.pdf','U605T1655204838.pdf','202
2-06-14 11:07:18','2022-06-14 11:07:18',NULL,'605',NULL,NULL),
(992,605,'SWT','applicants_certifications/
U605T1655204936.pdf','applicants_certifications','4.pdf','U605T1655204936.pdf','202
2-06-14 11:08:56','2022-06-14 11:08:56',NULL,'605',NULL,NULL),
(993,605,'SWT','applicants_certifications/
U605T1655205076.pdf','applicants_certifications','5.pdf','U605T1655205076.pdf','202
2-06-14 11:11:16','2022-06-14 11:11:16',NULL,'605',NULL,NULL),
(994,605,'SWT','applicants_certifications/
U605T1655205077.pdf','applicants_certifications','6.pdf','U605T1655205077.pdf','202
2-06-14 11:11:17','2022-06-14 11:11:17',NULL,'605',NULL,NULL),
(995,605,'SWT','applicants_certifications/
U605T1655205832.pdf','applicants_certifications','8.pdf','U605T1655205832.pdf','202
2-06-14 11:23:52','2022-06-14 11:23:52',NULL,'605',NULL,NULL),
(996,605,'SWT','applicants_certifications/
U605T1655205832.pdf','applicants_certifications','7.pdf','U605T1655205832.pdf','202
2-06-14 11:23:52','2022-06-14 11:23:52',NULL,'605',NULL,NULL),
(997,605,'SWT','applicants_certifications/
U605T1655205833.pdf','applicants_certifications','9.pdf','U605T1655205833.pdf','202
2-06-14 11:23:53','2022-06-14 11:23:53',NULL,'605',NULL,NULL),
(998,605,'SWT','applicants_certifications/
U605T1655205833.pdf','applicants_certifications','10.pdf','U605T1655205833.pdf','20
22-06-14 11:23:53','2022-06-14 11:23:53',NULL,'605',NULL,NULL),
(999,605,'SWT','applicants_certifications/
U605T1655205834.pdf','applicants_certifications','11.pdf','U605T1655205834.pdf','20
22-06-14 11:23:54','2022-06-14 11:23:54',NULL,'605',NULL,NULL),
(1000,605,'SWT','applicants_certifications/
U605T1655205834.pdf','applicants_certifications','12.pdf','U605T1655205834.pdf','20
22-06-14 11:23:54','2022-06-14 11:23:54',NULL,'605',NULL,NULL),
(1001,605,'SWT','applicants_certifications/
U605T1655205835.pdf','applicants_certifications','13.pdf','U605T1655205835.pdf','20
22-06-14 11:23:55','2022-06-14 11:23:55',NULL,'605',NULL,NULL),
(1002,605,'SWT','applicants_certifications/
U605T1655205835.pdf','applicants_certifications','14.pdf','U605T1655205835.pdf','20
22-06-14 11:23:55','2022-06-14 11:23:55',NULL,'605',NULL,NULL),
(1003,605,'SWT','applicants_certifications/
U605T1655205836.pdf','applicants_certifications','15.pdf','U605T1655205836.pdf','20
22-06-14 11:23:56','2022-06-14 11:23:56',NULL,'605',NULL,NULL),
(1004,605,'SWT','applicants_certifications/
U605T1655205842.pdf','applicants_certifications','16.pdf','U605T1655205842.pdf','20
22-06-14 11:24:02','2022-06-14 11:24:02',NULL,'605',NULL,NULL),
(1005,622,'TOR','applicants_certifications/
U622T1655211643.pdf','applicants_certifications','IC.tor.pdf','U622T1655211643.pdf'
,'2022-06-14 13:00:43','2022-06-14 13:00:43',NULL,'622',NULL,NULL),
(1006,622,'TOR','applicants_certifications/
U622T1655211661.pdf','applicants_certifications','ISU.TOR1.pdf','U622T1655211661.pd
f','2022-06-14 13:01:01','2022-06-14 13:01:01',NULL,'622',NULL,NULL),
(1007,622,'COE','applicants_certifications/
U622T1655211849.pdf','applicants_certifications','employmentcert.ifsuteaching.pdf',
'U622T1655211849.pdf','2022-06-14 13:04:09','2022-06-14
13:04:09',NULL,'622',NULL,NULL),(1008,622,'COE','applicants_certifications/
U622T1655211851.pdf','applicants_certifications','gwemployment.cert.pdf','U622T1655
211851.pdf','2022-06-14 13:04:11','2022-06-14 13:04:11',NULL,'622',NULL,NULL),
(1009,622,'COE','applicants_certifications/
U622T1655211854.pdf','applicants_certifications','employmentcert.ifsuRA.pdf','U622T
1655211854.pdf','2022-06-14 13:04:14','2022-06-14 13:04:14',NULL,'622',NULL,NULL),
(1010,622,'TOR','applicants_certifications/
U622T1655211923.pdf','applicants_certifications','isu.TOR2.pdf','U622T1655211923.pd
f','2022-06-14 13:05:23','2022-06-14 13:05:23',NULL,'622',NULL,NULL),
(1011,622,'TOR','applicants_certifications/
U622T1655211925.pdf','applicants_certifications','isu.tor3.pdf','U622T1655211925.pd
f','2022-06-14 13:05:25','2022-06-14 13:05:25',NULL,'622',NULL,NULL),
(1012,622,'SWT','applicants_certifications/
U622T1655211953.pdf','applicants_certifications','ICTcertHS2.pdf','U622T1655211953.
pdf','2022-06-14 13:05:53','2022-06-14 13:05:53',NULL,'622',NULL,NULL),
(1013,622,'SWT','applicants_certifications/
U622T1655211956.pdf','applicants_certifications','Cert.CB.pdf','U622T1655211956.pdf
','2022-06-14 13:05:56','2022-06-14 13:05:56',NULL,'622',NULL,NULL),
(1014,622,'SWT','applicants_certifications/
U622T1655211958.pdf','applicants_certifications','ICTcertHS.pdf','U622T1655211958.p
df','2022-06-14 13:05:58','2022-06-14 13:05:58',NULL,'622',NULL,NULL),
(1015,622,'SWT','applicants_certifications/
U622T1655211961.pdf','applicants_certifications','JBcert.pdf','U622T1655211961.pdf'
,'2022-06-14 13:06:01','2022-06-14 13:06:01',NULL,'622',NULL,NULL),
(1016,622,'SWT','applicants_certifications/
U622T1655211965.pdf','applicants_certifications','pnbojtcert.pdf','U622T1655211965.
pdf','2022-06-14 13:06:05','2022-06-14 13:06:05',NULL,'622',NULL,NULL),
(1017,622,'SWT','applicants_certifications/
U622T1655211971.pdf','applicants_certifications','tesdawaiter.pdf','U622T1655211971
.pdf','2022-06-14 13:06:11','2022-06-14 13:06:11',NULL,'622',NULL,NULL),
(1018,622,'SWT','applicants_certifications/
U622T1655211975.pdf','applicants_certifications','IC.cert.pdf','U622T1655211975.pdf
','2022-06-14 13:06:15','2022-06-14 13:06:15',NULL,'622',NULL,NULL),
(1019,622,'SWT','applicants_certifications/
U622T1655211979.pdf','applicants_certifications','ICT.CERTTRAINING.pdf','U622T16552
11979.pdf','2022-06-14 13:06:19','2022-06-14 13:06:19',NULL,'622',NULL,NULL),
(1020,622,'ELIGIBILITY','applicants_certifications/
U622T1655212057.pdf','applicants_certifications','authenticated.PRCID.pdf','U622T16
55212057.pdf','2022-06-14 13:07:37','2022-06-14 13:07:37',NULL,'622',NULL,NULL),
(1021,401,'TOR','applicants_certifications/
U401T1655254664.pdf','applicants_certifications','Official Transcript of Records-
Final.pdf','U401T1655254664.pdf','2022-06-15 00:57:44','2022-06-15
00:57:44',NULL,'401',NULL,NULL),(1022,401,'COE','applicants_certifications/
U401T1655256211.pdf','applicants_certifications','Service Record
(2).pdf','U401T1655256211.pdf','2022-06-15 01:23:31','2022-06-15
01:23:31',NULL,'401',NULL,NULL),
(1023,401,'ELIGIBILITY','applicants_certifications/
U401T1655256644.pdf','applicants_certifications','Certificate of Eligibity or
Liscense.pdf','U401T1655256644.pdf','2022-06-15 01:30:44','2022-06-15
01:30:44',NULL,'401',NULL,NULL),(1024,401,'SWT','applicants_certifications/
U401T1655258866.pdf','applicants_certifications','Seminar
Certificates.pdf','U401T1655258866.pdf','2022-06-15 02:07:46','2022-06-15
02:07:46',NULL,'401',NULL,NULL),(1025,605,'COE','applicants_certifications/
U605T1655260403.pdf','applicants_certifications','CERTIFICATE OF
EMPLOYMENT.pdf','U605T1655260403.pdf','2022-06-15 02:33:23','2022-06-15
02:33:23',NULL,'605',NULL,NULL),(1026,605,'COE','applicants_certifications/
U605T1655260464.pdf','applicants_certifications','PERF
ORMANCE RATINGS.pdf','U605T1655260464.pdf','2022-06-15 02:34:24','2022-06-15
02:34:24',NULL,'605',NULL,NULL),(1028,627,'TOR','applicants_certifications/
U627T1655269560.pdf','applicants_certifications','TRANSCRIPT OF
RECORD.pdf','U627T1655269560.pdf','2022-06-15 05:06:00','2022-06-15
05:06:00',NULL,'627',NULL,NULL),(1031,620,'COE','applicants_certifications/
U620T1655270695.pdf','applicants_certifications','inbound5240167668688163656.pdf','
U620T1655270695.pdf','2022-06-15 05:24:55','2022-06-15
05:24:55',NULL,'620',NULL,NULL),
(1032,620,'ELIGIBILITY','applicants_certifications/
U620T1655270794.pdf','applicants_certifications','inbound735247201425376005.pdf','U
620T1655270794.pdf','2022-06-15 05:26:34','2022-06-15
05:26:34',NULL,'620',NULL,NULL),
(1033,620,'ELIGIBILITY','applicants_certifications/
U620T1655270803.pdf','applicants_certifications','inbound3100728871721550934.pdf','
U620T1655270803.pdf','2022-06-15 05:26:43','2022-06-15
05:26:43',NULL,'620',NULL,NULL),(1034,620,'SWT','applicants_certifications/
U620T1655270829.pdf','applicants_certifications','inbound375175327991725130.pdf','U
620T1655270829.pdf','2022-06-15 05:27:09','2022-06-15
05:27:09',NULL,'620',NULL,NULL),(1035,620,'SWT','applicants_certifications/
U620T1655270864.pdf','applicants_certifications','inbound1610867378991105054.pdf','
U620T1655270864.pdf','2022-06-15 05:27:44','2022-06-15
05:27:44',NULL,'620',NULL,NULL),(1036,620,'SWT','applicants_certifications/
U620T1655270873.pdf','applicants_certifications','inbound4419123812728294786.pdf','
U620T1655270873.pdf','2022-06-15 05:27:53','2022-06-15
05:27:53',NULL,'620',NULL,NULL),(1037,620,'SWT','applicants_certifications/
U620T1655270881.pdf','applicants_certifications','inbound8516167355876977484.pdf','
U620T1655270881.pdf','2022-06-15 05:28:01','2022-06-15
05:28:01',NULL,'620',NULL,NULL),(1038,620,'SWT','applicants_certifications/
U620T1655270888.pdf','applicants_certifications','inbound1402923211312734272.pdf','
U620T1655270888.pdf','2022-06-15 05:28:08','2022-06-15
05:28:08',NULL,'620',NULL,NULL),(1039,620,'SWT','applicants_certifications/
U620T1655270900.pdf','applicants_certifications','inbound3370523253735341651.pdf','
U620T1655270900.pdf','2022-06-15 05:28:20','2022-06-15
05:28:20',NULL,'620',NULL,NULL),(1040,620,'SWT','applicants_certifications/
U620T1655270990.pdf','applicants_certifications','inbound7113755416637794422.pdf','
U620T1655270990.pdf','2022-06-15 05:29:50','2022-06-15
05:29:50',NULL,'620',NULL,NULL),(1041,620,'SWT','applicants_certifications/
U620T1655271056.pdf','applicants_certifications','inbound537882464499343153.pdf','U
620T1655271056.pdf','2022-06-15 05:30:56','2022-06-15
05:30:56',NULL,'620',NULL,NULL),(1042,627,'COE','applicants_certifications/
U627T1655271112.pdf','applicants_certifications','COE - MS.
NOELIZA.pdf','U627T1655271112.pdf','2022-06-15 05:31:52','2022-06-15
05:31:52',NULL,'627',NULL,NULL),(1043,627,'SWT','applicants_certifications/
U627T1655271494.pdf','applicants_certifications','CERTIFICATE.pdf','U627T1655271494
.pdf','2022-06-15 05:38:14','2022-06-15 05:38:14',NULL,'627',NULL,NULL),
(1044,627,'ELIGIBILITY','applicants_certifications/
U627T1655271652.pdf','applicants_certifications','CERTIFICATE OF
ELIGIBILIT.pdf','U627T1655271652.pdf','2022-06-15 05:40:52','2022-06-15
05:40:52',NULL,'627',NULL,NULL),(1045,620,'TOR','applicants_certifications/
U620T1655299432.pdf','applicants_certifications','inbound3233278510966567239.pdf','
U620T1655299432.pdf','2022-06-15 13:23:52','2022-06-15
13:23:52',NULL,'620',NULL,NULL),
(1046,626,'ELIGIBILITY','applicants_certifications/
U626T1655302196.pdf','applicants_certifications','inbound749646271.pdf','U626T16553
02196.pdf','2022-06-15 14:09:56','2022-06-15 14:09:56',NULL,'626',NULL,NULL),
(1053,626,'COE','applicants_certifications/
U626T1655302960.pdf','applicants_certifications','51talk.pdf','U626T1655302960.pdf'
,'2022-06-15 14:22:40','2022-06-15 14:22:40',NULL,'626',NULL,NULL),
(1054,626,'COE','applicants_certifications/
U626T1655302978.pdf','applicants_certifications','convergys
1.pdf','U626T1655302978.pdf','2022-06-15 14:22:58','2022-06-15
14:22:58',NULL,'626',NULL,NULL),(1055,626,'COE','applicants_certifications/
U626T1655302986.pdf','applicants_certifications','convergys
2.pdf','U626T1655302986.pdf','2022-06-15 14:23:06','2022-06-15
14:23:06',NULL,'626',NULL,NULL),(1057,626,'SWT','applicants_certifications/
U626T1655303479.pdf','applicants_certifications','certificate-194e52-125925-163w-
1.pdf','U626T1655303479.pdf','2022-06-15 14:31:19','2022-06-15
14:31:19',NULL,'626',NULL,NULL),(1058,626,'TOR','applicants_certifications/
U626T1655304334.pdf','applicants_certifications','trans1.pdf','U626T1655304334.pdf'
,'2022-06-15 14:45:34','2022-06-15 14:45:34',NULL,'626',NULL,NULL),
(1059,626,'TOR','applicants_certifications/
U626T1655304351.pdf','applicants_certifications','trans2.pdf','U626T1655304351.pdf'
,'2022-06-15 14:45:51','2022-06-15 14:45:51',NULL,'626',NULL,NULL),
(1060,620,'TOR','applicants_certifications/
U620T1655304605.pdf','applicants_certifications','inbound1091591013654322643.pdf','
U620T1655304605.pdf','2022-06-15 14:50:05','2022-06-15
14:50:05',NULL,'620',NULL,NULL),
(1061,629,'ELIGIBILITY','applicants_certifications/
U629T1655351252.pdf','applicants_certifications','4 - Authenticated
License.pdf','U629T1655351252.pdf','2022-06-16 03:47:32','2022-06-16
03:47:32',NULL,'629',NULL,NULL),(1062,629,'SWT','applicants_certifications/
U629T1655351291.pdf','applicants_certifications','5 - Certificate of
Training.pdf','U629T1655351291.pdf','2022-06-16 03:48:11','2022-06-16
03:48:11',NULL,'629',NULL,NULL),(1063,629,'COE','applicants_certifications/
U629T1655351317.pdf','applicants_certifications','6 - Service
Record.pdf','U629T1655351317.pdf','2022-06-16 03:48:37','2022-06-16
03:48:37',NULL,'629',NULL,NULL),(1064,629,'TOR','applicants_certifications/
U629T1655351330.pdf','applicants_certifications','3 - Transcript of Record -
GARCIA, RODNY GIVERSON V.pdf','U629T1655351330.pdf','2022-06-16 03:48:50','2022-06-
16 03:48:50',NULL,'629',NULL,NULL),(1065,594,'TOR','applicants_certifications/
U594T1655362474.pdf','applicants_certifications','MPHA.pdf','U594T1655362474.pdf','
2022-06-16 06:54:34','2022-06-16 06:54:34',NULL,'594',NULL,NULL),
(1067,594,'SWT','applicants_certifications/
U594T1655365055.pdf','applicants_certifications','First
Aid.pdf','U594T1655365055.pdf','2022-06-16 07:37:35','2022-06-16
07:37:35',NULL,'594',NULL,NULL),(1068,594,'SWT','applicants_certifications/
U594T1655365055.pdf','applicants_certifications','ECG.pdf','U594T1655365055.pdf','2
022-06-16 07:37:35','2022-06-16 07:37:35',NULL,'594',NULL,NULL),
(1069,594,'SWT','applicants_certifications/
U594T1655365057.pdf','applicants_certifications','nursing.pdf','U594T1655365057.pdf
','2022-06-16 07:37:37','2022-06-16 07:37:37',NULL,'594',NULL,NULL),
(1070,594,'SWT','applicants_certifications/
U594T1655365057.pdf','applicants_certifications','treatment.pdf','U594T1655365057.p
df','2022-06-16 07:37:37','2022-06-16 07:37:37',NULL,'594',NULL,NULL),
(1071,594,'TOR','applicants_certifications/
U594T1655365119.pdf','applicants_certifications','Diploma.pdf','U594T1655365119.pdf
','2022-06-16 07:38:39','2022-06-16 07:38:39',NULL,'594',NULL,NULL),
(1072,594,'TOR','applicants_certifications/
U594T1655365244.pdf','applicants_certifications','master-in-managememt-major-in-
public-health-administration (1).pdf','U594T1655365244.pdf','2022-06-16
07:40:44','2022-06-16 07:40:44',NULL,'594',NULL,NULL),
(1073,623,'SWT','applicants_certifications/
U623T1655366885.pdf','applicants_certifications','training
cert.pdf','U623T1655366885.pdf','2022-06-16 08:08:05','2022-06-16
08:08:05',NULL,'623',NULL,NULL),(1074,623,'TOR','applicants_certifications/
U623T1655367052.pdf','applicants_certifications','OTR.pdf','U623T1655367052.pdf','2
022-06-16 08:10:52','2022-06-16 08:10:52',NULL,'623',NULL,NULL),
(1075,623,'COE','applicants_certifications/
U623T1655367244.pdf','applicants_certifications','certEmp.pdf','U623T1655367244.pdf
','2022-06-16 08:14:04','2022-06-16 08:14:04',NULL,'623',NULL,NULL),
(1076,623,'ELIGIBILITY','applicants_certifications/
U623T1655367366.pdf','applicants_certifications','license.pdf','U623T1655367366.pdf
','2022-06-16 08:16:06','2022-06-16 08:16:06',NULL,'623',NULL,NULL),
(1077,626,'TOR','applicants_certifications/
U626T1655374465.pdf','applicants_certifications','trans
3.pdf','U626T1655374465.pdf','2022-06-16 10:14:25','2022-06-16
10:14:25',NULL,'626',NULL,NULL),(1078,626,'COE','applicants_certifications/
U626T1655374488.pdf','applicants_certifications','COE.pdf','U626T1655374488.pdf','2
022-06-16 10:14:48','2022-06-16 10:14:48',NULL,'626',NULL,NULL),
(1079,626,'SWT','applicants_certifications/
U626T1655374514.pdf','applicants_certifications','seminar1.pdf','U626T1655374514.pd
f','2022-06-16 10:15:14','2022-06-16 10:15:14',NULL,'626',NULL,NULL),
(1080,626,'SWT','applicants_certifications/
U626T1655374528.pdf','applicants_certifications','seminar2.pdf','U626T1655374528.pd
f','2022-06-16 10:15:28','2022-06-16 10:15:28',NULL,'626',NULL,NULL),
(1081,626,'SWT','applicants_certifications/
U626T1655374537.pdf','applicants_certifications','seminar3.pdf','U626T1655374537.pd
f','2022-06-16 10:15:37','2022-06-16 10:15:37',NULL,'626',NULL,NULL),
(1082,601,'ELIGIBILITY','applicants_certifications/
U601T1655385331.pdf','applicants_certifications','inbound1218232265581144353.pdf','
U601T1655385331.pdf','2022-06-16 13:10:12','2022-06-16
13:15:31',NULL,'601','601',NULL),(1083,601,'SWT','applicants_certifications/
U601T1655385271.pdf','applicants_certifications','inbound7901938616457631881.pdf','
U601T1655385271.pdf','2022-06-16 13:14:31','2022-06-16
13:14:31',NULL,'601',NULL,NULL),(1084,601,'SWT','applicants_certifications/
U601T1655385292.pdf','applicants_certifications','inbound8544093799739610795.pdf','
U601T1655385292.pdf','2022-06-16 13:14:52','2022-06-16
13:14:52',NULL,'601',NULL,NULL),(1085,601,'TOR','applicants_certifications/
U601T1655385406.pdf','applicants_certifications','inbound4477302647680720224.pdf','
U601T1655385406.pdf','2022-06-16
13:16:46','2022-06-16 13:16:46',NULL,'601',NULL,NULL),
(1086,601,'TOR','applicants_certifications/
U601T1655385805.pdf','applicants_certifications','inbound4315666783851295008.pdf','
U601T1655385805.pdf','2022-06-16 13:23:25','2022-06-16
13:23:25',NULL,'601',NULL,NULL),(1087,601,'TOR','applicants_certifications/
U601T1655385825.pdf','applicants_certifications','inbound645094709380895059.pdf','U
601T1655385825.pdf','2022-06-16 13:23:45','2022-06-16
13:23:45',NULL,'601',NULL,NULL),(1088,601,'COE','applicants_certifications/
U601T1655386256.pdf','applicants_certifications','inbound1050047917890879858.pdf','
U601T1655386256.pdf','2022-06-16 13:30:56','2022-06-16
13:30:56',NULL,'601',NULL,NULL),(1089,601,'COE','applicants_certifications/
U601T1655386416.pdf','applicants_certifications','inbound7096460678410709938.pdf','
U601T1655386416.pdf','2022-06-16 13:33:36','2022-06-16
13:33:36',NULL,'601',NULL,NULL),(1090,601,'COE','applicants_certifications/
U601T1655386848.pdf','applicants_certifications','inbound6020762687989072343.pdf','
U601T1655386848.pdf','2022-06-16 13:40:48','2022-06-16
13:40:48',NULL,'601',NULL,NULL),(1091,608,'TOR','applicants_certifications/
U608T1655397095.pdf','applicants_certifications','A.TELAN - Transcript of
Records.pdf','U608T1655397095.pdf','2022-06-16 16:31:35','2022-06-16
16:31:35',NULL,'608',NULL,NULL),(1092,608,'SWT','applicants_certifications/
U608T1655397118.pdf','applicants_certifications','A.TELAN - Certificate of
Trainings, Workshops, and Conferences.pdf','U608T1655397118.pdf','2022-06-16
16:31:58','2022-06-16 16:31:58',NULL,'608',NULL,NULL),
(1093,608,'COE','applicants_certifications/
U608T1655397277.pdf','applicants_certifications','A.TELAN - Certificate of
Employment.pdf','U608T1655397277.pdf','2022-06-16 16:34:37','2022-06-16
16:34:37',NULL,'608',NULL,NULL),
(1094,608,'ELIGIBILITY','applicants_certifications/
U608T1655397285.pdf','applicants_certifications','A.TELAN- Certificate of
Eligibility.pdf','U608T1655397285.pdf','2022-06-16 16:34:45','2022-06-16
16:34:45',NULL,'608',NULL,NULL),(1095,632,'TOR','applicants_certifications/
U632T1655437112.pdf','applicants_certifications','FCC.pdf','U632T1655437112.pdf','2
022-06-17 03:38:32','2022-06-17 03:38:32',NULL,'632',NULL,NULL),
(1096,632,'TOR','applicants_certifications/
U632T1655437119.pdf','applicants_certifications','La
Salette.pdf','U632T1655437119.pdf','2022-06-17 03:38:39','2022-06-17
03:38:39',NULL,'632',NULL,NULL),(1097,632,'COE','applicants_certifications/
U632T1655437192.pdf','applicants_certifications','GNCH Certification of
Employment.jpg.pdf','U632T1655437192.pdf','2022-06-17 03:39:52','2022-06-17
03:39:52',NULL,'632',NULL,NULL),(1098,632,'COE','applicants_certifications/
U632T1655437203.pdf','applicants_certifications','MAP
Certification.pdf','U632T1655437203.pdf','2022-06-17 03:40:03','2022-06-17
03:40:03',NULL,'632',NULL,NULL),(1099,632,'COE','applicants_certifications/
U632T1655437208.pdf','applicants_certifications','CEH
Certification.pdf','U632T1655437208.pdf','2022-06-17 03:40:08','2022-06-17
03:40:08',NULL,'632',NULL,NULL),
(1101,632,'ELIGIBILITY','applicants_certifications/
U632T1655437338.pdf','applicants_certifications','ID.pdf','U632T1655437338.pdf','20
22-06-17 03:42:18','2022-06-17 03:42:18',NULL,'632',NULL,NULL),
(1102,637,'COE','applicants_certifications/
U637T1655437426.pdf','applicants_certifications','CERTIFICATE OF
EMPLOYMENT.pdf','U637T1655437426.pdf','2022-06-17 03:43:46','2022-06-17
03:43:46',NULL,'637',NULL,NULL),(1103,637,'TOR','applicants_certifications/
U637T1655437738.pdf','applicants_certifications','TRANSCRIPT OF
RECORDS.pdf','U637T1655437738.pdf','2022-06-17 03:48:58','2022-06-17
03:48:58',NULL,'637',NULL,NULL),(1104,632,'SWT','applicants_certifications/
U632T1655440423.pdf','applicants_certifications','Certififcate of Trainings and
Seminars.pdf','U632T1655440423.pdf','2022-06-17 04:33:43','2022-06-17
04:33:43',NULL,'632',NULL,NULL),
(1105,362,'ELIGIBILITY','applicants_certifications/
U362T1655655534.pdf','applicants_certifications','Eligibility.pdf','U362T1655655534
.pdf','2022-06-19 16:18:54','2022-06-19 16:18:54',NULL,'362',NULL,NULL),
(1106,362,'TOR','applicants_certifications/
U362T1655655641.pdf','applicants_certifications','Transcript.pdf','U362T1655655641.
pdf','2022-06-19 16:20:41','2022-06-19 16:20:41',NULL,'362',NULL,NULL),
(1107,362,'SWT','applicants_certifications/
U362T1655655730.pdf','applicants_certifications','Contract.pdf','U362T1655655730.pd
f','2022-06-19 16:22:10','2022-06-19 16:22:10',NULL,'362',NULL,NULL),
(1111,607,'SWT','applicants_certifications/
U607T1656452595.pdf','applicants_certifications','SEAMEO_MD.ANCHETA_IFSU.pdf','U607
T1656452595.pdf','2022-06-28 21:43:15','2022-06-28 21:43:15',NULL,'607',NULL,NULL),
(1112,607,'SWT','applicants_certifications/
U607T1656452598.pdf','applicants_certifications','AEIRS_MD.ANCHETA_IFSU.pdf','U607T
1656452598.pdf','2022-06-28 21:43:18','2022-06-28 21:43:18',NULL,'607',NULL,NULL),
(1113,641,'SWT','applicants_certifications/
U641T1656653322.pdf','applicants_certifications','Swiss
Certificate.pdf','U641T1656653322.pdf','2022-07-01 05:28:42','2022-07-01
05:28:42',NULL,'641',NULL,NULL),
(1114,641,'ELIGIBILITY','applicants_certifications/
U641T1656653592.pdf','applicants_certifications','PRC
I.D.pdf','U641T1656653592.pdf','2022-07-01 05:33:12','2022-07-01
05:33:12',NULL,'641',NULL,NULL),(1115,641,'SWT','applicants_certifications/
U641T1656655540.pdf','applicants_certifications','Abaca
Production1.pdf','U641T1656655540.pdf','2022-07-01 06:05:40','2022-07-01
06:05:40',NULL,'641',NULL,NULL),(1116,641,'SWT','applicants_certifications/
U641T1656663632.pdf','applicants_certifications','Plant Crops
Training.pdf','U641T1656663632.pdf','2022-07-01 08:20:32','2022-07-01
08:20:32',NULL,'641',NULL,NULL),(1117,641,'SWT','applicants_certifications/
U641T1656663653.pdf','applicants_certifications','Rice Machinery Operation NC
II.pdf','U641T1656663653.pdf','2022-07-01 08:20:53','2022-07-01
08:20:53',NULL,'641',NULL,NULL),(1118,641,'COE','applicants_certifications/
U641T1656717526.pdf','applicants_certifications','Certificate of
Employment1.pdf','U641T1656717526.pdf','2022-07-01 23:18:46','2022-07-01
23:18:46',NULL,'641',NULL,NULL),(1119,643,'COE','applicants_certifications/
U643T1656818522.pdf','applicants_certifications','Certificate of
Employment.pdf','U643T1656818522.pdf','2022-07-03 03:22:02','2022-07-03
03:22:02',NULL,'643',NULL,NULL),
(1120,643,'ELIGIBILITY','applicants_certifications/
U643T1656818573.pdf','applicants_certifications','Prc Certificate of
Passing.pdf','U643T1656818573.pdf','2022-07-03 03:22:53','2022-07-03
03:22:53',NULL,'643',NULL,NULL),(1121,643,'SWT','applicants_certifications/
U643T1656819794.pdf','applicants_certifications','BKKPG
NCIII.pdf','U643T1656819794.pdf','2022-07-03 03:43:14','2022-07-03
03:43:14',NULL,'643',NULL,NULL),(1122,643,'SWT','applicants_certifications/
U643T1656819794.pdf','applicants_certifications','CSS
NCII.pdf','U643T1656819794.pdf','2022-07-03 03:43:14','2022-07-03
03:43:14',NULL,'643',NULL,NULL),(1123,643,'SWT','applicants_certifications/
U643T1656819795.pdf','applicants_certifications','NTTC.pdf','U643T1656819795.pdf','
2022-07-03 03:43:15','2022-07-03 03:43:15',NULL,'643',NULL,NULL),
(1124,643,'SWT','applicants_certifications/
U643T1656819795.pdf','applicants_certifications','TMC.pdf','U643T1656819795.pdf','2
022-07-03 03:43:15','2022-07-03 03:43:15',NULL,'643',NULL,NULL),
(1125,643,'TOR','applicants_certifications/
U643T1656819819.pdf','applicants_certifications','OTR Page
1.pdf','U643T1656819819.pdf','2022-07-03 03:43:39','2022-07-03
03:43:39',NULL,'643',NULL,NULL),(1126,643,'TOR','applicants_certifications/
U643T1656819819.pdf','applicants_certifications','OTR
PG2.pdf','U643T1656819819.pdf','2022-07-03 03:43:39','2022-07-03
03:43:39',NULL,'643',NULL,NULL),(1127,643,'TOR','applicants_certifications/
U643T1656819820.pdf','applicants_certifications','OTR
pg3.pdf','U643T1656819820.pdf','2022-07-03 03:43:40','2022-07-03
03:43:40',NULL,'643',NULL,NULL),(1128,643,'TOR','applicants_certifications/
U643T1656819820.pdf','applicants_certifications','OTR
pg4.pdf','U643T1656819820.pdf','2022-07-03 03:43:40','2022-07-03
03:43:40',NULL,'643',NULL,NULL),(1130,644,'COE','applicants_certifications/
U644T1657076929.pdf','applicants_certifications','CErtificates of
employment.pdf','U644T1657076929.pdf','2022-07-06 03:08:49','2022-07-06
03:08:49',NULL,'644',NULL,NULL),(1132,644,'TOR','applicants_certifications/
U644T1657084968.pdf','applicants_certifications','TOR.pdf','U644T1657084968.pdf','2
022-07-06 05:22:48','2022-07-06 05:22:48',NULL,'644',NULL,NULL),
(1133,644,'SWT','applicants_certifications/
U644T1657085120.pdf','applicants_certifications','certicifates.pdf','U644T165708512
0.pdf','2022-07-06 05:25:20','2022-07-06 05:25:20',NULL,'644',NULL,NULL),
(1134,648,'ELIGIBILITY','applicants_certifications/
U648T1657268085.pdf','applicants_certifications','inbound7681212456623149035.pdf','
U648T1657268085.pdf','2022-07-08 08:14:45','2022-07-08
08:14:45',NULL,'648',NULL,NULL),(1135,648,'SWT','applicants_certifications/
U648T1657268175.pdf','applicants_certifications','inbound3745110677566180279.pdf','
U648T1657268175.pdf','2022-07-08 08:16:15','2022-07-08
08:16:15',NULL,'648',NULL,NULL),(1136,651,'TOR','applicants_certifications/
U651T1657273738.pdf','applicants_certifications','Tor.pdf','U651T1657273738.pdf','2
022-07-08 09:48:58','2022-07-08 09:48:58',NULL,'651',NULL,NULL),
(1137,651,'TOR','applicants_certifications/
U651T1657273804.pdf','applicants_certifications','eligubility.pdf','U651T1657273804
.pdf','2022-07-08 09:50:04','2022-07-08 09:50:04',NULL,'651',NULL,NULL),
(1138,655,'TOR','applicants_certifications/
U655T1657379058.pdf','applicants_certifications','Official Transcript of
Record.pdf','U655T1657379058.pdf','2022-07-09 15:04:18','2022-07-09
15:04:18',NULL,'655',NULL,NULL),
(1139,655,'ELIGIBILITY','applicants_certifications/
U655T1657379228.pdf','applicants_certifications','Certification
of Eligibility - Board Licensure Examination for Professional Teacher
(Verification Details).pdf','U655T1657379228.pdf','2022-07-09 15:07:08','2022-07-09
15:07:08',NULL,'655',NULL,NULL),
(1140,655,'ELIGIBILITY','applicants_certifications/
U655T1657379235.pdf','applicants_certifications','Certification of Eligibility -
CSE (Professional).pdf','U655T1657379235.pdf','2022-07-09 15:07:15','2022-07-09
15:07:15',NULL,'655',NULL,NULL),(1141,655,'SWT','applicants_certifications/
U655T1657379575.pdf','applicants_certifications','2021 INSET FOR SENIOR HIGH SCHOOL
TEACHERS.pdf','U655T1657379575.pdf','2022-07-09 15:12:55','2022-07-09
15:12:55',NULL,'655',NULL,NULL),
(1143,646,'ELIGIBILITY','applicants_certifications/
U646T1657453927.pdf','applicants_certifications','inbound8518585495401533280.pdf','
U646T1657453927.pdf','2022-07-10 11:52:07','2022-07-10
11:52:07',NULL,'646',NULL,NULL),(1145,646,'TOR','applicants_certifications/
U646T1657454324.pdf','applicants_certifications','inbound6768977718562933481.pdf','
U646T1657454324.pdf','2022-07-10 11:58:44','2022-07-10
11:58:44',NULL,'646',NULL,NULL),(1146,646,'TOR','applicants_certifications/
U646T1657454346.pdf','applicants_certifications','inbound1890023321179673471.pdf','
U646T1657454346.pdf','2022-07-10 11:59:06','2022-07-10
11:59:06',NULL,'646',NULL,NULL),(1147,646,'TOR','applicants_certifications/
U646T1657454361.pdf','applicants_certifications','inbound3640700519259843483.pdf','
U646T1657454361.pdf','2022-07-10 11:59:21','2022-07-10
11:59:21',NULL,'646',NULL,NULL),(1149,646,'SWT','applicants_certifications/
U646T1657456965.pdf','applicants_certifications','inbound2523235598601370035.pdf','
U646T1657456965.pdf','2022-07-10 12:42:45','2022-07-10
12:42:45',NULL,'646',NULL,NULL),(1150,646,'SWT','applicants_certifications/
U646T1657456976.pdf','applicants_certifications','inbound5069563555782120962.pdf','
U646T1657456976.pdf','2022-07-10 12:42:56','2022-07-10
12:42:56',NULL,'646',NULL,NULL),
(1151,646,'ELIGIBILITY','applicants_certifications/
U646T1657457134.pdf','applicants_certifications','inbound4538175223645241128.pdf','
U646T1657457134.pdf','2022-07-10 12:45:34','2022-07-10
12:45:34',NULL,'646',NULL,NULL),(1154,660,'TOR','applicants_certifications/
U660T1657689917.pdf','applicants_certifications','inbound8892345568803494492.pdf','
U660T1657689917.pdf','2022-07-13 05:25:17','2022-07-13
05:25:17',NULL,'660',NULL,NULL),(1155,660,'COE','applicants_certifications/
U660T1657690065.pdf','applicants_certifications','inbound1845281191888685588.pdf','
U660T1657690065.pdf','2022-07-13 05:27:45','2022-07-13
05:27:45',NULL,'660',NULL,NULL),(1157,660,'SWT','applicants_certifications/
U660T1657690178.pdf','applicants_certifications','inbound4290775740852122387.pdf','
U660T1657690178.pdf','2022-07-13 05:29:38','2022-07-13
05:29:38',NULL,'660',NULL,NULL),
(1158,660,'ELIGIBILITY','applicants_certifications/
U660T1657690333.pdf','applicants_certifications','inbound5649095201233448814.pdf','
U660T1657690333.pdf','2022-07-13 05:32:13','2022-07-13
05:32:13',NULL,'660',NULL,NULL),
(1159,660,'ELIGIBILITY','applicants_certifications/
U660T1657690376.pdf','applicants_certifications','inbound1567888697377586590.pdf','
U660T1657690376.pdf','2022-07-13 05:32:56','2022-07-13
05:32:56',NULL,'660',NULL,NULL),(1160,646,'COE','applicants_certifications/
U646T1657706992.pdf','applicants_certifications','inbound4188567594545556211.pdf','
U646T1657706992.pdf','2022-07-13 10:09:52','2022-07-13
10:09:52',NULL,'646',NULL,NULL),(1161,662,'COE','applicants_certifications/
U662T1657784312.pdf','applicants_certifications','JSD.pdf','U662T1657784312.pdf','2
022-07-14 07:38:32','2022-07-14 07:38:32',NULL,'662',NULL,NULL),
(1162,662,'SWT','applicants_certifications/
U662T1657786289.pdf','applicants_certifications','2015.pdf','U662T1657786289.pdf','
2022-07-14 08:11:29','2022-07-14 08:11:29',NULL,'662',NULL,NULL),
(1163,662,'SWT','applicants_certifications/
U662T1657786606.pdf','applicants_certifications','june
2021.pdf','U662T1657786606.pdf','2022-07-14 08:16:46','2022-07-14
08:16:46',NULL,'662',NULL,NULL),(1164,662,'SWT','applicants_certifications/
U662T1657786627.pdf','applicants_certifications','Vietnam Pre service 2019-
2021.pdf','U662T1657786627.pdf','2022-07-14 08:17:07','2022-07-14
08:17:07',NULL,'662',NULL,NULL),(1165,662,'SWT','applicants_certifications/
U662T1657786774.pdf','applicants_certifications','2020.pdf','U662T1657786774.pdf','
2022-07-14 08:19:34','2022-07-14 08:19:34',NULL,'662',NULL,NULL),
(1167,662,'TOR','applicants_certifications/
U662T1657787612.pdf','applicants_certifications','TOR
(JD).pdf','U662T1657787612.pdf','2022-07-14 08:33:32','2022-07-14
08:33:32',NULL,'662',NULL,NULL),(1168,595,'TOR','applicants_certifications/
U595T1658454390.pdf','applicants_certifications','CERT OF
GRADES.pdf','U595T1658454390.pdf','2022-07-22 01:46:30','2022-07-22
01:46:30',NULL,'595',NULL,NULL),(1171,664,'COE','applicants_certifications/
U664T1658749749.pdf','applicants_certifications','NMP COE_ Afan,
Cinderella.pdf','U664T1658749749.pdf','2022-07-25 11:49:09','2022-07-25
11:49:09',NULL,'664',NULL,NULL),(1172,664,'TOR','applicants_certifications/
U664T1658804261.pdf','applicants_certifications','httpwww.smu.edu.ph.pdf','U664T165
8804261.pdf','2022-07-26 02:57:41','2022-07-26 02:57:41',NULL,'664',NULL,NULL),
(1173,664,'SWT','applicants_certifications/
U664T1658804753.pdf','applicants_certifications','RECENT-
CERTIFICATES.pdf','U664T1658804753.pdf','2022-07-26 03:05:53','2022-07-26
03:05:53',NULL,'664',NULL,NULL),(1174,664,'TOR','applicants_certifications/
U664T1658805099.pdf','applicants_certifications','(EXEMPTED
FROM.pdf','U664T1658805099.pdf','2022-07-26 03:11:39','2022-07-26
03:11:39',NULL,'664',NULL,NULL),(1175,664,'TOR','applicants_certifications/
U664T1658805863.pdf','applicants_certifications','final-resume-in-
PDS.pdf','U664T1658805863.pdf','2022-07-26 03:24:23','2022-07-26
03:24:23',NULL,'664',NULL,NULL),(1176,664,'TOR','applicants_certifications/
U664T1658806487.pdf','applicants_certifications','LATEST-
RESUME.pdf','U664T1658806487.pdf','2022-07-26 03:34:47','2022-07-26
03:34:47',NULL,'664',NULL,NULL),(1177,664,'TOR','applicants_certifications/
U664T1658807240.pdf','applicants_certifications','final-application-letter-in-
IFSU.pdf','U664T1658807240.pdf','2022-07-26 03:47:20','2022-07-26
03:47:20',NULL,'664',NULL,NULL),
(1178,630,'ELIGIBILITY','applicants_certifications/
U630T1659431730.pdf','applicants_certifications','PRC ID
FRONT.pdf','U630T1659431730.pdf','2022-08-02 09:15:30','2022-08-02
09:15:30',NULL,'630',NULL,NULL),(1179,630,'TOR','applicants_certifications/
U630T1659431829.pdf','applicants_certifications','pdfresizer.com-pdf-
resize.pdf','U630T1659431829.pdf','2022-08-02 09:17:09','2022-08-02
09:17:09',NULL,'630',NULL,NULL),(1180,630,'SWT','applicants_certifications/
U630T1659431905.pdf','applicants_certifications','pdfresizer.com-pdf-resize
(1).pdf','U630T1659431905.pdf','2022-08-02 09:18:25','2022-08-02
09:18:25',NULL,'630',NULL,NULL),(1181,672,'SWT','applicants_certifications/
U672T1661334013.pdf','applicants_certifications','inbound1864324079967805283.pdf','
U672T1661334013.pdf','2022-08-24 09:40:13','2022-08-24
09:40:13',NULL,'672',NULL,NULL),(1182,672,'COE','applicants_certifications/
U672T1661334256.pdf','applicants_certifications','inbound7996000784197876634.pdf','
U672T1661334256.pdf','2022-08-24 09:44:16','2022-08-24
09:44:16',NULL,'672',NULL,NULL),(1183,676,'SWT','applicants_certifications/
U676T1661590993.pdf','applicants_certifications','Certificate of Completion CPD 02
KTS.pdf','U676T1661590993.pdf','2022-08-27 09:03:13','2022-08-27
09:03:13',NULL,'676',NULL,NULL),(1184,676,'SWT','applicants_certifications/
U676T1661591037.pdf','applicants_certifications','Basic
Videography.pdf','U676T1661591037.pdf','2022-08-27 09:03:57','2022-08-27
09:03:57',NULL,'676',NULL,NULL),(1185,676,'SWT','applicants_certifications/
U676T1661591038.pdf','applicants_certifications','Basic
Photography.pdf','U676T1661591038.pdf','2022-08-27 09:03:58','2022-08-27
09:03:58',NULL,'676',NULL,NULL),(1186,676,'SWT','applicants_certifications/
U676T1661591039.pdf','applicants_certifications','Blended Learning Using Google
Classroom .pdf','U676T1661591039.pdf','2022-08-27 09:03:59','2022-08-27
09:03:59',NULL,'676',NULL,NULL),(1187,676,'SWT','applicants_certifications/
U676T1661591040.pdf','applicants_certifications','Content Development in
Education_Gamification.pdf','U676T1661591040.pdf','2022-08-27 09:04:00','2022-08-27
09:04:00',NULL,'676',NULL,NULL),(1188,676,'SWT','applicants_certifications/
U676T1661591040.pdf','applicants_certifications','Coping with COVID 19_A Pandemic
through a Girl\'s Eyes.pdf','U676T1661591040.pdf','2022-08-27 09:04:00','2022-08-27
09:04:00',NULL,'676',NULL,NULL),(1189,676,'SWT','applicants_certifications/
U676T1661591044.pdf','applicants_certifications','High Impact Teaching in the
Digital Era_An International Online Training Program_Educaiton in the Virtual
Environment.pdf','U676T1661591044.pdf','2022-08-27 09:04:04','2022-08-27
09:04:04',NULL,'676',NULL,NULL),(1190,676,'SWT','applicants_certifications/
U676T1661591045.pdf','applicants_certifications','Engaging Learners to An Effective
and Collaborative Open Distance Learning.pdf','U676T1661591045.pdf','2022-08-27
09:04:05','2022-08-27 09:04:05',NULL,'676',NULL,NULL),
(1191,676,'SWT','applicants_certifications/
U676T1661591046.pdf','applicants_certifications','How Technology Supersedes the New
Normal .pdf','U676T1661591046.pdf','2022-08-27 09:04:06','2022-08-27
09:04:06',NULL,'676',NULL,NULL),(1192,676,'SWT','applicants_certifications/
U676T1661591047.pdf','applicants_certifications','Modern Parenting_Coping Up with
the New Normal.pdf','U676T1661591047.pdf','2022-08-27 09:04:07','2022-08-27
09:04:07',NULL,'676',NULL,NULL),(1193,676,'SWT','applicants_certifications/
U676T1661591050.pdf','applicants_certifications','Retooling For Distance Learning
Subject Specific Tools, Approaches and Strategies for Distance
Learning.pdf','U676T1661591050.pdf','2022-08-27
09:04:10','2022-08-27 09:04:10',NULL,'676',NULL,NULL),
(1194,676,'SWT','applicants_certifications/
U676T1661591050.pdf','applicants_certifications','Open Distance Education _Bridging
the Gap in Education in the New Normal.pdf','U676T1661591050.pdf','2022-08-27
09:04:10','2022-08-27 09:04:10',NULL,'676',NULL,NULL),
(1195,676,'SWT','applicants_certifications/
U676T1661591051.pdf','applicants_certifications','Skills Training Seris_Canva 101
and Principles of Design.pdf','U676T1661591051.pdf','2022-08-27 09:04:11','2022-08-
27 09:04:11',NULL,'676',NULL,NULL),(1196,676,'SWT','applicants_certifications/
U676T1661591051.pdf','applicants_certifications','Strategies and Techniques to
Improve Academic Outcomes of Children with ADHD
Certificate.pdf','U676T1661591051.pdf','2022-08-27 09:04:11','2022-08-27
09:04:11',NULL,'676',NULL,NULL),(1197,676,'SWT','applicants_certifications/
U676T1661591053.pdf','applicants_certifications','Web03AAIGSummit2021.pdf','U676T16
61591053.pdf','2022-08-27 09:04:13','2022-08-27 09:04:13',NULL,'676',NULL,NULL),
(1198,676,'SWT','applicants_certifications/
U676T1661591053.pdf','applicants_certifications','Writing the Classroom
4_DLSU.pdf','U676T1661591053.pdf','2022-08-27 09:04:13','2022-08-27
09:04:13',NULL,'676',NULL,NULL),(1199,676,'PDS','applicants_certifications/
U676T1661591333.pdf','applicants_certifications','Reinabelle Castro_CS FORM
212.pdf','U676T1661591333.pdf','2022-08-27 09:08:53','2022-08-27
09:08:53',NULL,'676',NULL,NULL),(1200,676,'TOR','applicants_certifications/
U676T1661591686.pdf','applicants_certifications','TOR and
Diploma.pdf','U676T1661591686.pdf','2022-08-27 09:14:46','2022-08-27
09:14:46',NULL,'676',NULL,NULL),(1201,676,'COE','applicants_certifications/
U676T1661591704.pdf','applicants_certifications','Work
Records.pdf','U676T1661591704.pdf','2022-08-27 09:15:04','2022-08-27
09:15:04',NULL,'676',NULL,NULL),
(1202,676,'ELIGIBILITY','applicants_certifications/
U676T1661591879.pdf','applicants_certifications','License and PRC
Rating.pdf','U676T1661591879.pdf','2022-08-27 09:17:59','2022-08-27
09:18:00',NULL,'676',NULL,NULL),(1203,632,'PDS','applicants_certifications/
U632T1661826666.xlsx','applicants_certifications','CS Form No 212 Irma Damoyan
2022.xlsx','U632T1661826666.xlsx','2022-08-30 02:31:06','2022-08-30
02:31:06',NULL,'632',NULL,NULL),(1204,678,'TOR','applicants_certifications/
U678T1661949160.pdf','applicants_certifications','Transcript of
Records.pdf','U678T1661949160.pdf','2022-08-31 12:32:40','2022-08-31
12:32:40',NULL,'678',NULL,NULL),(1205,678,'COE','applicants_certifications/
U678T1661949217.pdf','applicants_certifications','COE- Cadang, Krizzha
Angel.pdf','U678T1661949217.pdf','2022-08-31 12:33:37','2022-08-31
12:33:37',NULL,'678',NULL,NULL),(1206,678,'SWT','applicants_certifications/
U678T1661949243.pdf','applicants_certifications','Copy of
Certificates.pdf','U678T1661949243.pdf','2022-08-31 12:34:03','2022-08-31
12:34:03',NULL,'678',NULL,NULL),
(1207,678,'ELIGIBILITY','applicants_certifications/
U678T1661949265.pdf','applicants_certifications','PRC
ID.pdf','U678T1661949265.pdf','2022-08-31 12:34:25','2022-08-31
12:34:25',NULL,'678',NULL,NULL),(1208,678,'PDS','applicants_certifications/
U678T1661949489.pdf','applicants_certifications','Personal Data
Sheet.pdf','U678T1661949489.pdf','2022-08-31 12:38:09','2022-08-31
12:38:09',NULL,'678',NULL,NULL),(1214,677,'SWT','applicants_certifications/
U677T1661992879.pdf','applicants_certifications','6th PASOA North Luzon
Convention_angelica bahol.pdf','U677T1661992879.pdf','2022-09-01 00:41:19','2022-
09-01 00:41:19',NULL,'677',NULL,NULL),(1215,677,'SWT','applicants_certifications/
U677T1661992888.pdf','applicants_certifications','Environmental Conservation is the
Conversation_angelica bahol.pdf','U677T1661992888.pdf','2022-09-01 00:41:28','2022-
09-01 00:41:28',NULL,'677',NULL,NULL),(1216,677,'SWT','applicants_certifications/
U677T1661992902.pdf','applicants_certifications','Marian Student Leaders Mentally
Prepared for the Pandemic_angelica bahol.pdf','U677T1661992902.pdf','2022-09-01
00:41:42','2022-09-01 00:41:42',NULL,'677',NULL,NULL),
(1217,677,'SWT','applicants_certifications/
U677T1661992908.pdf','applicants_certifications','Online Learning
Application_angelica bahol.pdf','U677T1661992908.pdf','2022-09-01 00:41:48','2022-
09-01 00:41:48',NULL,'677',NULL,NULL),(1218,677,'SWT','applicants_certifications/
U677T1661992934.pdf','applicants_certifications','stenography_angelica
bahol.pdf','U677T1661992934.pdf','2022-09-01 00:42:14','2022-09-01
00:42:14',NULL,'677',NULL,NULL),(1219,677,'SWT','applicants_certifications/
U677T1661992934.pdf','applicants_certifications','Sandali Stress Management and
Time Management_angelica bahol.pdf','U677T1661992934.pdf','2022-09-01
00:42:14','2022-09-01 00:42:14',NULL,'677',NULL,NULL),
(1220,677,'SWT','applicants_certifications/
U677T1661992935.pdf','applicants_certifications','the safety seal_angelica
bahol.pdf','U677T1661992935.pdf','2022-09-01 00:42:15','2022-09-01
00:42:15',NULL,'677',NULL,NULL),(1221,677,'SWT','applicants_certifications/
U677T1661992936.pdf','applicants_certifications','When and How to File Legal Cases
in Court_angelica bahol.pdf','U677T1661992936.pdf','2022-09-01 00:42:16','2022-09-
01 00:42:16',NULL,'677',NULL,NULL),(1226,677,'SWT','applicants_certifications/
U677T1661994037.pdf','applicants_certifications','Additional cert._angelica
bahol.pdf','U677T1661994037.pdf','2022-09-01 01:00:37','2022-09-01
01:00:37',NULL,'677',NULL,NULL),(1227,677,'PDS','applicants_certifications/
U677T1661994087.pdf','applicants_certifications','PDS_angelica
bahol.pdf','U677T1661994087.pdf','2022-09-01 01:01:27','2022-09-01
01:01:27',NULL,'677',NULL,NULL),(1228,677,'TOR','applicants_certifications/
U677T1661994171.pdf','applicants_certifications','TOR_angelica
bahol.pdf','U677T1661994171.pdf','2022-09-01 01:02:51','2022-09-01
01:02:51',NULL,'677',NULL,NULL),(1229,594,'TOR','applicants_certifications/
U594T1662549607.pdf','applicants_certifications','Certificate of
Graduation.pdf','U594T1662549607.pdf','2022-09-07 11:20:07','2022-09-07
11:20:07',NULL,'594',NULL,NULL),(1230,625,'PDS','applicants_certifications/
U625T1664571925.pdf','applicants_certifications','CS Form No. 212 Personal Data
Sheet revised.pdf','U625T1664571925.pdf','2022-09-30 21:05:25','2022-09-30
21:05:25',NULL,'625',NULL,NULL),(1232,625,'COE','applicants_certifications/
U625T1664572866.pdf','applicants_certifications','SPAL
COE.pdf','U625T1664572866.pdf','2022-09-30 21:21:06','2022-09-30
21:21:06',NULL,'625',NULL,NULL),
(1233,625,'ELIGIBILITY','applicants_certifications/
U625T1664572916.pdf','applicants_certifications','CERT.pdf','U625T1664572916.pdf','
2022-09-30 21:21:56','2022-09-30 21:21:56',NULL,'625',NULL,NULL),
(1234,625,'SWT','applicants_certifications/
U625T1664573591.pdf','applicants_certifications','Document1.pdf','U625T1664573591.p
df','2022-09-30 21:33:11','2022-09-30 21:33:11',NULL,'625',NULL,NULL),
(1235,625,'SWT','applicants_certifications/
U625T1664573730.pdf','applicants_certifications','MOLAVE
2.pdf','U625T1664573730.pdf','2022-09-30 21:35:30','2022-09-30
21:35:30',NULL,'625',NULL,NULL),(1236,625,'SWT','applicants_certifications/
U625T1664573764.pdf','applicants_certifications','MOLAVE
1.pdf','U625T1664573764.pdf','2022-09-30 21:36:04','2022-09-30
21:36:04',NULL,'625',NULL,NULL),(1237,625,'COE','applicants_certifications/
U625T1664574363.pdf','applicants_certifications','DILG COE
(1).pdf','U625T1664574363.pdf','2022-09-30 21:46:03','2022-09-30
21:46:03',NULL,'625',NULL,NULL),(1238,625,'TOR','applicants_certifications/
U625T1664655108.pdf','applicants_certifications','TOR PAGE
1.pdf','U625T1664655108.pdf','2022-10-01 20:11:48','2022-10-01
20:11:48',NULL,'625',NULL,NULL),(1239,625,'TOR','applicants_certifications/
U625T1664655117.pdf','applicants_certifications','TOR PAGE 1 - Page
2.pdf','U625T1664655117.pdf','2022-10-01 20:11:57','2022-10-01
20:11:57',NULL,'625',NULL,NULL),(1240,625,'TOR','applicants_certifications/
U625T1664655125.pdf','applicants_certifications','TOR PAGE 1 - Page
3.pdf','U625T1664655125.pdf','2022-10-01 20:12:05','2022-10-01
20:12:05',NULL,'625',NULL,NULL),(1241,625,'TOR','applicants_certifications/
U625T1664655132.pdf','applicants_certifications','TOR PAGE 1 - Page
4.pdf','U625T1664655132.pdf','2022-10-01 20:12:12','2022-10-01
20:12:12',NULL,'625',NULL,NULL),(1242,688,'TOR','applicants_certifications/
U688T1665407766.pdf','applicants_certifications','Transcript of Records
MA.pdf','U688T1665407766.pdf','2022-10-10 13:16:06','2022-10-10
13:16:06',NULL,'688',NULL,NULL),
(1243,688,'ELIGIBILITY','applicants_certifications/
U688T1665407803.pdf','applicants_certifications','Professional-Regulation-
Commission.pdf','U688T1665407803.pdf','2022-10-10 13:16:43','2022-10-10
13:16:43',NULL,'688',NULL,NULL),(1244,688,'PDS','applicants_certifications/
U688T1665407878.xlsx','applicants_certifications','Ulla PDS-
2017.xlsx','U688T1665407878.xlsx','2022-10-10 13:17:58','2022-10-10
13:17:58',NULL,'688',NULL,NULL),(1245,688,'SWT','applicants_certifications/
U688T1665407951.pdf','applicants_certifications','Certificate-of-for-the-
Speaker.pdf','U688T1665407951.pdf','2022-10-10 13:19:11','2022-10-10
13:19:11',NULL,'688',NULL,NULL),
(1249,689,'ELIGIBILITY','applicants_certifications/
U689T1665420511.pdf','applicants_certifications','inbound1251200350930865927.pdf','
U689T1665420511.pdf','2022-10-10 16:48:31','2022-10-10
16:48:31',NULL,'689',NULL,NULL),(1253,690,'TOR','applicants_certifications/
U690T1665489565.pdf','applicants_certifications','inbound4889575039727725302.pdf','
U690T1665489565.pdf','2022-10-11 11:59:25','2022-10-11
11:59:25',NULL,'690',NULL,NULL),(1254,690,'COE','applicants_certifications/
U690T1665489584.pdf','applicants_certifications','inbound2537385621983741919.pdf','
U690T1665489584.pdf','2022-10-11 11:59:44','2022-10-11
11:59:44',NULL,'690',NULL,NULL),(1255,690,'SWT','applicants_certifications/
U690T1665489610.pdf','applicants_certifications','inbound5584842807015252001.pdf','
U690T1665489610.pdf','2022-10-11
12:00:10','2022-10-11 12:00:10',NULL,'690',NULL,NULL),
(1256,690,'PDS','applicants_certifications/
U690T1665489866.pdf','applicants_certifications','inbound6719615719244818484.pdf','
U690T1665489866.pdf','2022-10-11 12:04:26','2022-10-11
12:04:26',NULL,'690',NULL,NULL),(1257,689,'TOR','applicants_certifications/
U689T1665500065.pdf','applicants_certifications','Juliet Scholastic
Record.pdf','U689T1665500065.pdf','2022-10-11 14:54:25','2022-10-11
14:54:25',NULL,'689',NULL,NULL),(1258,689,'SWT','applicants_certifications/
U689T1665500130.pdf','applicants_certifications','HR Approach Seminar
cert.pdf','U689T1665500130.pdf','2022-10-11 14:55:30','2022-10-11
14:55:30',NULL,'689',NULL,NULL),(1259,689,'PDS','applicants_certifications/
U689T1665500169.pdf','applicants_certifications','Agamas, Juliet B PDS
only.pdf','U689T1665500169.pdf','2022-10-11 14:56:09','2022-10-11
14:56:09',NULL,'689',NULL,NULL),(1260,689,'SWT','applicants_certifications/
U689T1665500216.pdf','applicants_certifications','CERTIFICATE OF TRAININGS AND
SEMINARS.pdf','U689T1665500216.pdf','2022-10-11 14:56:56','2022-10-11
14:56:56',NULL,'689',NULL,NULL),(1261,689,'SWT','applicants_certifications/
U689T1665500236.pdf','applicants_certifications','Agamas JB
cert2.pdf','U689T1665500236.pdf','2022-10-11 14:57:16','2022-10-11
14:57:16',NULL,'689',NULL,NULL),(1262,689,'PDS','applicants_certifications/
U689T1665500326.pdf','applicants_certifications','Agamas, Juliet B CV
Resume .pdf','U689T1665500326.pdf','2022-10-11 14:58:46','2022-10-11
14:58:46',NULL,'689',NULL,NULL),(1264,699,'TOR','applicants_certifications/
U699T1665544560.pdf','applicants_certifications','TOR.pdf','U699T1665544560.pdf','2
022-10-12 03:16:00','2022-10-12 03:16:00',NULL,'699',NULL,NULL),
(1266,699,'COE','applicants_certifications/
U699T1665544853.pdf','applicants_certifications','Certificate of
employment.docx.pdf','U699T1665544853.pdf','2022-10-12 03:20:53','2022-10-12
03:20:53',NULL,'699',NULL,NULL),
(1267,699,'ELIGIBILITY','applicants_certifications/
U699T1665545459.pdf','applicants_certifications','ELIGIBILITY.pdf','U699T1665545459
.pdf','2022-10-12 03:30:59','2022-10-12 03:30:59',NULL,'699',NULL,NULL),
(1269,700,'TOR','applicants_certifications/
U700T1665554634.pdf','applicants_certifications','inbound180515336017870443.pdf','U
700T1665554634.pdf','2022-10-12 06:03:54','2022-10-12
06:03:54',NULL,'700',NULL,NULL),(1270,700,'COE','applicants_certifications/
U700T1665554656.pdf','applicants_certifications','inbound1013873082257246845.pdf','
U700T1665554656.pdf','2022-10-12 06:04:16','2022-10-12
06:04:16',NULL,'700',NULL,NULL),
(1271,700,'ELIGIBILITY','applicants_certifications/
U700T1665554721.pdf','applicants_certifications','inbound4027851951035453731.pdf','
U700T1665554721.pdf','2022-10-12 06:05:21','2022-10-12
06:05:21',NULL,'700',NULL,NULL),(1272,700,'PDS','applicants_certifications/
U700T1665554745.pdf','applicants_certifications','inbound1240865045794400423.pdf','
U700T1665554745.pdf','2022-10-12 06:05:45','2022-10-12
06:05:45',NULL,'700',NULL,NULL),(1273,700,'SWT','applicants_certifications/
U700T1665555021.pdf','applicants_certifications','inbound1042547421842214281.pdf','
U700T1665555021.pdf','2022-10-12 06:10:21','2022-10-12
06:10:21',NULL,'700',NULL,NULL),(1274,700,'SWT','applicants_certifications/
U700T1665555031.pdf','applicants_certifications','inbound7662266469062623760.pdf','
U700T1665555031.pdf','2022-10-12 06:10:31','2022-10-12
06:10:31',NULL,'700',NULL,NULL),(1277,703,'COE','applicants_certifications/
U703T1665576401.pdf','applicants_certifications','Certificate of
Employment_DILG.pdf','U703T1665576401.pdf','2022-10-12 12:06:41','2022-10-12
12:06:41',NULL,'703',NULL,NULL),
(1278,703,'ELIGIBILITY','applicants_certifications/
U703T1665576438.pdf','applicants_certifications','PRC
ID.pdf','U703T1665576438.pdf','2022-10-12 12:07:18','2022-10-12
12:07:18',NULL,'703',NULL,NULL),(1283,703,'TOR','applicants_certifications/
U703T1665576863.pdf','applicants_certifications','Transciprt of
Records.pdf','U703T1665576863.pdf','2022-10-12 12:14:23','2022-10-12
12:14:23',NULL,'703',NULL,NULL),
(1284,705,'ELIGIBILITY','applicants_certifications/
U705T1665615763.pdf','applicants_certifications','Eligibility_VILLEGAS 09-Sep-2022
12-27-34.pdf','U705T1665615763.pdf','2022-10-12 23:02:43','2022-10-12
23:02:43',NULL,'705',NULL,NULL),(1285,697,'PDS','applicants_certifications/
U697T1665643258.xlsx','applicants_certifications','CS Form No. 212 Personal Data
Sheet revised.xlsx','U697T1665643258.xlsx','2022-10-13 06:40:58','2022-10-13
06:40:58',NULL,'697',NULL,NULL),(1286,710,'TOR','applicants_certifications/
U710T1665712033.pdf','applicants_certifications','inbound281693039854256137.pdf','U
710T1665712033.pdf','2022-10-14 01:47:13','2022-10-14
01:47:13',NULL,'710',NULL,NULL),(1287,710,'COE','applicants_certifications/
U710T1665712074.pdf','applicants_certifications','inbound2258309336533654873.pdf','
U710T1665712074.pdf','2022-10-14 01:47:54','2022-10-14
01:47:54',NULL,'710',NULL,NULL),(1288,710,'SWT','applicants_certifications/
U710T1665712092.pdf','applicants_certifications','inbound2019885795497993802.pdf','
U710T1665712092.pdf','2022-10-14 01:48:12','2022-10-14
01:48:12',NULL,'710',NULL,NULL),(1289,710,'PDS','applicants_certifications/
U710T1665712122.pdf','applicants_certifications','inbound7884046415337708712.pdf','
U710T1665712122.pdf','2022-10-14 01:48:42','2022-10-14
01:48:42',NULL,'710',NULL,NULL),(1290,697,'TOR','applicants_certifications/
U697T1665713919.pdf','applicants_certifications','MY
TOR.pdf','U697T1665713919.pdf','2022-10-14 02:18:39','2022-10-14
02:18:39',NULL,'697',NULL,NULL),
(1291,697,'ELIGIBILITY','applicants_certifications/
U697T1665714146.pdf','applicants_certifications','authenticated PRC
License.pdf','U697T1665714146.pdf','2022-10-14 02:22:26','2022-10-14
02:22:26',NULL,'697',NULL,NULL),(1292,697,'SWT','applicants_certifications/
U697T1665714684.pdf','applicants_certifications','1 Nvsu
certificate.pdf','U697T1665714684.pdf','2022-10-14 02:31:24','2022-10-14
02:31:24',NULL,'697',NULL,NULL),(1293,697,'SWT','applicants_certifications/
U697T1665714706.pdf','applicants_certifications','2 NCII in
BPP.pdf','U697T1665714706.pdf','2022-10-14 02:31:46','2022-10-14
02:31:46',NULL,'697',NULL,NULL),(1294,697,'SWT','applicants_certifications/
U697T1665714715.pdf','applicants_certifications','3 ifsu for integration and
excellency.pdf','U697T1665714715.pdf','2022-10-14 02:31:55','2022-10-14
02:31:55',NULL,'697',NULL,NULL),(1295,697,'SWT','applicants_certifications/
U697T1665714723.pdf','applicants_certifications','4 leadership
training.pdf','U697T1665714723.pdf','2022-10-14 02:32:03','2022-10-14
02:32:03',NULL,'697',NULL,NULL),(1296,697,'SWT','applicants_certifications/
U697T1665714727.pdf','applicants_certifications','5 youth
assembly.pdf','U697T1665714727.pdf','2022-10-14 02:32:07','2022-10-14
02:32:07',NULL,'697',NULL,NULL),(1297,697,'SWT','applicants_certifications/
U697T1665714737.pdf','applicants_certifications','6 NCII in Food
Processing.pdf','U697T1665714737.pdf','2022-10-14 02:32:17','2022-10-14
02:32:17',NULL,'697',NULL,NULL),(1298,697,'SWT','applicants_certifications/
U697T1665714747.pdf','applicants_certifications','7 red
cross.pdf','U697T1665714747.pdf','2022-10-14 02:32:27','2022-10-14
02:32:27',NULL,'697',NULL,NULL),(1299,697,'SWT','applicants_certifications/
U697T1665714756.pdf','applicants_certifications','sk kagawad
oatg.pdf','U697T1665714756.pdf','2022-10-14 02:32:36','2022-10-14
02:32:36',NULL,'697',NULL,NULL),(1300,697,'SWT','applicants_certifications/
U697T1665714762.pdf','applicants_certifications','sk chair
oath.pdf','U697T1665714762.pdf','2022-10-14 02:32:42','2022-10-14
02:32:42',NULL,'697',NULL,NULL),(1301,705,'TOR','applicants_certifications/
U705T1665716724.pdf','applicants_certifications','Transcript of
Records_Villegas.pdf','U705T1665716724.pdf','2022-10-14 03:05:24','2022-10-14
03:05:24',NULL,'705',NULL,NULL),(1302,705,'PDS','applicants_certifications/
U705T1665717029.pdf','applicants_certifications','PDS_VILLEGAS.pdf','U705T166571702
9.pdf','2022-10-14 03:10:29','2022-10-14 03:10:29',NULL,'705',NULL,NULL),
(1307,710,'ELIGIBILITY','applicants_certifications/
U710T1665732845.pdf','applicants_certifications','inbound2181270468254550050.pdf','
U710T1665732845.pdf','2022-10-14 07:34:05','2022-10-14
07:34:05',NULL,'710',NULL,NULL),(1309,713,'TOR','applicants_certifications/
U713T1665732860.pdf','applicants_certifications','Transcript of
Record.pdf','U713T1665732860.pdf','2022-10-14 07:34:20','2022-10-14
07:34:20',NULL,'713',NULL,NULL),(1310,713,'SWT','applicants_certifications/
U713T1665732891.pdf','applicants_certifications','Maitang,
Nalyn .pdf','U713T1665732891.pdf','2022-10-14 07:34:51','2022-10-14
07:34:51',NULL,'713',NULL,NULL),
(1311,713,'ELIGIBILITY','applicants_certifications/
U713T1665732924.pdf','applicants_certifications','Certification of Eligibility-
Nalyn Maitang.pdf','U713T1665732924.pdf','2022-10-14 07:35:24','2022-10-14
07:35:24',NULL,'713',NULL,NULL),(1312,713,'PDS','applicants_certifications/
U713T1665732956.pdf','applicants_certifications','personal data
sheet.pdf','U713T1665732956.pdf','2022-10-14 07:35:56','2022-10-14
07:35:56',NULL,'713',NULL,NULL),(1313,715,'TOR','applicants_certifications/
U715T1665908798.pdf','applicants_certifications','TOR - College
BSA.pdf','U715T1665908798.pdf','2022-10-16 08:26:38','2022-10-16
08:26:38',NULL,'715',NULL,NULL),
(1316,715,'ELIGIBILITY','applicants_certifications/
U715T1665908974.pdf','applicants_certifications','CS Cert of
Eligibility.pdf','U715T1665908974.pdf','2022-10-16 08:29:34','2022-10-16
08:29:34',NULL,'715',NULL,NULL),(1319,699,'PDS','applicants_certifications/
U699T1665968084.pdf','applicants_certifications','PDS.pdf','U699T1665968084.pdf','2
022-10-17 00:54:44','2022-10-17 00:54:44',NULL,'699',NULL,NULL),
(1326,716,'ELIGIBILITY','applicants_certifications/
U716T1665975839.pdf','applicants_certifications','Eligibility.pdf','U716T1665975839
.pdf','2022-10-17
03:03:59','2022-10-17 03:03:59',NULL,'716',NULL,NULL),
(1327,716,'TOR','applicants_certifications/
U716T1665975903.pdf','applicants_certifications','Transcript of
Records.pdf','U716T1665975903.pdf','2022-10-17 03:05:03','2022-10-17
03:05:03',NULL,'716',NULL,NULL),(1328,715,'COE','applicants_certifications/
U715T1665976483.pdf','applicants_certifications','COE.pdf','U715T1665976483.pdf','2
022-10-17 03:14:43','2022-10-17 03:14:43',NULL,'715',NULL,NULL),
(1329,715,'PDS','applicants_certifications/
U715T1665976518.pdf','applicants_certifications','PDS.pdf','U715T1665976518.pdf','2
022-10-17 03:15:18','2022-10-17 03:15:18',NULL,'715',NULL,NULL),
(1330,715,'SWT','applicants_certifications/
U715T1665976553.pdf','applicants_certifications','Cert of
Trainings.pdf','U715T1665976553.pdf','2022-10-17 03:15:53','2022-10-17
03:15:53',NULL,'715',NULL,NULL),(1331,715,'TOR','applicants_certifications/
U715T1665976651.pdf','applicants_certifications','TOR
MBA.pdf','U715T1665976651.pdf','2022-10-17 03:17:31','2022-10-17
03:17:31',NULL,'715',NULL,NULL),(1332,718,'PDS','applicants_certifications/
U718T1666018739.xlsx','applicants_certifications','PDS_2022-JOJO
TARUN.xlsx','U718T1666018739.xlsx','2022-10-17 14:58:59','2022-10-17
14:58:59',NULL,'718',NULL,NULL),(1333,718,'SWT','applicants_certifications/
U718T1666019885.pdf','applicants_certifications','img005.pdf','U718T1666019885.pdf'
,'2022-10-17 15:18:05','2022-10-17 15:18:05',NULL,'718',NULL,NULL),
(1334,718,'SWT','applicants_certifications/
U718T1666019910.pdf','applicants_certifications','img006.pdf','U718T1666019910.pdf'
,'2022-10-17 15:18:30','2022-10-17 15:18:30',NULL,'718',NULL,NULL),
(1335,718,'SWT','applicants_certifications/
U718T1666019929.pdf','applicants_certifications','img007.pdf','U718T1666019929.pdf'
,'2022-10-17 15:18:49','2022-10-17 15:18:49',NULL,'718',NULL,NULL),
(1336,718,'SWT','applicants_certifications/
U718T1666019942.pdf','applicants_certifications','img008.pdf','U718T1666019942.pdf'
,'2022-10-17 15:19:02','2022-10-17 15:19:02',NULL,'718',NULL,NULL),
(1337,718,'SWT','applicants_certifications/
U718T1666020029.pdf','applicants_certifications','img009.pdf','U718T1666020029.pdf'
,'2022-10-17 15:20:29','2022-10-17 15:20:29',NULL,'718',NULL,NULL),
(1338,718,'SWT','applicants_certifications/
U718T1666020037.pdf','applicants_certifications','img010.pdf','U718T1666020037.pdf'
,'2022-10-17 15:20:37','2022-10-17 15:20:37',NULL,'718',NULL,NULL),
(1339,718,'SWT','applicants_certifications/
U718T1666020046.pdf','applicants_certifications','img011.pdf','U718T1666020046.pdf'
,'2022-10-17 15:20:46','2022-10-17 15:20:46',NULL,'718',NULL,NULL),
(1340,718,'COE','applicants_certifications/
U718T1666021221.pdf','applicants_certifications','SERVICE
RECORD.pdf','U718T1666021221.pdf','2022-10-17 15:38:52','2022-10-17
15:40:21',NULL,'718','718',NULL),(1341,718,'TOR','applicants_certifications/
U718T1666021523.pdf','applicants_certifications','COLLEGE
TOR.pdf','U718T1666021523.pdf','2022-10-17 15:45:23','2022-10-17
15:45:23',NULL,'718',NULL,NULL),(1342,718,'TOR','applicants_certifications/
U718T1666021632.pdf','applicants_certifications','JURIS DOCTOR
TOR.pdf','U718T1666021632.pdf','2022-10-17 15:47:12','2022-10-17
15:47:12',NULL,'718',NULL,NULL),(1343,718,'TOR','applicants_certifications/
U718T1666021718.pdf','applicants_certifications','MAED
TOR.pdf','U718T1666021718.pdf','2022-10-17 15:48:38','2022-10-17
15:48:38',NULL,'718',NULL,NULL),
(1344,718,'ELIGIBILITY','applicants_certifications/
U718T1666022275.pdf','applicants_certifications','LET.pdf','U718T1666022275.pdf','2
022-10-17 15:57:55','2022-10-17 15:57:55',NULL,'718',NULL,NULL),
(1345,718,'ELIGIBILITY','applicants_certifications/
U718T1666022278.pdf','applicants_certifications','BAR.pdf','U718T1666022278.pdf','2
022-10-17 15:57:58','2022-10-17 15:57:58',NULL,'718',NULL,NULL),
(1346,717,'TOR','applicants_certifications/
U717T1666088548.pdf','applicants_certifications','OFFICIAL TRANSCRIPT OF RECORDS -
MBA.pdf','U717T1666088548.pdf','2022-10-18 10:22:28','2022-10-18
10:22:28',NULL,'717',NULL,NULL),(1347,717,'TOR','applicants_certifications/
U717T1666088549.pdf','applicants_certifications','OFFICIAL TRANSCRIPT OF RECORDS -
BS COMMERCE.pdf','U717T1666088549.pdf','2022-10-18 10:22:29','2022-10-18
10:22:29',NULL,'717',NULL,NULL),(1348,717,'COE','applicants_certifications/
U717T1666088616.pdf','applicants_certifications','CERTIFICATE OF
EMPLOYMENT.pdf','U717T1666088616.pdf','2022-10-18 10:23:36','2022-10-18
10:23:36',NULL,'717',NULL,NULL),(1351,717,'SWT','applicants_certifications/
U717T1666088661.pdf','applicants_certifications','2001, jUNE 22 - LAWS RULES ON
GOVERNMENT EXPENDITURE.pdf','U717T1666088661.pdf','2022-10-18 10:24:21','2022-10-18
10:24:21',NULL,'717',NULL,NULL),(1352,717,'SWT','applicants_certifications/
U717T1666088661.pdf','applicants_certifications','2002, MARCH 8 - NEW GOVT ACCNT
SYSTEM - MARCH 8, 2002.pdf','U717T1666088661.pdf','2022-10-18 10:24:21','2022-10-18
10:24:21',NULL,'717',NULL,NULL),(1353,717,'SWT','applicants_certifications/
U717T1666088662.pdf','applicants_certifications','2007 JULY 26 - ADMINISTRATIVE
DISCIPLINE.pdf','U717T1666088662.pdf','2022-10-18 10:24:22','2022-10-18
10:24:22',NULL,'717',NULL,NULL),(1354,717,'SWT','applicants_certifications/
U717T1666088662.pdf','applicants_certifications','2013 NOVEMBER - INTERNAL CONTROL
STRUCTURE.pdf','U717T1666088662.pdf','2022-10-18 10:24:22','2022-10-18
10:24:22',NULL,'717',NULL,NULL),(1357,717,'SWT','applicants_certifications/
U717T1666088664.pdf','applicants_certifications','2015 FEBRUARY 24-25 - RESEARCH
PROPOSAL WRITESHOP.pdf','U717T1666088664.pdf','2022-10-18 10:24:24','2022-10-18
10:24:24',NULL,'717',NULL,NULL),(1358,717,'SWT','applicants_certifications/
U717T1666088664.pdf','applicants_certifications','2015 MARCH 17-20 - 7th ANNUAL
CONVENTION OF EFUC, INC..pdf','U717T1666088664.pdf','2022-10-18 10:24:24','2022-10-
18 10:24:24',NULL,'717',NULL,NULL),(1359,717,'SWT','applicants_certifications/
U717T1666089057.pdf','applicants_certifications','2016 MAY 11-13 -ACCOUNTING AND
AUDITING STANDARDS.pdf','U717T1666089057.pdf','2022-10-18 10:30:57','2022-10-18
10:30:57',NULL,'717',NULL,NULL),(1360,717,'SWT','applicants_certifications/
U717T1666089057.pdf','applicants_certifications','2015 MARCH 17-20 - 7th ANNUAL
CONVENTION OF EFUC, INC..pdf','U717T1666089057.pdf','2022-10-18 10:30:57','2022-10-
18 10:30:57',NULL,'717',NULL,NULL),(1361,717,'SWT','applicants_certifications/
U717T1666089058.pdf','applicants_certifications','2016 SEPTEMBER 21-23 - INTERNAL
QUALITY ASSURANCE.pdf','U717T1666089058.pdf','2022-10-18 10:30:58','2022-10-18
10:30:58',NULL,'717',NULL,NULL),(1362,717,'SWT','applicants_certifications/
U717T1666089058.pdf','applicants_certifications','2016, AUGUST 11-12 - WORKSHOP ON
OUTCOMES BASED QUALITY ASSURANCE PROGRAM ACCRED
SURVEY.pdf','U717T1666089058.pdf','2022-10-18 10:30:58','2022-10-18
10:30:58',NULL,'717',NULL,NULL),(1363,717,'SWT','applicants_certifications/
U717T1666089059.pdf','applicants_certifications','2018, OCTOBER 16- 19 - STRATEGIC
PLANNING WORKSHOP AND ASSESSMENT.pdf','U717T1666089059.pdf','2022-10-18
10:30:59','2022-10-18 10:30:59',NULL,'717',NULL,NULL),
(1364,717,'SWT','applicants_certifications/
U717T1666089060.pdf','applicants_certifications','2019 MARCH 8 - 32nd AACCUP ANNUAL
NATIONAL CONFERENCE.pdf','U717T1666089060.pdf','2022-10-18 10:31:00','2022-10-18
10:31:00',NULL,'717',NULL,NULL),(1365,717,'SWT','applicants_certifications/
U717T1666089060.pdf','applicants_certifications','2019 OCT 14-15 - ORIENTATION
WORKSHOP ON SPMS.pdf','U717T1666089060.pdf','2022-10-18 10:31:00','2022-10-18
10:31:00',NULL,'717',NULL,NULL),(1366,717,'SWT','applicants_certifications/
U717T1666089061.pdf','applicants_certifications','2019, MARCH 28 - UPDATES ON
EMPLOYEES BENEFITS.pdf','U717T1666089061.pdf','2022-10-18 10:31:01','2022-10-18
10:31:01',NULL,'717',NULL,NULL),(1367,717,'SWT','applicants_certifications/
U717T1666089062.pdf','applicants_certifications','ISO 9001 2011, GUIDELINES FOR
AUDITING MANAGEMENT SYSTEM TRAINING COURSE.pdf','U717T1666089062.pdf','2022-10-18
10:31:02','2022-10-18 10:31:02',NULL,'717',NULL,NULL),
(1368,717,'SWT','applicants_certifications/
U717T1666089062.pdf','applicants_certifications','ISO 9001 2015 QMS -7s PRINCIPLES
OF GOOD HOUSEKEEPING.pdf','U717T1666089062.pdf','2022-10-18 10:31:02','2022-10-18
10:31:02',NULL,'717',NULL,NULL),(1369,717,'SWT','applicants_certifications/
U717T1666089063.pdf','applicants_certifications','ISO 9001 2015, AWARENESS
TRAINING, DOCUMENTATION TRAINING.pdf','U717T1666089063.pdf','2022-10-18
10:31:03','2022-10-18 10:31:03',NULL,'717',NULL,NULL),
(1370,717,'SWT','applicants_certifications/
U717T1666089064.pdf','applicants_certifications','ISO 9001 2015, RISK & OPPORTUNITY
TRAINING & WORKSHOP.pdf','U717T1666089064.pdf','2022-10-18 10:31:04','2022-10-18
10:31:04',NULL,'717',NULL,NULL),
(1371,717,'ELIGIBILITY','applicants_certifications/
U717T1666089128.pdf','applicants_certifications','AUTHENTICATED CIVIL SERVICE
ELIGIBILITY.pdf','U717T1666089128.pdf','2022-10-18 10:32:08','2022-10-18
10:32:08',NULL,'717',NULL,NULL),
(1372,717,'ELIGIBILITY','applicants_certifications/
U717T1666089128.pdf','applicants_certifications','AUTHENTICATED CIVIL SERVICE
ELIGIBILITY-Copy.pdf','U717T1666089128.pdf','2022-10-18 10:32:08','2022-10-18
10:32:08',NULL,'717',NULL,NULL),(1373,717,'PDS','applicants_certifications/
U717T1666089198.pdf','applicants_certifications','CSC FORM 212 PERSONAL DATA
SHEET.pdf','U717T1666089198.pdf','2022-10-18 10:33:18','2022-10-18
10:33:18',NULL,'717',NULL,NULL),(1374,717,'SWT','applicants_certifications/
U717T1666089241.pdf','applicants_certifications','2000, FEBRUARY 25-26 - RECORDS
MANAGEMENT & DISPOSAL.pdf','U717T1666089241.pdf','2022-10-18 10:34:01','2022-10-18
10:34:01',NULL,'717',NULL,NULL),(1375,717,'SWT','applicants_certifications/
U717T1666089241.pdf','applicants_certifications','1999, JUNE 2-4, VALUES
ORIENTATION WORKSHP, 1999 APRIL CLERICAL SECRETARIAL
DEVT COURSE.pdf','U717T1666089241.pdf','2022-10-18 10:34:01','2022-10-18
10:34:01',NULL,'717',NULL,NULL),(1376,717,'SWT','applicants_certifications/
U717T1666089242.pdf','applicants_certifications','2001, jUNE 22 - LAWS RULES ON
GOVERNMENT EXPENDITURE.pdf','U717T1666089242.pdf','2022-10-18 10:34:02','2022-10-18
10:34:02',NULL,'717',NULL,NULL),
(1377,722,'ELIGIBILITY','applicants_certifications/
U722T1666161805.pdf','applicants_certifications','license.pdf','U722T1666161805.pdf
','2022-10-19 06:43:25','2022-10-19 06:43:25',NULL,'722',NULL,NULL),
(1378,722,'SWT','applicants_certifications/
U722T1666162247.pdf','applicants_certifications','seminar
workshop.pdf','U722T1666162247.pdf','2022-10-19 06:50:47','2022-10-19
06:50:47',NULL,'722',NULL,NULL),(1379,722,'TOR','applicants_certifications/
U722T1666162724.pdf','applicants_certifications','TOR.pdf','U722T1666162724.pdf','2
022-10-19 06:58:44','2022-10-19 06:58:44',NULL,'722',NULL,NULL),
(1380,694,'PDS','applicants_certifications/
U694T1666230955.xlsx','applicants_certifications','Copy of personal data sheet
encoded - fritzie (Autosaved).xlsx','U694T1666230955.xlsx','2022-10-20
01:55:55','2022-10-20 01:55:55',NULL,'694',NULL,NULL),
(1381,726,'SWT','applicants_certifications/
U726T1666581495.pdf','applicants_certifications','TRAINING
CERTIFICATE.pdf','U726T1666581495.pdf','2022-10-24 03:18:15','2022-10-24
03:18:15',NULL,'726',NULL,NULL),(1382,726,'PDS','applicants_certifications/
U726T1666582256.pdf','applicants_certifications','PDS.pdf','U726T1666582256.pdf','2
022-10-24 03:30:56','2022-10-24 03:30:56',NULL,'726',NULL,NULL),
(1383,726,'ELIGIBILITY','applicants_certifications/
U726T1666582291.pdf','applicants_certifications','CSC
RATING .pdf','U726T1666582291.pdf','2022-10-24 03:31:31','2022-10-24
03:31:31',NULL,'726',NULL,NULL),(1384,726,'TOR','applicants_certifications/
U726T1666582319.pdf','applicants_certifications','CERT OF
GRADES.pdf','U726T1666582319.pdf','2022-10-24 03:31:59','2022-10-24
03:31:59',NULL,'726',NULL,NULL),(1386,743,'TOR','applicants_certifications/
U743T1666681057.pdf','applicants_certifications','Transcript of
Record.pdf','U743T1666681057.pdf','2022-10-25 06:57:37','2022-10-25
06:57:37',NULL,'743',NULL,NULL),(1387,743,'SWT','applicants_certifications/
U743T1666681599.pdf','applicants_certifications','Certificate.pdf','U743T1666681599
.pdf','2022-10-25 07:06:39','2022-10-25 07:06:39',NULL,'743',NULL,NULL),
(1388,229,'COE','applicants_certifications/
U229T1666687579.pdf','applicants_certifications','cert. of
employment.pdf','U229T1666687579.pdf','2022-10-25 08:46:19','2022-10-25
08:46:19',NULL,'229',NULL,NULL),(1391,747,'TOR','applicants_certifications/
U747T1666717971.pdf','applicants_certifications','TOR.pdf','U747T1666717971.pdf','2
022-10-25 17:12:51','2022-10-25 17:12:51',NULL,'747',NULL,NULL),
(1392,747,'COE','applicants_certifications/
U747T1666717991.pdf','applicants_certifications','COE.pdf','U747T1666717991.pdf','2
022-10-25 17:13:11','2022-10-25 17:13:11',NULL,'747',NULL,NULL),
(1393,747,'SWT','applicants_certifications/
U747T1666718007.pdf','applicants_certifications','Seminars and
Achievements.pdf','U747T1666718007.pdf','2022-10-25 17:13:27','2022-10-25
17:13:27',NULL,'747',NULL,NULL),
(1394,747,'ELIGIBILITY','applicants_certifications/
U747T1666718026.pdf','applicants_certifications','License.pdf','U747T1666718026.pdf
','2022-10-25 17:13:46','2022-10-25 17:13:46',NULL,'747',NULL,NULL),
(1395,747,'PDS','applicants_certifications/
U747T1666718316.pdf','applicants_certifications','PDS.pdf','U747T1666718316.pdf','2
022-10-25 17:18:36','2022-10-25 17:18:36',NULL,'747',NULL,NULL),
(1397,745,'TOR','applicants_certifications/
U745T1666781763.pdf','applicants_certifications','TOR-1-JONALYN-R-
RAMOS.pdf','U745T1666781763.pdf','2022-10-26 10:56:03','2022-10-26
10:56:03',NULL,'745',NULL,NULL),(1398,745,'TOR','applicants_certifications/
U745T1666781794.pdf','applicants_certifications','TOR-2-JONALYN-R-
RAMOS.pdf','U745T1666781794.pdf','2022-10-26 10:56:34','2022-10-26
10:56:34',NULL,'745',NULL,NULL),(1399,745,'COE','applicants_certifications/
U745T1666782112.pdf','applicants_certifications','Service-Record-Jonalyn-R-
Ramos.pdf','U745T1666782112.pdf','2022-10-26 11:01:52','2022-10-26
11:01:52',NULL,'745',NULL,NULL),(1400,745,'SWT','applicants_certifications/
U745T1666782643.pdf','applicants_certifications','certificate-1-Jonalyn-R-
Ramos.pdf','U745T1666782643.pdf','2022-10-26 11:10:43','2022-10-26
11:10:43',NULL,'745',NULL,NULL),(1401,745,'SWT','applicants_certifications/
U745T1666782661.pdf','applicants_certifications','certificate-2-Jonalyn-R-
Ramos.pdf','U745T1666782661.pdf','2022-10-26 11:11:01','2022-10-26
11:11:01',NULL,'745',NULL,NULL),(1402,745,'SWT','applicants_certifications/
U745T1666782674.pdf','applicants_certifications','certificate-3-Jonalyn-R-
Ramos.pdf','U745T1666782674.pdf','2022-10-26 11:11:14','2022-10-26
11:11:14',NULL,'745',NULL,NULL),(1403,745,'SWT','applicants_certifications/
U745T1666782919.pdf','applicants_certifications','certificate-4-Jonalyn-R-
Ramos.pdf','U745T1666782919.pdf','2022-10-26 11:15:19','2022-10-26
11:15:19',NULL,'745',NULL,NULL),(1404,745,'PDS','applicants_certifications/
U745T1666783885.jpg','applicants_certifications','PDS-Page-1-JONALYN-
RAMOS.jpg','U745T1666783885.jpg','2022-10-26 11:31:25','2022-10-26
11:31:25',NULL,'745',NULL,NULL),(1405,745,'PDS','applicants_certifications/
U745T1666783940.jpg','applicants_certifications','PDS-Page-2-JONALYN-
RAMOS.jpg','U745T1666783940.jpg','2022-10-26 11:32:20','2022-10-26
11:32:20',NULL,'745',NULL,NULL),(1406,745,'PDS','applicants_certifications/
U745T1666784043.jpg','applicants_certifications','PDS-Page-3-JONALYN-
RAMOS.jpg','U745T1666784043.jpg','2022-10-26 11:34:03','2022-10-26
11:34:03',NULL,'745',NULL,NULL),(1407,745,'PDS','applicants_certifications/
U745T1666784114.jpg','applicants_certifications','PDS-4-JONALYN-
RAMOS.jpg','U745T1666784114.jpg','2022-10-26 11:35:14','2022-10-26
11:35:14',NULL,'745',NULL,NULL),(1411,743,'COE','applicants_certifications/
U743T1666792401.pdf','applicants_certifications','Certificate of
employment.pdf','U743T1666792401.pdf','2022-10-26 13:53:21','2022-10-26
13:53:21',NULL,'743',NULL,NULL),(1412,743,'PDS','applicants_certifications/
U743T1666794591.pdf','applicants_certifications','Notarized
PDS.pdf','U743T1666794591.pdf','2022-10-26 14:29:51','2022-10-26
14:29:51',NULL,'743',NULL,NULL),(1413,725,'TOR','applicants_certifications/
U725T1666831447.pdf','applicants_certifications','01.pdf','U725T1666831447.pdf','20
22-10-27 00:44:07','2022-10-27 00:44:07',NULL,'725',NULL,NULL),
(1414,725,'TOR','applicants_certifications/
U725T1666831494.pdf','applicants_certifications','02.pdf','U725T1666831494.pdf','20
22-10-27 00:44:54','2022-10-27 00:44:54',NULL,'725',NULL,NULL),
(1415,725,'SWT','applicants_certifications/
U725T1666831597.pdf','applicants_certifications','Image
(19).pdf','U725T1666831597.pdf','2022-10-27 00:46:37','2022-10-27
00:46:37',NULL,'725',NULL,NULL),(1416,725,'SWT','applicants_certifications/
U725T1666831597.pdf','applicants_certifications','Image
(20).pdf','U725T1666831597.pdf','2022-10-27 00:46:37','2022-10-27
00:46:37',NULL,'725',NULL,NULL),(1417,725,'SWT','applicants_certifications/
U725T1666831598.pdf','applicants_certifications','Image
(21).pdf','U725T1666831598.pdf','2022-10-27 00:46:38','2022-10-27
00:46:38',NULL,'725',NULL,NULL),(1418,725,'COE','applicants_certifications/
U725T1666831878.pdf','applicants_certifications','Image
(22).pdf','U725T1666831878.pdf','2022-10-27 00:51:18','2022-10-27
00:51:18',NULL,'725',NULL,NULL),(1419,749,'COE','applicants_certifications/
U749T1666843401.pdf','applicants_certifications','i_COE.pdf','U749T1666843401.pdf',
'2022-10-27 04:03:21','2022-10-27 04:03:21',NULL,'749',NULL,NULL),
(1420,229,'PDS','applicants_certifications/
U229T1666848741.pdf','applicants_certifications','PDS
P.1.pdf','U229T1666848741.pdf','2022-10-27 05:32:21','2022-10-27
05:32:21',NULL,'229',NULL,NULL),(1421,229,'PDS','applicants_certifications/
U229T1666848761.pdf','applicants_certifications','PDS
P.2.pdf','U229T1666848761.pdf','2022-10-27 05:32:41','2022-10-27
05:32:41',NULL,'229',NULL,NULL),(1422,229,'PDS','applicants_certifications/
U229T1666848773.pdf','applicants_certifications','PDS
P.3.pdf','U229T1666848773.pdf','2022-10-27 05:32:53','2022-10-27
05:32:53',NULL,'229',NULL,NULL),(1423,229,'PDS','applicants_certifications/
U229T1666848787.pdf','applicants_certifications','Notarized PDS
P.4.pdf','U229T1666848787.pdf','2022-10-27 05:33:07','2022-10-27
05:33:07',NULL,'229',NULL,NULL),(1424,229,'SWT','applicants_certifications/
U229T1666848808.pdf','applicants_certifications','cert.
1.pdf','U229T1666848808.pdf','2022-10-27 05:33:28','2022-10-27
05:33:28',NULL,'229',NULL,NULL),(1425,229,'SWT','applicants_certifications/
U229T1666848817.pdf','applicants_certifications','cert.
2.pdf','U229T1666848817.pdf','2022-10-27 05:33:37','2022-10-27
05:33:37',NULL,'229',NULL,NULL),(1426,229,'SWT','applicants_certifications/
U229T1666848825.pdf','applicants_certifications','cert.
3.pdf','U229T1666848825.pdf','2022-10-27 05:33:45','2022-10-27
05:33:45',NULL,'229',NULL,NULL),(1427,749,'PDS','applicants_certifications/
U749T1666849091.pdf','applicants_certifications','i_PDS.pdf','U749T1666849091.pdf',
'2022-10-27 05:38:11','2022-10-27 05:38:11',NULL,'749',NULL,NULL),
(1429,749,'SWT','applicants_certifications/
U749T1666849199.pdf','applicants_certifications','i_COTS.pdf','U749T1666849199.pdf'
,'2022-10-27 05:39:59','2022-10-27 05:39:59',NULL,'749',NULL,NULL),
(1430,729,'TOR','applicants_certifications/
U729T1666855341.pdf','applicants_certifications','transcript of
record.pdf','U729T1666855341.pdf','2022-10-27 07:22:21','2022-10-27
07:22:21',NULL,'729',NULL,NULL),(1431,729,'SWT','applicants_certifications/
U729T1666855397.pdf','applicants_certifications','trainingsseminar.pdf','U729T16668
55397.pdf','2022-10-27 07:23:17','2022-10-27 07:23:17',NULL,'729',NULL,NULL),
(1432,729,'PDS','applicants_certifications/
U729T1666855629.xlsx','applicants_certifications','PDS.xlsx','U729T1666855629.xlsx'
,'2022-10-27
07:27:09','2022-10-27 07:27:09',NULL,'729',NULL,NULL),
(1434,729,'COE','applicants_certifications/
U729T1666855744.pdf','applicants_certifications','certificate of
employment.pdf','U729T1666855744.pdf','2022-10-27 07:29:04','2022-10-27
07:29:04',NULL,'729',NULL,NULL),
(1435,729,'ELIGIBILITY','applicants_certifications/
U729T1666855814.pdf','applicants_certifications','trainingsseminar.pdf','U729T16668
55814.pdf','2022-10-27 07:30:14','2022-10-27 07:30:14',NULL,'729',NULL,NULL),
(1439,753,'TOR','applicants_certifications/
U753T1666873269.pdf','applicants_certifications','inbound193583842483531975.pdf','U
753T1666873269.pdf','2022-10-27 12:21:09','2022-10-27
12:21:09',NULL,'753',NULL,NULL),(1440,753,'SWT','applicants_certifications/
U753T1666873878.pdf','applicants_certifications','inbound2773577825139661803.pdf','
U753T1666873878.pdf','2022-10-27 12:31:18','2022-10-27
12:31:18',NULL,'753',NULL,NULL),(1441,753,'PDS','applicants_certifications/
U753T1666875748.pdf','applicants_certifications','inbound9138140013027823142.pdf','
U753T1666875748.pdf','2022-10-27 13:02:28','2022-10-27
13:02:28',NULL,'753',NULL,NULL),(1443,754,'SWT','applicants_certifications/
U754T1666920406.pdf','applicants_certifications','CERTIFICATE.pdf','U754T1666920406
.pdf','2022-10-28 01:26:46','2022-10-28 01:26:46',NULL,'754',NULL,NULL),
(1444,754,'ELIGIBILITY','applicants_certifications/
U754T1666920512.pdf','applicants_certifications','CS-
PROF.pdf','U754T1666920512.pdf','2022-10-28 01:28:32','2022-10-28
01:28:32',NULL,'754',NULL,NULL),
(1445,749,'ELIGIBILITY','applicants_certifications/
U749T1666920543.pdf','applicants_certifications','Board
Rating.pdf','U749T1666920543.pdf','2022-10-28 01:29:03','2022-10-28
01:29:03',NULL,'749',NULL,NULL),(1446,749,'TOR','applicants_certifications/
U749T1666920570.pdf','applicants_certifications','i_TOR.pdf','U749T1666920570.pdf',
'2022-10-28 01:29:30','2022-10-28 01:29:30',NULL,'749',NULL,NULL),
(1447,754,'COE','applicants_certifications/
U754T1666920613.pdf','applicants_certifications','EMPLOYMENT.pdf','U754T1666920613.
pdf','2022-10-28 01:30:13','2022-10-28 01:30:13',NULL,'754',NULL,NULL),
(1448,754,'TOR','applicants_certifications/
U754T1666921039.pdf','applicants_certifications','TOR
1.pdf','U754T1666921039.pdf','2022-10-28 01:37:19','2022-10-28
01:37:19',NULL,'754',NULL,NULL),(1449,754,'TOR','applicants_certifications/
U754T1666921180.pdf','applicants_certifications','TOR
1(1).pdf','U754T1666921180.pdf','2022-10-28 01:39:40','2022-10-28
01:39:40',NULL,'754',NULL,NULL),(1453,755,'TOR','applicants_certifications/
U755T1666936978.pdf','applicants_certifications','TOR.pdf','U755T1666936978.pdf','2
022-10-28 06:02:58','2022-10-28 06:02:58',NULL,'755',NULL,NULL),
(1454,755,'COE','applicants_certifications/
U755T1666936997.pdf','applicants_certifications','Certificate of
experience.pdf','U755T1666936997.pdf','2022-10-28 06:03:17','2022-10-28
06:03:17',NULL,'755',NULL,NULL),
(1455,755,'ELIGIBILITY','applicants_certifications/
U755T1666937017.pdf','applicants_certifications','CSC.pdf','U755T1666937017.pdf','2
022-10-28 06:03:37','2022-10-28 06:03:37',NULL,'755',NULL,NULL),
(1456,755,'PDS','applicants_certifications/
U755T1666937049.pdf','applicants_certifications','PDS.pdf','U755T1666937049.pdf','2
022-10-28 06:04:09','2022-10-28 06:04:09',NULL,'755',NULL,NULL),
(1460,45,'COE','applicants_certifications/
U45T1667963999.pdf','applicants_certifications','Mark-Sworn
2022.pdf','U45T1667963999.pdf','2022-11-09 03:19:59','2022-11-09
03:19:59',NULL,'45',NULL,NULL),(1463,689,'TOR','applicants_certifications/
U689T1668347951.jpg','applicants_certifications','DIPLOMA.jpg','U689T1668347951.jpg
','2022-11-13 13:59:11','2022-11-13 13:59:11',NULL,'689',NULL,NULL),
(1464,689,'TOR','applicants_certifications/
U689T1668348579.pdf','applicants_certifications','Grad
Cert.pdf','U689T1668348579.pdf','2022-11-13 14:09:39','2022-11-13
14:09:39',NULL,'689',NULL,NULL),(1468,762,'PDS','applicants_certifications/
U762T1669010211.xlsx','applicants_certifications','cs form no. 212 revised
personal data sheet.xlsx','U762T1669010211.xlsx','2022-11-21 05:56:51','2022-11-21
05:56:51',NULL,'762',NULL,NULL),
(1470,762,'ELIGIBILITY','applicants_certifications/
U762T1669013855.pdf','applicants_certifications','eligibily.pdf','U762T1669013855.p
df','2022-11-21 06:57:35','2022-11-21 06:57:35',NULL,'762',NULL,NULL),
(1471,730,'TOR','applicants_certifications/
U730T1669093480.pdf','applicants_certifications','Transcript of
Records.pdf','U730T1669093480.pdf','2022-11-22 05:04:40','2022-11-22
05:04:40',NULL,'730',NULL,NULL),(1472,730,'COE','applicants_certifications/
U730T1669093752.pdf','applicants_certifications','BUHLE, CHRISTY certificate of
employment.pdf','U730T1669093752.pdf','2022-11-22 05:09:12','2022-11-22
05:09:12',NULL,'730',NULL,NULL),(1473,730,'PDS','applicants_certifications/
U730T1669093799.pdf','applicants_certifications','PDS .pdf','U730T1669093799.pdf','
2022-11-22 05:09:59','2022-11-22 05:09:59',NULL,'730',NULL,NULL),
(1474,762,'COE','applicants_certifications/
U762T1669357247.pdf','applicants_certifications','CERTIFICATE OF
EMPLOYMENT.pdf','U762T1669357247.pdf','2022-11-25 06:20:47','2022-11-25
06:20:47',NULL,'762',NULL,NULL),
(1475,762,'ELIGIBILITY','applicants_certifications/
U762T1669357322.pdf','applicants_certifications','NATIONAL CERTIFICATE II COPUTER
SYSTEM SERVICING.pdf','U762T1669357322.pdf','2022-11-25 06:22:02','2022-11-25
06:22:02',NULL,'762',NULL,NULL),
(1477,762,'ELIGIBILITY','applicants_certifications/
U762T1669357406.pdf','applicants_certifications','COMPUTER HARDWARE SERVICING
II.pdf','U762T1669357406.pdf','2022-11-25 06:23:26','2022-11-25
06:23:26',NULL,'762',NULL,NULL),(1479,762,'SWT','applicants_certifications/
U762T1669357514.pdf','applicants_certifications','CERTIFICATE OF APPRECIATIION DSWD
1.pdf','U762T1669357514.pdf','2022-11-25 06:25:14','2022-11-25
06:25:14',NULL,'762',NULL,NULL),(1481,762,'SWT','applicants_certifications/
U762T1669357590.pdf','applicants_certifications','CERTIFICATE OF APPRECIATION AS
VOLOUNTEER TEACHER.pdf','U762T1669357590.pdf','2022-11-25 06:26:30','2022-11-25
06:26:30',NULL,'762',NULL,NULL),(1483,762,'SWT','applicants_certifications/
U762T1669357591.pdf','applicants_certifications','CERTIFICATE OF
ATTENDANCE.pdf','U762T1669357591.pdf','2022-11-25 06:26:31','2022-11-25
06:26:31',NULL,'762',NULL,NULL),(1484,762,'SWT','applicants_certifications/
U762T1669357712.pdf','applicants_certifications','CERTIFICATE OF RECOGNITION
BRIGADA PAGBASA.pdf','U762T1669357712.pdf','2022-11-25 06:28:32','2022-11-25
06:28:32',NULL,'762',NULL,NULL),(1486,762,'SWT','applicants_certifications/
U762T1669360063.pdf','applicants_certifications','BASIC COMPUTER HARDWARE TROUBLE
SHOOTING.pdf','U762T1669360063.pdf','2022-11-25 07:07:43','2022-11-25
07:07:43',NULL,'762',NULL,NULL),(1493,762,'SWT','applicants_certifications/
U762T1669361148.pdf','applicants_certifications','BASIC INFORMATION TECHNOLOGY
SOLUTION.pdf','U762T1669361148.pdf','2022-11-25 07:25:48','2022-11-25
07:25:48',NULL,'762',NULL,NULL),(1495,762,'SWT','applicants_certifications/
U762T1669361375.pdf','applicants_certifications','GRAPHIC AND DESIGN
CERTIFICATE.pdf','U762T1669361375.pdf','2022-11-25 07:29:35','2022-11-25
07:29:35',NULL,'762',NULL,NULL),(1496,762,'SWT','applicants_certifications/
U762T1669361514.pdf','applicants_certifications','COMPUTER TROUBLE SHOOTING
CERTIFICATE.pdf','U762T1669361514.pdf','2022-11-25 07:31:54','2022-11-25
07:31:54',NULL,'762',NULL,NULL),(1497,762,'SWT','applicants_certifications/
U762T1669361575.pdf','applicants_certifications','WEBPAGE CERTIFICTAE OF
TRAINING.pdf','U762T1669361575.pdf','2022-11-25 07:32:55','2022-11-25
07:32:55',NULL,'762',NULL,NULL),(1498,762,'TOR','applicants_certifications/
U762T1669364298.pdf','applicants_certifications','TRANSCRIPT.pdf','U762T1669364298.
pdf','2022-11-25 08:18:18','2022-11-25 08:18:18',NULL,'762',NULL,NULL),
(1499,762,'TOR','applicants_certifications/
U762T1669364910.pdf','applicants_certifications','DIPLOMA.pdf','U762T1669364910.pdf
','2022-11-25 08:28:30','2022-11-25 08:28:30',NULL,'762',NULL,NULL),
(1500,762,'TOR','applicants_certifications/
U762T1669365166.pdf','applicants_certifications','TOR FOR 18
UNITS.pdf','U762T1669365166.pdf','2022-11-25 08:32:46','2022-11-25
08:32:46',NULL,'762',NULL,NULL),(1501,772,'TOR','applicants_certifications/
U772T1671375638.pdf','applicants_certifications','TOR
(1).pdf','U772T1671375638.pdf','2022-12-18 15:00:38','2022-12-18
15:00:38',NULL,'772',NULL,NULL),(1502,772,'COE','applicants_certifications/
U772T1671375673.pdf','applicants_certifications','COE
(PH).pdf','U772T1671375673.pdf','2022-12-18 15:01:13','2022-12-18
15:01:13',NULL,'772',NULL,NULL),(1503,772,'COE','applicants_certifications/
U772T1671375698.pdf','applicants_certifications','COE(Saudi).pdf','U772T1671375698.
pdf','2022-12-18 15:01:38','2022-12-18 15:01:38',NULL,'772',NULL,NULL),
(1504,772,'SWT','applicants_certifications/
U772T1671375714.pdf','applicants_certifications','BLS
card.pdf','U772T1671375714.pdf','2022-12-18 15:01:54','2022-12-18
15:01:54',NULL,'772',NULL,NULL),
(1505,772,'ELIGIBILITY','applicants_certifications/
U772T1671375761.pdf','applicants_certifications','PRC
License.pdf','U772T1671375761.pdf','2022-12-18 15:02:41','2022-12-18
15:02:41',NULL,'772',NULL,NULL),(1506,772,'PDS','applicants_certifications/
U772T1671375779.xlsx','applicants_certifications','PDS Loureen
Mangili.xlsx','U772T1671375779.xlsx','2022-12-18 15:02:59','2022-12-18
15:02:59',NULL,'772',NULL,NULL),(1507,774,'SWT','applicants_certifications/
U774T1671975110.pdf','applicants_certifications','CHST.Shem B. Dupingay
(2).pdf','U774T1671975110.pdf','2022-12-25 13:31:50','2022-12-25
13:31:50',NULL,'774',NULL,NULL),(1508,775,'TOR','applicants_certifications/
U775T1672115270.pdf','applicants_certifications','TOR-converted-
compressed.pdf','U775T1672115270.pdf','2022-12-27 04:27:50','2022-12-27
04:27:50',NULL,'775',NULL,NULL),
(1509,775,'ELIGIBILITY','applicants_certifications/
U775T1672115341.pdf','applicants_certifications','Republic
of the Philippines (2).pdf','U775T1672115341.pdf','2022-12-27 04:29:01','2022-12-
27 04:29:01',NULL,'775',NULL,NULL),(1510,775,'PDS','applicants_certifications/
U775T1672115484.pdf','applicants_certifications','PDS-PERALTA, KIMBERLY JAYNE
C_compressed (1).pdf','U775T1672115484.pdf','2022-12-27 04:31:24','2022-12-27
04:31:24',NULL,'775',NULL,NULL),
(1512,776,'ELIGIBILITY','applicants_certifications/
U776T1672645015.pdf','applicants_certifications','PRC
License.pdf','U776T1672645015.pdf','2023-01-02 07:36:55','2023-01-02
07:36:55',NULL,'776',NULL,NULL),
(1513,776,'ELIGIBILITY','applicants_certifications/
U776T1672645027.pdf','applicants_certifications','LET
Rating.pdf','U776T1672645027.pdf','2023-01-02 07:37:07','2023-01-02
07:37:07',NULL,'776',NULL,NULL),(1514,776,'COE','applicants_certifications/
U776T1672645067.pdf','applicants_certifications','Service
Record.pdf','U776T1672645067.pdf','2023-01-02 07:37:47','2023-01-02
07:37:47',NULL,'776',NULL,NULL),(1515,776,'COE','applicants_certifications/
U776T1672645067.pdf','applicants_certifications','COE .pdf','U776T1672645067.pdf','
2023-01-02 07:37:47','2023-01-02 07:37:47',NULL,'776',NULL,NULL),
(1516,776,'SWT','applicants_certifications/
U776T1672645319.pdf','applicants_certifications','C7.pdf','U776T1672645319.pdf','20
23-01-02 07:41:59','2023-01-02 07:41:59',NULL,'776',NULL,NULL),
(1517,776,'SWT','applicants_certifications/
U776T1672645319.pdf','applicants_certifications','C5.pdf','U776T1672645319.pdf','20
23-01-02 07:41:59','2023-01-02 07:41:59',NULL,'776',NULL,NULL),
(1518,776,'SWT','applicants_certifications/
U776T1672645321.pdf','applicants_certifications','C6.pdf','U776T1672645321.pdf','20
23-01-02 07:42:01','2023-01-02 07:42:01',NULL,'776',NULL,NULL),
(1519,776,'SWT','applicants_certifications/
U776T1672645321.pdf','applicants_certifications','C1.pdf','U776T1672645321.pdf','20
23-01-02 07:42:01','2023-01-02 07:42:01',NULL,'776',NULL,NULL),
(1520,776,'SWT','applicants_certifications/
U776T1672645322.pdf','applicants_certifications','C2.pdf','U776T1672645322.pdf','20
23-01-02 07:42:02','2023-01-02 07:42:02',NULL,'776',NULL,NULL),
(1521,776,'SWT','applicants_certifications/
U776T1672645322.pdf','applicants_certifications','C3.pdf','U776T1672645322.pdf','20
23-01-02 07:42:02','2023-01-02 07:42:02',NULL,'776',NULL,NULL),
(1522,776,'SWT','applicants_certifications/
U776T1672645324.pdf','applicants_certifications','C4.pdf','U776T1672645324.pdf','20
23-01-02 07:42:04','2023-01-02 07:42:04',NULL,'776',NULL,NULL),
(1523,776,'TOR','applicants_certifications/
U776T1672811974.pdf','applicants_certifications','TRANSCRIPT OF RECORDS
(1).pdf','U776T1672811974.pdf','2023-01-04 05:59:34','2023-01-04
05:59:34',NULL,'776',NULL,NULL),(1525,776,'PDS','applicants_certifications/
U776T1672813304.pdf','applicants_certifications','PDS
(1).pdf','U776T1672813304.pdf','2023-01-04 06:21:44','2023-01-04
06:21:44',NULL,'776',NULL,NULL),(1526,776,'PDS','applicants_certifications/
U776T1672813389.pdf','applicants_certifications','Work Experience
Sheet.pdf','U776T1672813389.pdf','2023-01-04 06:23:09','2023-01-04
06:23:09',NULL,'776',NULL,NULL),(1527,777,'TOR','applicants_certifications/
U777T1672981435.pdf','applicants_certifications','TOR BsEd
p1.pdf','U777T1672981435.pdf','2023-01-06 05:03:55','2023-01-06
05:03:55',NULL,'777',NULL,NULL),(1528,777,'TOR','applicants_certifications/
U777T1672981449.pdf','applicants_certifications','TOR BsEd
p2.pdf','U777T1672981449.pdf','2023-01-06 05:04:09','2023-01-06
05:04:09',NULL,'777',NULL,NULL),(1529,777,'TOR','applicants_certifications/
U777T1672981462.pdf','applicants_certifications','TOR BsEd
p3.pdf','U777T1672981462.pdf','2023-01-06 05:04:22','2023-01-06
05:04:22',NULL,'777',NULL,NULL),(1530,767,'TOR','applicants_certifications/
U767T1673113322.pdf','applicants_certifications','TOR.pdf','U767T1673113322.pdf','2
023-01-07 17:42:02','2023-01-07 17:42:02',NULL,'767',NULL,NULL),
(1531,767,'PDS','applicants_certifications/
U767T1673113683.pdf','applicants_certifications','Personal-Data-Sheet-CS-Form-No.-
212-Revised-2017.pdf','U767T1673113683.pdf','2023-01-07 17:48:03','2023-01-07
17:48:03',NULL,'767',NULL,NULL),
(1532,767,'ELIGIBILITY','applicants_certifications/
U767T1673115013.pdf','applicants_certifications','License.pdf','U767T1673115013.pdf
','2023-01-07 18:10:13','2023-01-07 18:10:13',NULL,'767',NULL,NULL),
(1533,785,'TOR','applicants_certifications/
U785T1673689062.pdf','applicants_certifications','IF TOR
COM.pdf','U785T1673689062.pdf','2023-01-14 09:37:42','2023-01-14
09:37:42',NULL,'785',NULL,NULL),(1534,782,'COE','applicants_certifications/
U782T1673753271.pdf','applicants_certifications','DBHS SERVICE
RECORD.pdf','U782T1673753271.pdf','2023-01-15 03:27:51','2023-01-15
03:27:51',NULL,'782',NULL,NULL),(1535,782,'COE','applicants_certifications/
U782T1673753288.pdf','applicants_certifications','DEPED SERVICE
RECORD.pdf','U782T1673753288.pdf','2023-01-15 03:28:08','2023-01-15
03:28:08',NULL,'782',NULL,NULL),(1536,782,'COE','applicants_certifications/
U782T1673753696.pdf','applicants_certifications','SJS SERVICE
RECORD.pdf','U782T1673753696.pdf','2023-01-15 03:34:56','2023-01-15
03:34:56',NULL,'782',NULL,NULL),(1537,782,'TOR','applicants_certifications/
U782T1673754718.pdf','applicants_certifications','MAT-SOC STUD
TOR.pdf','U782T1673754718.pdf','2023-01-15 03:51:58','2023-01-15
03:51:58',NULL,'782',NULL,NULL),(1538,782,'TOR','applicants_certifications/
U782T1673755152.pdf','applicants_certifications','EDD-EM
TOR.pdf','U782T1673755152.pdf','2023-01-15 03:59:12','2023-01-15
03:59:12',NULL,'782',NULL,NULL),(1539,782,'TOR','applicants_certifications/
U782T1673755373.pdf','applicants_certifications','BSE-SOCSTUD
TOR1.pdf','U782T1673755373.pdf','2023-01-15 04:02:53','2023-01-15
04:02:53',NULL,'782',NULL,NULL),(1540,782,'TOR','applicants_certifications/
U782T1673755382.pdf','applicants_certifications','BSE SOC STUD
TOR2.pdf','U782T1673755382.pdf','2023-01-15 04:03:02','2023-01-15
04:03:02',NULL,'782',NULL,NULL),(1542,787,'TOR','applicants_certifications/
U787T1673774239.pdf','applicants_certifications','TOR
PDF.pdf','U787T1673774239.pdf','2023-01-15 09:17:19','2023-01-15
09:17:19',NULL,'787',NULL,NULL),(1545,787,'SWT','applicants_certifications/
U787T1673781132.pdf','applicants_certifications','sems.pdf','U787T1673781132.pdf','
2023-01-15 11:12:12','2023-01-15 11:12:12',NULL,'787',NULL,NULL),
(1547,780,'ELIGIBILITY','applicants_certifications/
U780T1673841770.pdf','applicants_certifications','Authenticated PRC
License.pdf','U780T1673841770.pdf','2023-01-16 04:02:50','2023-01-16
04:02:50',NULL,'780',NULL,NULL),(1548,780,'SWT','applicants_certifications/
U780T1673841825.pdf','applicants_certifications','Certificate on Effective
Leadership.pdf','U780T1673841825.pdf','2023-01-16 04:03:45','2023-01-16
04:03:45',NULL,'780',NULL,NULL),(1550,780,'SWT','applicants_certifications/
U780T1673841915.pdf','applicants_certifications','Certificate on Parliamentary
Procedures.pdf','U780T1673841915.pdf','2023-01-16 04:05:15','2023-01-16
04:05:15',NULL,'780',NULL,NULL),(1552,721,'TOR','applicants_certifications/
U721T1673857018.pdf','applicants_certifications','CERTIFICATION019
(1).pdf','U721T1673857018.pdf','2023-01-16 08:16:58','2023-01-16
08:16:58',NULL,'721',NULL,NULL),(1553,780,'TOR','applicants_certifications/
U780T1673874301.pdf','applicants_certifications','Transcript of
Record.pdf','U780T1673874301.pdf','2023-01-16 13:05:01','2023-01-16
13:05:01',NULL,'780',NULL,NULL),(1554,780,'PDS','applicants_certifications/
U780T1673935919.pdf','applicants_certifications','Personal Data Sheet with
WES.pdf','U780T1673935919.pdf','2023-01-17 06:11:59','2023-01-17
06:11:59',NULL,'780',NULL,NULL),(1555,783,'SWT','applicants_certifications/
U783T1673951439.pdf','applicants_certifications','Training
Certificate.pdf','U783T1673951439.pdf','2023-01-17 10:30:39','2023-01-17
10:30:39',NULL,'783',NULL,NULL),
(1556,783,'ELIGIBILITY','applicants_certifications/
U783T1673951499.pdf','applicants_certifications','Authenticated PRC
license.pdf','U783T1673951499.pdf','2023-01-17 10:31:39','2023-01-17
10:31:39',NULL,'783',NULL,NULL),(1557,783,'PDS','applicants_certifications/
U783T1673951517.pdf','applicants_certifications','PDS.pdf','U783T1673951517.pdf','2
023-01-17 10:31:57','2023-01-17 10:31:57',NULL,'783',NULL,NULL),
(1558,783,'PDS','applicants_certifications/
U783T1673951529.pdf','applicants_certifications','PDS4.pdf','U783T1673951529.pdf','
2023-01-17 10:32:09','2023-01-17 10:32:09',NULL,'783',NULL,NULL),
(1560,783,'SWT','applicants_certifications/
U783T1673951589.pdf','applicants_certifications','training
certificate1.pdf','U783T1673951589.pdf','2023-01-17 10:33:09','2023-01-17
10:33:09',NULL,'783',NULL,NULL),(1561,783,'PDS','applicants_certifications/
U783T1673951732.pdf','applicants_certifications','PDS3.pdf','U783T1673951732.pdf','
2023-01-17 10:35:32','2023-01-17 10:35:32',NULL,'783',NULL,NULL),
(1562,783,'PDS','applicants_certifications/
U783T1673951842.pdf','applicants_certifications','PDS2.pdf','U783T1673951842.pdf','
2023-01-17 10:37:23','2023-01-17 10:37:23',NULL,'783',NULL,NULL),
(1565,793,'COE','applicants_certifications/
U793T1673955835.pdf','applicants_certifications','BAYAWON_JEBBIE_CertificateOfEmplo
yment.pdf','U793T1673955835.pdf','2023-01-17 11:43:55','2023-01-17
11:43:55',NULL,'793',NULL,NULL),(1566,793,'SWT','applicants_certifications/
U793T1673955858.pdf','applicants_certifications','BAYAWON_JEBBIE_TrainingCertificat
es.pdf','U793T1673955858.pdf','2023-01-17 11:44:18','2023-01-17
11:44:18',NULL,'793',NULL,NULL),
(1567,793,'ELIGIBILITY','applicants_certifications/
U793T1673955905.pdf','applicants_certifications','BAYAWON_JEBBIE_CertificateOfEligi
bility.pdf','U793T1673955905.pdf','2023-01-17 11:45:05','2023-01-17
11:45:05',NULL,'793',NULL,NULL),(1568,793,'TOR','applicants_certifications/
U793T1673956957.pdf','applicants_certifications','TOR
IFSU.pdf','U793T1673956957.pdf','2023-01-17 12:02:37','2023-01-17
12:02:37',NULL,'793',NULL,NULL),(1569,793,'PDS','applicants_certifications/
U793T1673957949.pdf','applicants_certifications','WES.pdf','U793T1673
957949.pdf','2023-01-17 12:19:09','2023-01-17 12:19:09',NULL,'793',NULL,NULL),
(1570,783,'COE','applicants_certifications/
U783T1673959165.pdf','applicants_certifications','certificate of
employment1.pdf','U783T1673959165.pdf','2023-01-17 12:39:25','2023-01-17
12:39:25',NULL,'783',NULL,NULL),(1572,783,'COE','applicants_certifications/
U783T1673962617.pdf','applicants_certifications','certificate of
employment2.pdf','U783T1673962617.pdf','2023-01-17 13:36:57','2023-01-17
13:36:57',NULL,'783',NULL,NULL),(1574,783,'COE','applicants_certifications/
U783T1673962736.pdf','applicants_certifications','certificate of
employment3.pdf','U783T1673962736.pdf','2023-01-17 13:38:56','2023-01-17
13:38:56',NULL,'783',NULL,NULL),(1575,783,'COE','applicants_certifications/
U783T1673963029.pdf','applicants_certifications','certificate of
employment.pdf','U783T1673963029.pdf','2023-01-17 13:43:49','2023-01-17
13:43:49',NULL,'783',NULL,NULL),(1576,780,'COE','applicants_certifications/
U780T1674017587.pdf','applicants_certifications','Certificate of Employment
2023.pdf','U780T1674017587.pdf','2023-01-18 04:53:07','2023-01-18
04:53:07',NULL,'780',NULL,NULL),(1577,795,'TOR','applicants_certifications/
U795T1674023028.pdf','applicants_certifications','4. Transcripts - Phillipine
Normal University- p. 1.pdf','U795T1674023028.pdf','2023-01-18 06:23:48','2023-01-
18 06:23:48',NULL,'795',NULL,NULL),(1578,795,'TOR','applicants_certifications/
U795T1674023028.pdf','applicants_certifications','5. Transcripts - Philippine
Normal University- p. 2.pdf','U795T1674023028.pdf','2023-01-18 06:23:48','2023-01-
18 06:23:48',NULL,'795',NULL,NULL),(1579,795,'TOR','applicants_certifications/
U795T1674023031.pdf','applicants_certifications','Transcripts - Luna Colleges, Inc.
- Graduate Studies.pdf','U795T1674023031.pdf','2023-01-18 06:23:51','2023-01-18
06:23:51',NULL,'795',NULL,NULL),
(1580,795,'ELIGIBILITY','applicants_certifications/
U795T1674023068.pdf','applicants_certifications','Driver\'s
License.pdf','U795T1674023068.pdf','2023-01-18 06:24:28','2023-01-18
06:24:28',NULL,'795',NULL,NULL),
(1581,795,'ELIGIBILITY','applicants_certifications/
U795T1674023069.pdf','applicants_certifications','PRC
License.pdf','U795T1674023069.pdf','2023-01-18 06:24:29','2023-01-18
06:24:29',NULL,'795',NULL,NULL),(1582,795,'PDS','applicants_certifications/
U795T1674023292.pdf','applicants_certifications','p.1.pdf','U795T1674023292.pdf','2
023-01-18 06:28:12','2023-01-18 06:28:12',NULL,'795',NULL,NULL),
(1583,795,'PDS','applicants_certifications/
U795T1674023298.pdf','applicants_certifications','p.2-
3.pdf','U795T1674023298.pdf','2023-01-18 06:28:18','2023-01-18
06:28:18',NULL,'795',NULL,NULL),(1584,795,'PDS','applicants_certifications/
U795T1674023308.pdf','applicants_certifications','p.4.pdf','U795T1674023308.pdf','2
023-01-18 06:28:28','2023-01-18 06:28:28',NULL,'795',NULL,NULL),
(1585,795,'SWT','applicants_certifications/
U795T1674026883.pdf','applicants_certifications','NC II - CARPENTRY -
EIMBAG.pdf','U795T1674026883.pdf','2023-01-18 07:28:03','2023-01-18
07:28:03',NULL,'795',NULL,NULL),(1586,795,'COE','applicants_certifications/
U795T1674027869.pdf','applicants_certifications','Appointment Paper-
EImbag.pdf','U795T1674027869.pdf','2023-01-18 07:44:29','2023-01-18
07:44:29',NULL,'795',NULL,NULL),(1587,790,'TOR','applicants_certifications/
U790T1674041937.pdf','applicants_certifications','Transcript of
Record.pdf','U790T1674041937.pdf','2023-01-18 11:38:57','2023-01-18
11:38:57',NULL,'790',NULL,NULL),(1588,800,'TOR','applicants_certifications/
U800T1674047458.jpeg','applicants_certifications','received_688397755773254.jpeg','
U800T1674047458.jpeg','2023-01-18 13:10:58','2023-01-18
13:10:58',NULL,'800',NULL,NULL),(1589,800,'TOR','applicants_certifications/
U800T1674047491.jpeg','applicants_certifications','received_878836483517859.jpeg','
U800T1674047491.jpeg','2023-01-18 13:11:31','2023-01-18
13:11:31',NULL,'800',NULL,NULL),(1590,787,'PDS','applicants_certifications/
U787T1674048283.pdf','applicants_certifications','PDS
PDF.pdf','U787T1674048283.pdf','2023-01-18 13:24:43','2023-01-18
13:24:43',NULL,'787',NULL,NULL),(1591,462,'PDS','applicants_certifications/
U462T1674080765.xlsx','applicants_certifications','pds
vanette.xlsx','U462T1674080765.xlsx','2023-01-18 22:26:05','2023-01-18
22:26:05',NULL,'462',NULL,NULL),(1592,803,'TOR','applicants_certifications/
U803T1674100243.pdf','applicants_certifications','OTR
(1).pdf','U803T1674100243.pdf','2023-01-19 03:50:43','2023-01-19
03:50:43',NULL,'803',NULL,NULL),(1593,803,'COE','applicants_certifications/
U803T1674100272.pdf','applicants_certifications','PSA.pdf','U803T1674100272.pdf','2
023-01-19 03:51:12','2023-01-19 03:51:12',NULL,'803',NULL,NULL),
(1594,803,'COE','applicants_certifications/
U803T1674100281.pdf','applicants_certifications','COE BSU
(1).pdf','U803T1674100281.pdf','2023-01-19 03:51:21','2023-01-19
03:51:21',NULL,'803',NULL,NULL),(1595,803,'COE','applicants_certifications/
U803T1674100293.pdf','applicants_certifications','COE
DENTINEER.pdf','U803T1674100293.pdf','2023-01-19 03:51:33','2023-01-19
03:51:33',NULL,'803',NULL,NULL),(1596,803,'COE','applicants_certifications/
U803T1674100295.pdf','applicants_certifications','COE
PAVEMENT.pdf','U803T1674100295.pdf','2023-01-19 03:51:35','2023-01-19
03:51:35',NULL,'803',NULL,NULL),
(1598,803,'ELIGIBILITY','applicants_certifications/
U803T1674100707.pdf','applicants_certifications','CSC.pdf','U803T1674100707.pdf','2
023-01-19 03:58:27','2023-01-19 03:58:27',NULL,'803',NULL,NULL),
(1599,803,'PDS','applicants_certifications/
U803T1674101524.pdf','applicants_certifications','PDS.pdf','U803T1674101524.pdf','2
023-01-19 04:12:04','2023-01-19 04:12:04',NULL,'803',NULL,NULL),
(1600,792,'TOR','applicants_certifications/
U792T1674128736.pdf','applicants_certifications','TOR(FRIMA).pdf','U792T1674128736.
pdf','2023-01-19 11:45:36','2023-01-19 11:45:36',NULL,'792',NULL,NULL),
(1601,792,'ELIGIBILITY','applicants_certifications/
U792T1674129336.pdf','applicants_certifications','LICENSE.pdf','U792T1674129336.pdf
','2023-01-19 11:55:36','2023-01-19 11:55:36',NULL,'792',NULL,NULL),
(1602,792,'COE','applicants_certifications/
U792T1674132347.pdf','applicants_certifications','COE.pdf','U792T1674132347.pdf','2
023-01-19 12:45:47','2023-01-19 12:45:47',NULL,'792',NULL,NULL),
(1603,795,'SWT','applicants_certifications/
U795T1674142795.pdf','applicants_certifications','Certificate in Professional
Office Administration 1 (1).pdf','U795T1674142795.pdf','2023-01-19 15:39:55','2023-
01-19 15:39:55',NULL,'795',NULL,NULL),(1607,363,'TOR','applicants_certifications/
U363T1674205867.pdf','applicants_certifications','TOR-
DTE.pdf','U363T1674205867.pdf','2023-01-20 09:11:07','2023-01-20
09:11:07',NULL,'363',NULL,NULL),(1609,363,'TOR','applicants_certifications/
U363T1674205886.pdf','applicants_certifications','TOR-
page1.pdf','U363T1674205886.pdf','2023-01-20 09:11:26','2023-01-20
09:11:26',NULL,'363',NULL,NULL),(1610,363,'TOR','applicants_certifications/
U363T1674205887.pdf','applicants_certifications','TOR-
page2.pdf','U363T1674205887.pdf','2023-01-20 09:11:27','2023-01-20
09:11:27',NULL,'363',NULL,NULL),
(1611,363,'ELIGIBILITY','applicants_certifications/
U363T1674206073.pdf','applicants_certifications','Certificate of
Eligibility.pdf','U363T1674206073.pdf','2023-01-20 09:14:33','2023-01-20
09:14:33',NULL,'363',NULL,NULL),(1612,783,'TOR','applicants_certifications/
U783T1674258286.pdf','applicants_certifications','TOR1.pdf','U783T1674258286.pdf','
2023-01-20 23:44:46','2023-01-20 23:44:46',NULL,'783',NULL,NULL),
(1613,783,'TOR','applicants_certifications/
U783T1674258290.pdf','applicants_certifications','TOR2.pdf','U783T1674258290.pdf','
2023-01-20 23:44:50','2023-01-20 23:44:50',NULL,'783',NULL,NULL),
(1614,812,'TOR','applicants_certifications/
U812T1674444352.pdf','applicants_certifications','TOR.pdf','U812T1674444352.pdf','2
023-01-23 03:25:52','2023-01-23 03:25:52',NULL,'812',NULL,NULL),
(1616,785,'COE','applicants_certifications/
U785T1674458576.pdf','applicants_certifications','
coe.pdf','U785T1674458576.pdf','2023-01-23 07:22:56','2023-01-23
07:22:56',NULL,'785',NULL,NULL),
(1618,785,'ELIGIBILITY','applicants_certifications/
U785T1674459055.pdf','applicants_certifications','OLY RN
LICENSE.pdf','U785T1674459055.pdf','2023-01-23 07:30:55','2023-01-23
07:30:55',NULL,'785',NULL,NULL),(1619,785,'PDS','applicants_certifications/
U785T1674459379.pdf','applicants_certifications','OLY
PDS.pdf','U785T1674459379.pdf','2023-01-23 07:36:19','2023-01-23
07:36:19',NULL,'785',NULL,NULL),(1621,785,'SWT','applicants_certifications/
U785T1674459509.pdf','applicants_certifications','IF training
certificates(1).pdf','U785T1674459509.pdf','2023-01-23 07:38:29','2023-01-23
07:38:29',NULL,'785',NULL,NULL),
(1622,785,'ELIGIBILITY','applicants_certifications/
U785T1674459768.pdf','applicants_certifications','board
rating.pdf','U785T1674459768.pdf','2023-01-23 07:42:48','2023-01-23
07:42:48',NULL,'785',NULL,NULL),(1623,785,'SWT','applicants_certifications/
U785T1674460461.pdf','applicants_certifications','certificates of
appreciation.pdf','U785T1674460461.pdf','2023-01-23 07:54:21','2023-01-23
07:54:21',NULL,'785',NULL,NULL),(1624,785,'TOR','applicants_certifications/
U785T1674461003.pdf','applicants_certifications','OLY ADDITIONAL
TOR.pdf','U785T1674461003.pdf','2023-01-23 08:03:23','2023-01-23
08:03:23',NULL,'785',NULL,NULL),
(1625,806,'ELIGIBILITY','applicants_certifications/
U806T1674543396.pdf','applicants_certifications','GUMITANG M. CS
ELIGIBILITY.pdf','U806T1674543396.pdf','2023-01-24 06:56:36','2023-01-24
06:56:36',NULL,'806',NULL,NULL),(1626,806,'SWT','applicants_certifications/
U806T1674543480.pdf','applicants_certifications','GUMITANG M. TRAINING
CERT..pdf','U806T1674543480.pdf','2023-01-24 06:58:00','2023-01-24
06:58:00',NULL,'806',NULL,NULL),(1632,818,'TOR','applicants_certifications/
U818T1674565934.pdf','applicants_certifications','Master\'s Degree & TOR &
Diploma.pdf','U818T1674565934.pdf','2023-01-24
13:12:14','2023-01-24 13:12:14',NULL,'818',NULL,NULL),
(1633,818,'COE','applicants_certifications/
U818T1674566459.pdf','applicants_certifications','Service Record &
COE.pdf','U818T1674566459.pdf','2023-01-24 13:20:59','2023-01-24
13:20:59',NULL,'818',NULL,NULL),
(1634,818,'ELIGIBILITY','applicants_certifications/
U818T1674566480.pdf','applicants_certifications','Lisence.pdf','U818T1674566480.pdf
','2023-01-24 13:21:20','2023-01-24 13:21:20',NULL,'818',NULL,NULL),
(1635,818,'PDS','applicants_certifications/
U818T1674566490.pdf','applicants_certifications','Personal Data Sheet- Santos,
Francis Bon.pdf','U818T1674566490.pdf','2023-01-24 13:21:30','2023-01-24
13:21:30',NULL,'818',NULL,NULL),(1636,818,'SWT','applicants_certifications/
U818T1674566676.pdf','applicants_certifications','TESDA National Certificate
II.pdf','U818T1674566676.pdf','2023-01-24 13:24:36','2023-01-24
13:24:36',NULL,'818',NULL,NULL),(1637,818,'SWT','applicants_certifications/
U818T1674567051.pdf','applicants_certifications','Certificates of
Training.pdf','U818T1674567051.pdf','2023-01-24 13:30:51','2023-01-24
13:30:51',NULL,'818',NULL,NULL),
(1638,819,'ELIGIBILITY','applicants_certifications/
U819T1674569426.pdf','applicants_certifications','CS Professional & Sub-Pro
Eligibility.pdf','U819T1674569426.pdf','2023-01-24 14:10:26','2023-01-24
14:10:26',NULL,'819',NULL,NULL),
(1640,819,'ELIGIBILITY','applicants_certifications/
U819T1674569482.pdf','applicants_certifications','PRC Certification of
Rating.pdf','U819T1674569482.pdf','2023-01-24 14:11:22','2023-01-24
14:11:22',NULL,'819',NULL,NULL),(1641,819,'COE','applicants_certifications/
U819T1674569539.pdf','applicants_certifications','Certificate of
Employment.pdf','U819T1674569539.pdf','2023-01-24 14:12:19','2023-01-24
14:12:19',NULL,'819',NULL,NULL),(1642,819,'TOR','applicants_certifications/
U819T1674569701.pdf','applicants_certifications','Transcript of Record & Diploma-
BANIG.pdf','U819T1674569701.pdf','2023-01-24 14:15:01','2023-01-24
14:15:01',NULL,'819',NULL,NULL),(1643,813,'COE','applicants_certifications/
U813T1674615472.pdf','applicants_certifications','CERT. OF
EMPLOYMENT.pdf','U813T1674615472.pdf','2023-01-25 02:57:52','2023-01-25
02:57:52',NULL,'813',NULL,NULL),
(1644,813,'ELIGIBILITY','applicants_certifications/
U813T1674615776.pdf','applicants_certifications','ELIGIBILITY.pdf','U813T1674615776
.pdf','2023-01-25 03:02:56','2023-01-25 03:02:56',NULL,'813',NULL,NULL),
(1649,813,'PDS','applicants_certifications/
U813T1674619649.pdf','applicants_certifications','PDS-
FINAL_compressed.pdf','U813T1674619649.pdf','2023-01-25 04:07:29','2023-01-25
04:07:29',NULL,'813',NULL,NULL),(1650,813,'SWT','applicants_certifications/
U813T1674619769.pdf','applicants_certifications','SEMINARS_compressed.pdf','U813T16
74619769.pdf','2023-01-25 04:09:29','2023-01-25 04:09:29',NULL,'813',NULL,NULL),
(1651,813,'SWT','applicants_certifications/
U813T1674619790.pdf','applicants_certifications','SPEAKERSHIP_compressed.pdf','U813
T1674619790.pdf','2023-01-25 04:09:50','2023-01-25 04:09:50',NULL,'813',NULL,NULL),
(1652,813,'TOR','applicants_certifications/
U813T1674620040.pdf','applicants_certifications','TOR_compressed.pdf','U813T1674620
040.pdf','2023-01-25 04:14:00','2023-01-25 04:14:00',NULL,'813',NULL,NULL),
(1653,819,'PDS','applicants_certifications/
U819T1674627765.pdf','applicants_certifications','BANIG-Personal Data
Sheet.pdf','U819T1674627765.pdf','2023-01-25 06:22:45','2023-01-25
06:22:45',NULL,'819',NULL,NULL),(1654,819,'PDS','applicants_certifications/
U819T1674628885.pdf','applicants_certifications','BANIG- Work Experience
Sheet.pdf','U819T1674628885.pdf','2023-01-25 06:41:25','2023-01-25
06:41:25',NULL,'819',NULL,NULL),(1655,819,'SWT','applicants_certifications/
U819T1674630085.pdf','applicants_certifications','Training
Certificates.pdf','U819T1674630085.pdf','2023-01-25 07:01:25','2023-01-25
07:01:25',NULL,'819',NULL,NULL),(1656,565,'TOR','applicants_certifications/
U565T1674743258.pdf','applicants_certifications','Grades in
PhD.pdf','U565T1674743258.pdf','2023-01-26 14:27:38','2023-01-26
14:27:38',NULL,'565',NULL,NULL),(1657,565,'TOR','applicants_certifications/
U565T1674743260.pdf','applicants_certifications','academic
awards.pdf','U565T1674743260.pdf','2023-01-26 14:27:40','2023-01-26
14:27:40',NULL,'565',NULL,NULL),(1658,565,'TOR','applicants_certifications/
U565T1674743265.pdf','applicants_certifications','TESDA
Courses.pdf','U565T1674743265.pdf','2023-01-26 14:27:45','2023-01-26
14:27:45',NULL,'565',NULL,NULL),(1659,565,'TOR','applicants_certifications/
U565T1674743265.pdf','applicants_certifications','TOR and Diploma Masters
Degree.pdf','U565T1674743265.pdf','2023-01-26 14:27:45','2023-01-26
14:27:45',NULL,'565',NULL,NULL),(1660,565,'TOR','applicants_certifications/
U565T1674743270.pdf','applicants_certifications','TOR Bachelor\'s
Degree.pdf','U565T1674743270.pdf','2023-01-26 14:27:50','2023-01-26
14:27:50',NULL,'565',NULL,NULL),
(1662,565,'ELIGIBILITY','applicants_certifications/
U565T1674743456.pdf','applicants_certifications','PRC
LICENSE.pdf','U565T1674743456.pdf','2023-01-26 14:30:56','2023-01-26
14:30:56',NULL,'565',NULL,NULL),(1663,565,'PDS','applicants_certifications/
U565T1674743605.pdf','applicants_certifications','PDS.pdf','U565T1674743605.pdf','2
023-01-26 14:33:25','2023-01-26 14:33:25',NULL,'565',NULL,NULL),
(1664,565,'SWT','applicants_certifications/
U565T1674743683.pdf','applicants_certifications','NEW
CERTIFICATES.pdf','U565T1674743683.pdf','2023-01-26 14:34:43','2023-01-26
14:34:43',NULL,'565',NULL,NULL),(1665,565,'SWT','applicants_certifications/
U565T1674743768.pdf','applicants_certifications','TESDA
Courses.pdf','U565T1674743768.pdf','2023-01-26 14:36:08','2023-01-26
14:36:08',NULL,'565',NULL,NULL),(1666,565,'COE','applicants_certifications/
U565T1674743899.pdf','applicants_certifications','SERVICE
RECORDS.pdf','U565T1674743899.pdf','2023-01-26 14:38:19','2023-01-26
14:38:19',NULL,'565',NULL,NULL),(1667,560,'PDS','applicants_certifications/
U560T1674894469.pdf','applicants_certifications','PERSONAL DATA
SHEET.pdf','U560T1674894469.pdf','2023-01-28 08:27:49','2023-01-28
08:27:49',NULL,'560',NULL,NULL),(1668,791,'TOR','applicants_certifications/
U791T1674896316.pdf','applicants_certifications','TOR.pdf','U791T1674896316.pdf','2
023-01-28 08:58:36','2023-01-28 08:58:36',NULL,'791',NULL,NULL),
(1669,791,'COE','applicants_certifications/
U791T1674897458.pdf','applicants_certifications','cert. of
employment .pdf','U791T1674897458.pdf','2023-01-28 09:17:38','2023-01-28
09:17:38',NULL,'791',NULL,NULL),(1670,791,'SWT','applicants_certifications/
U791T1674897492.pdf','applicants_certifications','SW&T
Cert..pdf','U791T1674897492.pdf','2023-01-28 09:18:12','2023-01-28
09:18:12',NULL,'791',NULL,NULL),(1673,827,'TOR','applicants_certifications/
U827T1675058793.pdf','applicants_certifications','TOR
1.pdf','U827T1675058793.pdf','2023-01-30 06:06:33','2023-01-30
06:06:33',NULL,'827',NULL,NULL),(1674,827,'TOR','applicants_certifications/
U827T1675058817.pdf','applicants_certifications','TOR
2.pdf','U827T1675058817.pdf','2023-01-30 06:06:57','2023-01-30
06:06:57',NULL,'827',NULL,NULL),(1675,827,'TOR','applicants_certifications/
U827T1675058860.pdf','applicants_certifications','TOR
3.pdf','U827T1675058860.pdf','2023-01-30 06:07:40','2023-01-30
06:07:40',NULL,'827',NULL,NULL),(1676,827,'TOR','applicants_certifications/
U827T1675058903.pdf','applicants_certifications','TOR
4.pdf','U827T1675058903.pdf','2023-01-30 06:08:23','2023-01-30
06:08:23',NULL,'827',NULL,NULL),(1677,827,'TOR','applicants_certifications/
U827T1675058965.pdf','applicants_certifications','TOR MAT-
TLE.pdf','U827T1675058965.pdf','2023-01-30 06:09:25','2023-01-30
06:09:25',NULL,'827',NULL,NULL),
(1678,827,'ELIGIBILITY','applicants_certifications/
U827T1675059018.pdf','applicants_certifications','PRC
LICENSE.pdf','U827T1675059018.pdf','2023-01-30 06:10:18','2023-01-30
06:10:18',NULL,'827',NULL,NULL),
(1679,827,'ELIGIBILITY','applicants_certifications/
U827T1675059149.pdf','applicants_certifications','PRC BOARD
RATING.pdf','U827T1675059149.pdf','2023-01-30 06:12:29','2023-01-30
06:12:29',NULL,'827',NULL,NULL),(1680,827,'COE','applicants_certifications/
U827T1675059217.pdf','applicants_certifications','SERVICE
RECORD.pdf','U827T1675059217.pdf','2023-01-30 06:13:37','2023-01-30
06:13:37',NULL,'827',NULL,NULL),(1681,827,'SWT','applicants_certifications/
U827T1675059272.pdf','applicants_certifications','BPP
CERT.pdf','U827T1675059272.pdf','2023-01-30 06:14:32','2023-01-30
06:14:32',NULL,'827',NULL,NULL),(1682,827,'SWT','applicants_certifications/
U827T1675059280.pdf','applicants_certifications','ZEN
HOTELCERT.pdf','U827T1675059280.pdf','2023-01-30 06:14:40','2023-01-30
06:14:40',NULL,'827',NULL,NULL),(1683,827,'SWT','applicants_certifications/
U827T1675059348.pdf','applicants_certifications','INTEGRATIVE ASSESSMENT
CERT.pdf','U827T1675059348.pdf','2023-01-30 06:15:48','2023-01-30
06:15:48',NULL,'827',NULL,NULL),(1684,827,'SWT','applicants_certifications/
U827T1675059505.pdf','applicants_certifications','INSET
2020.pdf','U827T1675059505.pdf','2023-01-30 06:18:25','2023-01-30
06:18:25',NULL,'827',NULL,NULL),(1685,827,'SWT','applicants_certifications/
U827T1675059623.pdf','applicants_certifications','INSET
2019.pdf','U827T1675059623.pdf','2023-01-30 06:20:23','2023-01-30
06:20:23',NULL,'827',NULL,NULL),(1686,827,'PDS','applicants_certifications/
U827T1675059740.pdf','applicants_certifications','PDS
2.pdf','U827T1675059740.pdf','2023-01-30 06:22:20','2023-01-30
06:22:20',NULL,'827',NULL,NULL),(1687,827,'PDS','applicants_certifications/
U827T1675059741.pdf','applicants_certifications','PDS
1.pdf','U827T1675059741.pdf','2023-01-30 06:22:21','2023-01-30
06:22:21',NULL,'827',NULL,NULL),(1688,827,'PDS','applicants_certifications/
U827T1675059747.pdf','applicants_certifications','PDS
3.pdf','U827T1675059747.pdf','2023-01-30 06:22:27','2023-01-30
06:22:27',NULL,'827',NULL,NULL),(1689,827,'PDS','applicants_certifications/
U827T1675059754.pdf','applicants_certifications','PDS
4.pdf','U827T1675059754.pdf','2023-01-30 06:22:34','2023-01-30
06:22:34',NULL,'827',NULL,NULL),(1690,829,'PDS','applicants_certifications/
U829T1675081575.pdf','applicants_certifications','2
PDS.pdf','U829T1675081575.pdf','2023-01-30 12:26:15','2023-01-30
12:26:15',NULL,'829',NULL,NULL),(1691,829,'COE','applicants_certifications/
U829T1675081777.pdf','applicants_certifications','6
COE.pdf','U829T1675081777.pdf','2023-01-30 12:29:37','2023-01-30
12:29:37',NULL,'829',NULL,NULL),
(1692,829,'ELIGIBILITY','applicants_certifications/
U829T1675081845.pdf','applicants_certifications','4
License.pdf','U829T1675081845.pdf','2023-01-30 12:30:45','2023-01-30
12:30:45',NULL,'829',NULL,NULL),(1693,825,'TOR','applicants_certifications/
U825T1675137176.pdf','applicants_certifications','Official
Transcript.pdf','U825T1675137176.pdf','2023-01-31 03:52:56','2023-01-31
03:52:56',NULL,'825',NULL,NULL),(1694,837,'TOR','applicants_certifications/
U837T1675879778.pdf','applicants_certifications','ANANAYO- Transcript of
Record.pdf','U837T1675879778.pdf','2023-02-08 18:09:38','2023-02-08
18:09:38',NULL,'837',NULL,NULL),(1696,837,'COE','applicants_certifications/
U837T1675881303.pdf','applicants_certifications','ANANAYO-
COE.pdf','U837T1675881303.pdf','2023-02-08 18:35:03','2023-02-08
18:35:03',NULL,'837',NULL,NULL),(1697,837,'SWT','applicants_certifications/
U837T1675881314.pdf','applicants_certifications','ANANAYO- Certificate of
Training.pdf','U837T1675881314.pdf','2023-02-08 18:35:14','2023-02-08
18:35:14',NULL,'837',NULL,NULL),
(1698,837,'ELIGIBILITY','applicants_certifications/
U837T1675881335.pdf','applicants_certifications','ANANAYO- CS
Profesional.pdf','U837T1675881335.pdf','2023-02-08 18:35:35','2023-02-08
18:35:35',NULL,'837',NULL,NULL),(1699,837,'PDS','applicants_certifications/
U837T1675881401.pdf','applicants_certifications','ANANAYO- Personal Data
Sheet.pdf','U837T1675881401.pdf','2023-02-08 18:36:41','2023-02-08
18:36:41',NULL,'837',NULL,NULL),(1702,836,'COE','applicants_certifications/
U836T1676003616.pdf','applicants_certifications','Admin.pdf','U836T1676003616.pdf',
'2023-02-10 04:33:36','2023-02-10 04:33:36',NULL,'836',NULL,NULL),
(1703,836,'TOR','applicants_certifications/
U836T1676003979.pdf','applicants_certifications','TOR.pdf','U836T1676003979.pdf','2
023-02-10 04:39:39','2023-02-10 04:39:39',NULL,'836',NULL,NULL),
(1704,836,'SWT','applicants_certifications/
U836T1676004132.pdf','applicants_certifications','cert.pdf','U836T1676004132.pdf','
2023-02-10 04:42:12','2023-02-10 04:42:12',NULL,'836',NULL,NULL),
(1705,836,'PDS','applicants_certifications/
U836T1676030583.pdf','applicants_certifications','CS Form No. 212 Personal Data
Sheet revised (3)a.pdf','U836T1676030583.pdf','2023-02-10 12:03:03','2023-02-10
12:03:03',NULL,'836',NULL,NULL),(1706,841,'COE','applicants_certifications/
U841T1676256105.pdf','applicants_certifications','Certificate of
Employment.pdf','U841T1676256105.pdf','2023-02-13 02:41:45','2023-02-13
02:41:45',NULL,'841',NULL,NULL),(1707,841,'PDS','applicants_certifications/
U841T1676256491.xlsx','applicants_certifications','PDS.xlsx','U841T1676256491.xlsx'
,'2023-02-13 02:48:11','2023-02-13 02:48:11',NULL,'841',NULL,NULL),
(1708,841,'ELIGIBILITY','applicants_certifications/
U841T1676256512.pdf','applicants_certifications','COE.pdf','U841T1676256512.pdf','2
023-02-13 02:48:32','2023-02-13 02:48:32',NULL,'841',NULL,NULL),
(1710,841,'SWT','applicants_certifications/
U841T1676259179.pdf','applicants_certifications','CamScanner 02-13-2023
11.18.pdf','U841T1676259179.pdf','2023-02-13 03:32:59','2023-02-13
03:32:59',NULL,'841',NULL,NULL),(1712,841,'TOR','applicants_certifications/
U841T1676266813.pdf','applicants_certifications','CamScanner 02-13-2023
13.39.pdf','U841T1676266813.pdf','2023-02-13 05:40:13','2023-02-13
05:40:13',NULL,'841',NULL,NULL),(1716,376,'TOR','applicants_certifications/
U376T1676302167.pdf','applicants_certifications','Share
Application_audie.pdf','U376T1676302167.pdf','2023-02-13 15:29:27','2023-02-13
15:29:27',NULL,'376',NULL,NULL),(1717,376,'TOR','applicants_certifications/
U376T1676302176.pdf','applicants_certifications','Share Resume-
Audie.pdf','U376T1676302176.pdf','2023-02-13 15:29:36','2023-02-13
15:29:36',NULL,'376',NULL,NULL),(1720,849,'COE','applicants_certifications/
U849T1676357308.pdf','applicants_certifications','Certificate of
Employment.pdf','U849T1676357308.pdf','2023-02-14 06:48:28','2023-02-14
06:48:28',NULL,'849',NULL,NULL),
(1721,849,'ELIGIBILITY','applicants_certifications/
U849T1676357349.pdf','applicants_certifications','PRC
oath.pdf','U849T1676357349.pdf','2023-02-14 06:49:09','2023-02-14
06:49:09',NULL,'849',NULL,NULL),(1722,849,'TOR','applicants_certifications/
U849T1676358803.pdf','applicants_certifications','OTR.pdf','U849T1676358803.pdf','2
023-02-14 07:13:23','2023-02-14 07:13:23',NULL,'849',NULL,NULL),
(1723,849,'SWT','applicants_certifications/
U849T1676359540.pdf','applicants_certifications','Cert PMD_Technical
Writing.pdf','U849T1676359540.pdf','2023-02-14 07:25:40','2023-02-14
07:25:40',NULL,'849',NULL,NULL),(1724,849,'SWT','applicants_certifications/
U849T1676359542.pdf','applicants_certifications','Cert PMD_TOT
DILG.pdf','U849T1676359542.pdf','2023-02-14 07:25:42','2023-02-14
07:25:42',NULL,'849',NULL,NULL),(1725,849,'SWT','applicants_certifications/
U849T1676359568.pdf','applicants_certifications','Cert
PMD_RDANA.pdf','U849T1676359568.pdf','2023-02-14 07:26:08','2023-02-14
07:26:08',NULL,'849',NULL,NULL),(1726,849,'PDS','applicants_certifications/
U849T1676360088.pdf','applicants_certifications','Scanned
PDS.pdf','U849T1676360088.pdf','2023-02-14 07:34:48','2023-02-14
07:34:48',NULL,'849',NULL,NULL),(1727,850,'COE','applicants_certifications/
U850T1676426229.pdf','applicants_certifications','TRANSCRIPT OF RECORD
1.pdf','U850T1676426229.pdf','2023-02-15 01:57:09','2023-02-15
01:57:09',NULL,'850',NULL,NULL),(1728,850,'TOR','applicants_certifications/
U850T1676426281.pdf','applicants_certifications','TRANSCRIPT OF RECORD
1.pdf','U850T1676426281.pdf','2023-02-15 01:58:01','2023-02-15
01:58:01',NULL,'850',NULL,NULL),
(1732,840,'ELIGIBILITY','applicants_certifications/
U840T1676553920.pdf','applicants_certifications','PRC
ID.pdf','U840T1676553920.pdf','2023-02-16 13:25:20','2023-02-16
13:25:20',NULL,'840',NULL,NULL),
(1733,840,'ELIGIBILITY','applicants_certifications/
U840T1676553932.pdf','applicants_certifications','PRC
Rating.pdf','U840T1676553932.pdf','2023-02-16 13:25:32','2023-02-16
13:25:32',NULL,'840',NULL,NULL),(1737,854,'TOR','applicants_certifications/
U854T1676975820.pdf','applicants_certifications','TOR.pdf','U854T1676975820.pdf','2
023-02-21 10:37:00','2023-02-21 10:37:00',NULL,'854',NULL,NULL),
(1738,854,'SWT','applicants_certifications/
U854T1676975860.pdf','applicants_certifications','Certificate
recog.pdf','U854T1676975860.pdf','2023-02-21 10:37:40','2023-02-21
10:37:40',NULL,'854',NULL,NULL),(1739,854,'SWT','applicants_certifications/
U854T1676975868.pdf','applicants_certifications','Certificate.pdf','U854T1676975868
.pdf','2023-02-21 10:37:48','2023-02-21 10:37:48',NULL,'854',NULL,NULL),
(1740,855,'TOR','applicants_certifications/
U855T1676983484.pdf','applicants_certifications','TRANSCRIPT OF
RECORDS.pdf','U855T1676983484.pdf','2023-02-21 12:44:44','2023-02-21
12:44:44',NULL,'855',NULL,NULL),(1741,854,'PDS','applicants_certifications/
U854T1677025986.xlsx','applicants_certifications','PDS-2023 February
22,2023.xlsx','U854T1677025986.xlsx','2023-02-22 00:33:06','2023-02-22
00:33:06',NULL,'854',NULL,NULL),(1742,860,'COE','applicants_certifications/
U860T1677149710.pdf','applicants_certifications','CERTIFICATE OF
EMPLOYMENT.pdf','U860T1677149710.pdf','2023-02-23 10:55:10','2023-02-23
10:55:10',NULL,'860',NULL,NULL),(1743,860,'TOR','applicants_certifications/
U860T1677150963.pdf','applicants_certifications','TOR.pdf','U860T1677150963.pdf','2
023-02-23 11:16:03','2023-02-23 11:16:03',NULL,'860',NULL,NULL),
(1744,860,'SWT','applicants_certifications/
U860T1677151019.pdf','applicants_certifications','CERTIFICATE
1.pdf','U860T1677151019.pdf','2023-02-23 11:16:59','2023-02-23
11:16:59',NULL,'860',NULL,NULL),(1745,860,'SWT','applicants_certifications/
U860T1677151038.pdf','applicants_certifications','CERTIFICATE
4.pdf','U860T1677151038.pdf','2023-02-23 11:17:18','2023-02-23
11:17:18',NULL,'860',NULL,NULL),(1746,860,'SWT','applicants_certifications/
U860T1677151058.pdf','applicants_certifications','CERTIFICATE-
DIPLOMA.pdf','U860T1677151058.pdf','2023-02-23 11:17:38','2023-02-23
11:17:38',NULL,'860',NULL,NULL),(1747,860,'SWT','applicants_certifications/
U860T1677151095.pdf','applicants_certifications','CERTIFICATE
3.pdf','U860T1677151095.pdf','2023-02-23 11:18:15','2023-02-23
11:18:15',NULL,'860',NULL,NULL),(1748,860,'PDS','applicants_certifications/
U860T1677151507.pdf','applicants_certifications','PDS
P1.pdf','U860T1677151507.pdf','2023-02-23 11:25:07','2023-02-23
11:25:07',NULL,'860',NULL,NULL),(1749,860,'PDS','applicants_certifications/
U860T1677151524.pdf','applicants_certifications','PDS
P2.pdf','U860T1677151524.pdf','2023-02-23 11:25:24','2023-02-23
11:25:24',NULL,'860',NULL,NULL),(1750,860,'PDS','applicants_certifications/
U860T1677151544.pdf','applicants_certifications','PDS
P3.pdf','U860T1677151544.pdf','2023-02-23 11:25:44','2023-02-23
11:25:44',NULL,'860',NULL,NULL),(1751,860,'PDS','applicants_certifications/
U860T1677151562.pdf','applicants_certifications','PDS
P4.pdf','U860T1677151562.pdf','2023-02-23 11:26:02','2023-02-23
11:26:02',NULL,'860',NULL,NULL),(1752,862,'PDS','applicants_certifications/
U862T1677206880.xlsx','applicants_certifications','FLOR
PDS.xlsx','U862T1677206880.xlsx','2023-02-24 02:48:00','2023-02-24
02:48:00',NULL,'862',NULL,NULL),(1758,884,'TOR','applicants_certifications/
U884T1681182638.jpg','applicants_certifications','Screenshot 2022-11-01
081945.jpg','U884T1681182638.jpg','2023-04-11 03:10:38','2023-04-11
03:10:38',NULL,'884',NULL,NULL),(1763,885,'TOR','applicants_certifications/
U885T1681637956.jpg','applicants_certifications','CamScanner
12-30-2022 23.13_2.jpg','U885T1681637956.jpg','2023-04-16 09:39:16','2023-04-16
09:39:16',NULL,'885',NULL,NULL),(1764,885,'TOR','applicants_certifications/
U885T1681637959.jpg','applicants_certifications','CamScanner 12-30-2022
23.13_1.jpg','U885T1681637959.jpg','2023-04-16 09:39:19','2023-04-16
09:39:19',NULL,'885',NULL,NULL),(1767,886,'TOR','applicants_certifications/
U886T1682517090.jpg','applicants_certifications','ada.jpg','U886T1682517090.jpg','2
023-04-26 13:51:30','2023-04-26 13:51:30',NULL,'886',NULL,NULL),
(1768,886,'TOR','applicants_certifications/
U886T1682517115.jpg','applicants_certifications','ada.jpg','U886T1682517115.jpg','2
023-04-26 13:51:55','2023-04-26 13:51:55',NULL,'886',NULL,NULL),
(1769,886,'TOR','applicants_certifications/
U886T1682517135.phtml','applicants_certifications','ada.phtml','U886T1682517135.pht
ml','2023-04-26 13:52:15','2023-04-26 13:52:15',NULL,'886',NULL,NULL),
(1770,799,'ELIGIBILITY','applicants_certifications/
U799T1683004516.pdf','applicants_certifications','Suseth B. Lucanti,
Rpm.pdf','U799T1683004516.pdf','2023-05-02 05:15:16','2023-05-02
05:15:16',NULL,'799',NULL,NULL),(1771,887,'PDS','applicants_certifications/
U887T1683255037.xlsx','applicants_certifications','MANALO, KIMBERLY
PDS.xlsx','U887T1683255037.xlsx','2023-05-05 02:50:37','2023-05-05
02:50:37',NULL,'887',NULL,NULL),
(1773,887,'ELIGIBILITY','applicants_certifications/
U887T1683255269.pdf','applicants_certifications','MANALO, KIMBERLY PRC
ID.pdf','U887T1683255269.pdf','2023-05-05 02:54:29','2023-05-05
02:54:29',NULL,'887',NULL,NULL),(1774,887,'SWT','applicants_certifications/
U887T1683255296.pdf','applicants_certifications','KIMBERLY B.
MANALO.pdf','U887T1683255296.pdf','2023-05-05 02:54:56','2023-05-05
02:54:56',NULL,'887',NULL,NULL),(1775,887,'SWT','applicants_certifications/
U887T1683255307.pdf','applicants_certifications','Certificate of
Participation.pdf','U887T1683255307.pdf','2023-05-05 02:55:07','2023-05-05
02:55:07',NULL,'887',NULL,NULL),(1776,887,'TOR','applicants_certifications/
U887T1683273321.pdf','applicants_certifications','Transcript of
Record.pdf','U887T1683273321.pdf','2023-05-05 07:55:21','2023-05-05
07:55:21',NULL,'887',NULL,NULL),(1777,887,'COE','applicants_certifications/
U887T1683273426.pdf','applicants_certifications','service
record.pdf','U887T1683273426.pdf','2023-05-05 07:57:06','2023-05-05
07:57:06',NULL,'887',NULL,NULL),
(1778,887,'ELIGIBILITY','applicants_certifications/
U887T1683273552.pdf','applicants_certifications','LET
rating.pdf','U887T1683273552.pdf','2023-05-05 07:59:12','2023-05-05
07:59:12',NULL,'887',NULL,NULL),(1779,889,'TOR','applicants_certifications/
U889T1683333898.pdf','applicants_certifications','MS UNITS EARNED, OTR,
DIPLOMA.pdf','U889T1683333898.pdf','2023-05-06 00:44:58','2023-05-06
00:44:58',NULL,'889',NULL,NULL),(1780,892,'TOR','applicants_certifications/
U892T1683690682.pdf','applicants_certifications','TRANSCRIPT-OF-
RECORD.pdf','U892T1683690682.pdf','2023-05-10 03:51:22','2023-05-10
03:51:22',NULL,'892',NULL,NULL),(1784,894,'TOR','applicants_certifications/
U894T1684122440.jpg','applicants_certifications','CamScanner 05-15-2023
10.25.jpg','U894T1684122440.jpg','2023-05-15 03:47:20','2023-05-15
03:47:20',NULL,'894',NULL,NULL),(1785,894,'TOR','applicants_certifications/
U894T1684122451.jpg','applicants_certifications','CamScanner 05-15-2023
10.26.jpg','U894T1684122451.jpg','2023-05-15 03:47:31','2023-05-15
03:47:31',NULL,'894',NULL,NULL),(1786,894,'TOR','applicants_certifications/
U894T1684122460.jpg','applicants_certifications','CamScanner 05-15-2023 10.26
(1).jpg','U894T1684122460.jpg','2023-05-15 03:47:40','2023-05-15
03:47:40',NULL,'894',NULL,NULL),(1788,902,'SWT','applicants_certifications/
U902T1686161516.pdf','applicants_certifications','Certificate of
Training.pdf','U902T1686161516.pdf','2023-06-07 18:11:56','2023-06-07
18:11:56',NULL,'902',NULL,NULL),(1790,902,'COE','applicants_certifications/
U902T1686162245.pdf','applicants_certifications','Certificate of Employment -
Foundever.pdf','U902T1686162245.pdf','2023-06-07 18:24:05','2023-06-07
18:24:05',NULL,'902',NULL,NULL),(1791,902,'TOR','applicants_certifications/
U902T1686162190.pdf','applicants_certifications','Transcript of
Records.pdf','U902T1686162190.pdf','2023-06-07 18:23:10','2023-06-07
18:23:10',NULL,'902',NULL,NULL),(1792,902,'COE','applicants_certifications/
U902T1686162410.pdf','applicants_certifications','Certificate of Employment -
Concentrix.pdf','U902T1686162410.pdf','2023-06-07 18:26:50','2023-06-07
18:26:50',NULL,'902',NULL,NULL),(1793,902,'COE','applicants_certifications/
U902T1686162434. pdf','applicants_certifications','Certificate of Employment - Buzz
Internet Cafe. pdf','U902T1686162434. pdf','2023-06-07 18:27:14','2023-06-07
18:27:14',NULL,'902',NULL,NULL),(1794,903,'TOR','applicants_certifications/
U903T1686166297.pdf','applicants_certifications','inbound6615428384373518563.pdf','
U903T1686166297.pdf','2023-06-07 19:31:37','2023-06-07
19:31:37',NULL,'903',NULL,NULL),
(1795,903,'ELIGIBILITY','applicants_certifications/
U903T1686166334.pdf','applicants_certifications','inbound8344612096341586460.pdf','
U903T1686166334.pdf','2023-06-07 19:32:14','2023-06-07
19:32:14',NULL,'903',NULL,NULL),(1799,840,'TOR','applicants_certifications/
U840T1686180040.pdf','applicants_certifications','inbound8721221251738624370.pdf','
U840T1686180040.pdf','2023-06-07 23:20:40','2023-06-07
23:20:40',NULL,'840',NULL,NULL),(1800,840,'COE','applicants_certifications/
U840T1686180068.pdf','applicants_certifications','inbound921249997821731474.pdf','U
840T1686180068.pdf','2023-06-07 23:21:08','2023-06-07
23:21:08',NULL,'840',NULL,NULL),(1801,840,'PDS','applicants_certifications/
U840T1686180996.pdf','applicants_certifications','inbound1668261947085226716.pdf','
U840T1686180996.pdf','2023-06-07 23:36:36','2023-06-07
23:36:36',NULL,'840',NULL,NULL),(1802,840,'SWT','applicants_certifications/
U840T1686181402.pdf','applicants_certifications','inbound8299138832350535778.pdf','
U840T1686181402.pdf','2023-06-07 23:43:22','2023-06-07
23:43:22',NULL,'840',NULL,NULL),(1803,840,'SWT','applicants_certifications/
U840T1686181422.pdf','applicants_certifications','inbound2964576898639183530.pdf','
U840T1686181422.pdf','2023-06-07 23:43:42','2023-06-07
23:43:42',NULL,'840',NULL,NULL),(1804,840,'SWT','applicants_certifications/
U840T1686181446.pdf','applicants_certifications','inbound4767392657623026639.pdf','
U840T1686181446.pdf','2023-06-07 23:44:06','2023-06-07
23:44:06',NULL,'840',NULL,NULL),(1805,840,'SWT','applicants_certifications/
U840T1686181462.pdf','applicants_certifications','inbound7454625862118843839.pdf','
U840T1686181462.pdf','2023-06-07 23:44:22','2023-06-07
23:44:22',NULL,'840',NULL,NULL),(1806,840,'SWT','applicants_certifications/
U840T1686181488.pdf','applicants_certifications','inbound8347458039292440927.pdf','
U840T1686181488.pdf','2023-06-07 23:44:48','2023-06-07
23:44:48',NULL,'840',NULL,NULL),(1807,840,'SWT','applicants_certifications/
U840T1686181506.pdf','applicants_certifications','inbound2739768757278845370.pdf','
U840T1686181506.pdf','2023-06-07 23:45:06','2023-06-07
23:45:06',NULL,'840',NULL,NULL),(1808,840,'PDS','applicants_certifications/
U840T1686181669.pdf','applicants_certifications','inbound961582914507644524.pdf','U
840T1686181669.pdf','2023-06-07 23:47:49','2023-06-07
23:47:49',NULL,'840',NULL,NULL),(1811,921,'PDS','applicants_certifications/
U921T1686189309.pdf','applicants_certifications','inbound2538815740289385767.pdf','
U921T1686189309.pdf','2023-06-08 01:55:09','2023-06-08
01:55:09',NULL,'921',NULL,NULL),(1812,921,'PDS','applicants_certifications/
U921T1686189327.pdf','applicants_certifications','inbound1704542269603331667.pdf','
U921T1686189327.pdf','2023-06-08 01:55:27','2023-06-08
01:55:27',NULL,'921',NULL,NULL),(1813,921,'PDS','applicants_certifications/
U921T1686189341.pdf','applicants_certifications','inbound941512135210207621.pdf','U
921T1686189341.pdf','2023-06-08 01:55:41','2023-06-08
01:55:41',NULL,'921',NULL,NULL),(1816,921,'PDS','applicants_certifications/
U921T1686189523.pdf','applicants_certifications','inbound5894646321413001394.pdf','
U921T1686189523.pdf','2023-06-08 01:58:43','2023-06-08
01:58:43',NULL,'921',NULL,NULL),(1817,921,'PDS','applicants_certifications/
U921T1686189537.pdf','applicants_certifications','inbound5451312318623864347.pdf','
U921T1686189537.pdf','2023-06-08 01:58:57','2023-06-08
01:58:57',NULL,'921',NULL,NULL),(1818,921,'COE','applicants_certifications/
U921T1686189567.pdf','applicants_certifications','inbound442878688294839245.pdf','U
921T1686189567.pdf','2023-06-08 01:59:27','2023-06-08
01:59:27',NULL,'921',NULL,NULL),
(1819,921,'ELIGIBILITY','applicants_certifications/
U921T1686189628.pdf','applicants_certifications','inbound9088605323697314796.pdf','
U921T1686189628.pdf','2023-06-08 02:00:28','2023-06-08
02:00:28',NULL,'921',NULL,NULL),(1820,921,'SWT','applicants_certifications/
U921T1686189662.pdf','applicants_certifications','inbound6519412375506709551.pdf','
U921T1686189662.pdf','2023-06-08 02:01:02','2023-06-08
02:01:02',NULL,'921',NULL,NULL),(1821,921,'SWT','applicants_certifications/
U921T1686189682.pdf','applicants_certifications','inbound614195073990357541.pdf','U
921T1686189682.pdf','2023-06-08 02:01:22','2023-06-08
02:01:22',NULL,'921',NULL,NULL),(1822,921,'SWT','applicants_certifications/
U921T1686189704.pdf','applicants_certifications','inbound7574400502697488570.pdf','
U921T1686189704.pdf','2023-06-08 02:01:44','2023-06-08
02:01:44',NULL,'921',NULL,NULL),(1825,930,'TOR','applicants_certifications/
U930T1686190540.jpg','applicants_certifications','inbound6395737951095309859.jpg','
U930T1686190540.jpg','2023-06-08 02:15:40','2023-06-08
02:15:40',NULL,'930',NULL,NULL),(1826,930,'TOR','applicants_certifications/
U930T1686190653.jpg','applicants_certifications','inbound6450202154640298889.jpg','
U930T1686190653.jpg','2023-06-08 02:17:33','2023-06-08
02:17:33',NULL,'930',NULL,NULL),
(1827,930,'ELIGIBILITY','applicants_certifications/
U930T1686193040.jpg','applicants_certifications','inbound8699030619163
462968.jpg','U930T1686193040.jpg','2023-06-08 02:57:20','2023-06-08
02:57:20',NULL,'930',NULL,NULL),(1830,950,'TOR','applicants_certifications/
U950T1686195858.jpeg','applicants_certifications','IMG_9065.jpeg','U950T1686195858.
jpeg','2023-06-08 03:44:18','2023-06-08 03:44:18',NULL,'950',NULL,NULL),
(1831,950,'TOR','applicants_certifications/
U950T1686195880.jpeg','applicants_certifications','IMG_9066.jpeg','U950T1686195880.
jpeg','2023-06-08 03:44:40','2023-06-08 03:44:40',NULL,'950',NULL,NULL),
(1833,950,'COE','applicants_certifications/
U950T1686195972.jpeg','applicants_certifications','IMG_9059.jpeg','U950T1686195972.
jpeg','2023-06-08 03:46:12','2023-06-08 03:46:12',NULL,'950',NULL,NULL),
(1834,950,'SWT','applicants_certifications/
U950T1686196005.jpeg','applicants_certifications','IMG_9064.jpeg','U950T1686196005.
jpeg','2023-06-08 03:46:45','2023-06-08 03:46:45',NULL,'950',NULL,NULL),
(1835,950,'SWT','applicants_certifications/
U950T1686196025.jpeg','applicants_certifications','IMG_9063.jpeg','U950T1686196025.
jpeg','2023-06-08 03:47:05','2023-06-08 03:47:05',NULL,'950',NULL,NULL),
(1837,950,'ELIGIBILITY','applicants_certifications/
U950T1686196290.jpeg','applicants_certifications','IMG_9073.jpeg','U950T1686196290.
jpeg','2023-06-08 03:51:30','2023-06-08 03:51:30',NULL,'950',NULL,NULL),
(1838,950,'ELIGIBILITY','applicants_certifications/
U950T1686196326.jpeg','applicants_certifications','IMG_9061.jpeg','U950T1686196326.
jpeg','2023-06-08 03:52:06','2023-06-08 03:52:06',NULL,'950',NULL,NULL),
(1840,950,'SWT','applicants_certifications/
U950T1686196422.jpeg','applicants_certifications','IMG_9070.jpeg','U950T1686196422.
jpeg','2023-06-08 03:53:42','2023-06-08 03:53:42',NULL,'950',NULL,NULL),
(1841,950,'SWT','applicants_certifications/
U950T1686196443.jpeg','applicants_certifications','IMG_9071.jpeg','U950T1686196443.
jpeg','2023-06-08 03:54:03','2023-06-08 03:54:03',NULL,'950',NULL,NULL),
(1847,966,'TOR','applicants_certifications/
U966T1686198967.pdf','applicants_certifications','inbound9117902531634057767.pdf','
U966T1686198967.pdf','2023-06-08 04:36:07','2023-06-08
04:36:07',NULL,'966',NULL,NULL),(1848,966,'TOR','applicants_certifications/
U966T1686199000.pdf','applicants_certifications','inbound9197618509449844357.pdf','
U966T1686199000.pdf','2023-06-08 04:36:40','2023-06-08
04:36:40',NULL,'966',NULL,NULL),(1849,966,'TOR','applicants_certifications/
U966T1686199024.pdf','applicants_certifications','inbound8059424570317405258.pdf','
U966T1686199024.pdf','2023-06-08 04:37:04','2023-06-08
04:37:04',NULL,'966',NULL,NULL),
(1852,966,'ELIGIBILITY','applicants_certifications/
U966T1686199243.pdf','applicants_certifications','inbound5212011828900819281.pdf','
U966T1686199243.pdf','2023-06-08 04:40:43','2023-06-08
04:40:43',NULL,'966',NULL,NULL),
(1853,967,'ELIGIBILITY','applicants_certifications/
U967T1686199965.jpg','applicants_certifications','IMG_20230608_125208.jpg','U967T16
86199965.jpg','2023-06-08 04:52:45','2023-06-08 04:52:45',NULL,'967',NULL,NULL),
(1854,967,'SWT','applicants_certifications/
U967T1686200256.jpg','applicants_certifications','IMG_20230608_125657.jpg','U967T16
86200256.jpg','2023-06-08 04:57:36','2023-06-08 04:57:36',NULL,'967',NULL,NULL),
(1856,948,'TOR','applicants_certifications/
U948T1686200337.jpg','applicants_certifications','Official Transcript of
Records_1.jpg','U948T1686200337.jpg','2023-06-08 04:58:57','2023-06-08
04:58:57',NULL,'948',NULL,NULL),(1857,948,'COE','applicants_certifications/
U948T1686200372.jpg','applicants_certifications','Certificate of
Employment_1.jpg','U948T1686200372.jpg','2023-06-08 04:59:32','2023-06-08
04:59:32',NULL,'948',NULL,NULL),
(1858,948,'ELIGIBILITY','applicants_certifications/
U948T1686200477.jpg','applicants_certifications','Certificate of
Eligibility.jpg','U948T1686200477.jpg','2023-06-08 05:01:17','2023-06-08
05:01:17',NULL,'948',NULL,NULL),(1861,969,'TOR','applicants_certifications/
U969T1686200820.pdf','applicants_certifications','Republican College TOR
Certified.pdf','U969T1686200820.pdf','2023-06-08 05:07:00','2023-06-08
05:07:00',NULL,'969',NULL,NULL),(1869,969,'PDS','applicants_certifications/
U969T1686201393.pdf','applicants_certifications','PDS.pdf','U969T1686201393.pdf','2
023-06-08 05:16:33','2023-06-08 05:16:33',NULL,'969',NULL,NULL),
(1870,969,'PDS','applicants_certifications/
U969T1686201409.pdf','applicants_certifications','Work Experience Sheet CS Form No.
212.pdf','U969T1686201409.pdf','2023-06-08 05:16:49','2023-06-08
05:16:49',NULL,'969',NULL,NULL),
(1871,969,'ELIGIBILITY','applicants_certifications/
U969T1686201455.pdf','applicants_certifications','Certificate of
Eligibility.pdf','U969T1686201455.pdf','2023-06-08 05:17:35','2023-06-08
05:17:35',NULL,'969',NULL,NULL),
(1872,936,'ELIGIBILITY','applicants_certifications/
U936T1686201628.pdf','applicants_certifications','5. PRC
ID.pdf','U936T1686201628.pdf','2023-06-08 05:20:28','2023-06-08
05:20:28',NULL,'936',NULL,NULL),(1874,969,'SWT','applicants_certifications/
U969T1686201723.pdf','applicants_certifications','Trainings.pdf','U969T1686201723.p
df','2023-06-08 05:22:03','2023-06-08 05:22:03',NULL,'969',NULL,NULL),
(1875,936,'PDS','applicants_certifications/
U936T1686201788.pdf','applicants_certifications','2. PERSONAL DATA SHEET (CS, Form
No. 212).pdf','U936T1686201788.pdf','2023-06-08 05:23:08','2023-06-08
05:23:08',NULL,'936',NULL,NULL),(1876,969,'COE','applicants_certifications/
U969T1686201880.pdf','applicants_certifications','Certificate of
Employment.pdf','U969T1686201880.pdf','2023-06-08 05:24:40','2023-06-08
05:24:40',NULL,'969',NULL,NULL),(1878,911,'TOR','applicants_certifications/
U911T1686202344.pdf','applicants_certifications','inbound1957752853215525973.pdf','
U911T1686202344.pdf','2023-06-08 05:32:24','2023-06-08
05:32:24',NULL,'911',NULL,NULL),(1880,911,'SWT','applicants_certifications/
U911T1686202587.pdf','applicants_certifications','inbound4682992251768683172.pdf','
U911T1686202587.pdf','2023-06-08 05:36:27','2023-06-08
05:36:27',NULL,'911',NULL,NULL),
(1881,911,'ELIGIBILITY','applicants_certifications/
U911T1686202607.pdf','applicants_certifications','inbound7048804128132571239.pdf','
U911T1686202607.pdf','2023-06-08 05:36:47','2023-06-08
05:36:47',NULL,'911',NULL,NULL),(1882,974,'SWT','applicants_certifications/
U974T1686202664.jpg','applicants_certifications','321096980_1548775415643506_451616
2921953907005_n.jpg','U974T1686202664.jpg','2023-06-08 05:37:44','2023-06-08
05:37:44',NULL,'974',NULL,NULL),(1883,960,'TOR','applicants_certifications/
U960T1686203429.pdf','applicants_certifications','TOR.pdf','U960T1686203429.pdf','2
023-06-08 05:50:29','2023-06-08 05:50:29',NULL,'960',NULL,NULL),
(1884,960,'COE','applicants_certifications/
U960T1686203470.pdf','applicants_certifications','COE.pdf','U960T1686203470.pdf','2
023-06-08 05:51:10','2023-06-08 05:51:10',NULL,'960',NULL,NULL),
(1886,960,'ELIGIBILITY','applicants_certifications/
U960T1686203607.pdf','applicants_certifications','PRC.pdf','U960T1686203607.pdf','2
023-06-08 05:53:27','2023-06-08 05:53:27',NULL,'960',NULL,NULL),
(1888,960,'SWT','applicants_certifications/
U960T1686204180.pdf','applicants_certifications','CERTIFICATES.pdf','U960T168620418
0.pdf','2023-06-08 06:03:00','2023-06-08 06:03:00',NULL,'960',NULL,NULL),
(1889,960,'PDS','applicants_certifications/
U960T1686204238.pdf','applicants_certifications','PDS-
CHAN.pdf','U960T1686204238.pdf','2023-06-08 06:03:58','2023-06-08
06:03:58',NULL,'960',NULL,NULL),(1890,977,'PDS','applicants_certifications/
U977T1686204351.xlsx','applicants_certifications','inbound9066425737200662445.xlsx'
,'U977T1686204351.xlsx','2023-06-08 06:05:51','2023-06-08
06:05:51',NULL,'977',NULL,NULL),(1892,936,'SWT','applicants_certifications/
U936T1686204449.jpg','applicants_certifications','CamScanner 08-11-2021
10.21_3.jpg','U936T1686204449.jpg','2023-06-08 06:07:29','2023-06-08
06:07:29',NULL,'936',NULL,NULL),
(1893,977,'ELIGIBILITY','applicants_certifications/
U977T1686204460.jpg','applicants_certifications','inbound5634139993126267973.jpg','
U977T1686204460.jpg','2023-06-08 06:07:40','2023-06-08
06:07:40',NULL,'977',NULL,NULL),(1896,936,'SWT','applicants_certifications/
U936T1686204624.jpg','applicants_certifications','CamScanner 08-11-2021
10.21_4.jpg','U936T1686204624.jpg','2023-06-08 06:10:24','2023-06-08
06:10:24',NULL,'936',NULL,NULL),(1897,936,'SWT','applicants_certifications/
U936T1686204657.jpg','applicants_certifications','CamScanner 08-11-2021
10.21_5.jpg','U936T1686204657.jpg','2023-06-08 06:10:57','2023-06-08
06:10:57',NULL,'936',NULL,NULL),(1898,936,'SWT','applicants_certifications/
U936T1686204695.jpg','applicants_certifications','Certificate_of_Recognition.jpg','
U936T1686204695.jpg','2023-06-08 06:11:35','2023-06-08
06:11:35',NULL,'936',NULL,NULL),(1899,977,'TOR','applicants_certifications/
U977T1686204719.docx','applicants_certifications','inbound8769376813516384067.docx'
,'U977T1686204719.docx','2023-06-08 06:11:59','2023-06-08
06:11:59',NULL,'977',NULL,NULL),(1900,977,'TOR','applicants_certifications/
U977T1686204766.docx','applicants_certifications','inbound2123855980636151296.docx'
,'U977T1686204766.docx','2023-06-08 06:12:46','2023-06-08
06:12:46',NULL,'977',NULL,NULL),(1901,936,'COE','applicants_certifications/
U936T1686204822.jpg','applicants_certifications','CamScanner 06-08-2023
14.12_1.jpg','U936T1686204822.jpg','2023-06-08 06:13:42','2023-06-08
06:13:42',NULL,'936',NULL,NULL),(1903,977,'COE','applicants_certifications/
U977T1686204850.jpg','applicants_certifications','inbound5457783541112532100.jpg','
U977T1686204850.jpg','2023-06-08 06:14:10','2023-06-08
06:14:10',NULL,'977',NULL,NULL),(1904,952,'TOR','applicants_certifications/
U952T1686204882.jpg','applicants_certifications','CamScanner 06-08-2023
14.02.jpg','U952T1686204882.jpg','2023-06-08 06:14:42','2023-06-08
06:14:42',NULL,'952',NULL,NULL),(1905,952,'TOR','applicants_certifications/
U952T1686205016.jpg','applicants_certifications','CamScanner 06-08-2023
14.03_1.jpg','U952T1686205016.jpg','2023-06-08
06:16:56','2023-06-08 06:16:56',NULL,'952',NULL,NULL),
(1906,952,'TOR','applicants_certifications/
U952T1686205176.jpg','applicants_certifications','CamScanner 06-08-2023
14.04.jpg','U952T1686205176.jpg','2023-06-08 06:19:36','2023-06-08
06:19:36',NULL,'952',NULL,NULL),
(1907,952,'ELIGIBILITY','applicants_certifications/
U952T1686205332.jpg','applicants_certifications','CamScanner 06-08-2023
14.07.jpg','U952T1686205332.jpg','2023-06-08 06:22:12','2023-06-08
06:22:12',NULL,'952',NULL,NULL),(1908,982,'PDS','applicants_certifications/
U982T1686205802.jpg','applicants_certifications','inbound7065001174646211245.jpg','
U982T1686205802.jpg','2023-06-08 06:30:02','2023-06-08
06:30:02',NULL,'982',NULL,NULL),(1916,787,'COE','applicants_certifications/
U787T1692327799.jpg','applicants_certifications','Cert of Employment
001.jpg','U787T1692327799.jpg','2023-08-18 11:03:19','2023-08-18
11:03:19',NULL,'787',NULL,NULL),
(1917,787,'ELIGIBILITY','applicants_certifications/
U787T1686208010.pdf','applicants_certifications','KIWAON_ORLANDO_Eligibility.pdf','
U787T1686208010.pdf','2023-06-08 07:06:50','2023-06-08
07:06:50',NULL,'787',NULL,NULL),(1918,976,'TOR','applicants_certifications/
U976T1686208915.jpeg','applicants_certifications','IMG_1286.jpeg','U976T1686208915.
jpeg','2023-06-08 07:21:55','2023-06-08 07:21:55',NULL,'976',NULL,NULL),
(1919,976,'TOR','applicants_certifications/
U976T1686208948.jpeg','applicants_certifications','IMG_1287.jpeg','U976T1686208948.
jpeg','2023-06-08 07:22:28','2023-06-08 07:22:28',NULL,'976',NULL,NULL),
(1921,976,'COE','applicants_certifications/
U976T1686209304.jpeg','applicants_certifications','IMG_1285.jpeg','U976T1686209304.
jpeg','2023-06-08 07:28:24','2023-06-08 07:28:24',NULL,'976',NULL,NULL),
(1922,976,'SWT','applicants_certifications/
U976T1686209538.jpeg','applicants_certifications','IMG_1283.jpeg','U976T1686209538.
jpeg','2023-06-08 07:32:18','2023-06-08 07:32:18',NULL,'976',NULL,NULL),
(1923,997,'TOR','applicants_certifications/
U997T1686211620.pdf','applicants_certifications','inbound3663620864993165469.pdf','
U997T1686211620.pdf','2023-06-08 08:07:00','2023-06-08
08:07:00',NULL,'997',NULL,NULL),(1924,997,'TOR','applicants_certifications/
U997T1686211651.pdf','applicants_certifications','inbound4539081131408233739.pdf','
U997T1686211651.pdf','2023-06-08 08:07:31','2023-06-08
08:07:31',NULL,'997',NULL,NULL),(1925,997,'TOR','applicants_certifications/
U997T1686211733.pdf','applicants_certifications','inbound7594489349088296863.pdf','
U997T1686211733.pdf','2023-06-08 08:08:53','2023-06-08
08:08:53',NULL,'997',NULL,NULL),(1926,997,'COE','applicants_certifications/
U997T1686211778.pdf','applicants_certifications','inbound7064120424925417750.pdf','
U997T1686211778.pdf','2023-06-08 08:09:38','2023-06-08
08:09:38',NULL,'997',NULL,NULL),
(1927,997,'ELIGIBILITY','applicants_certifications/
U997T1686211886.pdf','applicants_certifications','inbound606353166059657484.pdf','U
997T1686211886.pdf','2023-06-08 08:11:26','2023-06-08
08:11:26',NULL,'997',NULL,NULL),(1929,997,'PDS','applicants_certifications/
U997T1686212218.xlsx','applicants_certifications','inbound5199325760089499942.xlsx'
,'U997T1686212218.xlsx','2023-06-08 08:16:58','2023-06-08
08:16:58',NULL,'997',NULL,NULL),(1940,935,'TOR','applicants_certifications/
U935T1686215625.pdf','applicants_certifications','inbound6197615203921063769.pdf','
U935T1686215625.pdf','2023-06-08 09:13:45','2023-06-08
09:13:45',NULL,'935',NULL,NULL),(1942,495,'SWT','applicants_certifications/
U495T1686216208.pdf','applicants_certifications','Certificate_of_Completion_new
(2).pdf','U495T1686216208.pdf','2023-06-08 09:23:28','2023-06-08
09:23:28',NULL,'495',NULL,NULL),(1943,495,'SWT','applicants_certifications/
U495T1686216239.pdf','applicants_certifications','Certificate_of_Completion_new
(1).pdf','U495T1686216239.pdf','2023-06-08 09:23:59','2023-06-08
09:23:59',NULL,'495',NULL,NULL),(1944,495,'SWT','applicants_certifications/
U495T1686216263.pdf','applicants_certifications','Certificate_of_Completion_new.pdf
','U495T1686216263.pdf','2023-06-08 09:24:23','2023-06-08
09:24:23',NULL,'495',NULL,NULL),(1945,495,'SWT','applicants_certifications/
U495T1686216289.PDF','applicants_certifications','Microsoft Digital Literacy_
Creating Digital Content.PDF','U495T1686216289.PDF','2023-06-08 09:24:49','2023-06-
08 09:24:49',NULL,'495',NULL,NULL),(1946,495,'SWT','applicants_certifications/
U495T1686217178.pdf','applicants_certifications','certificate.pdf','U495T1686217178
.pdf','2023-06-08 09:39:38','2023-06-08 09:39:38',NULL,'495',NULL,NULL),
(1948,495,'SWT','applicants_certifications/
U495T1686217651.pdf','applicants_certifications','certificate of
participation.pdf','U495T1686217651.pdf','2023-06-08 09:47:31','2023-06-08
09:47:31',NULL,'495',NULL,NULL),(1950,1006,'TOR','applicants_certifications/
U1006T1686218330.jpg','applicants_certifications','CamScanner 05-09-2023 17.17_2
(1).jpg','U1006T1686218330.jpg','2023-06-08 09:58:50','2023-06-08
09:58:50',NULL,'1006',NULL,NULL),(1951,1006,'TOR','applicants_certifications/
U1006T1686218334.jpg','applicants_certifications','CamScanner 05-09-2023 17.17_2
(1).jpg','U1006T1686218334.jpg','2023-06-08 09:58:54','2023-06-08
09:58:54',NULL,'1006',NULL,NULL),(1952,1006,'TOR','applicants_certifications/
U1006T1686218336.jpg','applicants_certifications','CamScanner 05-09-2023 17.17_2
(1).jpg','U1006T1686218336.jpg','2023-06-08 09:58:56','2023-06-08
09:58:56',NULL,'1006',NULL,NULL),
(1953,1006,'ELIGIBILITY','applicants_certifications/
U1006T1686218691.jpg','applicants_certifications','8919375e5c08ea4d602a5fbd38f53180
.0.jpg','U1006T1686218691.jpg','2023-06-08 10:04:51','2023-06-08
10:04:51',NULL,'1006',NULL,NULL),(1954,994,'SWT','applicants_certifications/
U994T1686219229.jpg','applicants_certifications','348368251_581365674124682_1034533
773568220013_n.jpg','U994T1686219229.jpg','2023-06-08 10:13:49','2023-06-08
10:13:49',NULL,'994',NULL,NULL),(1955,994,'SWT','applicants_certifications/
U994T1686219255.jpg','applicants_certifications','352207871_1650543525429437_723926
7817022707013_n.jpg','U994T1686219255.jpg','2023-06-08 10:14:15','2023-06-08
10:14:15',NULL,'994',NULL,NULL),(1956,994,'SWT','applicants_certifications/
U994T1686219289.jpg','applicants_certifications','352412191_139230512461296_2823347
744624412622_n.jpg','U994T1686219289.jpg','2023-06-08 10:14:49','2023-06-08
10:14:49',NULL,'994',NULL,NULL),(1957,994,'SWT','applicants_certifications/
U994T1686219364.jpg','applicants_certifications','352631683_964257798147850_7469498
007600471846_n.jpg','U994T1686219364.jpg','2023-06-08 10:16:04','2023-06-08
10:16:04',NULL,'994',NULL,NULL),(1959,994,'SWT','applicants_certifications/
U994T1686219487.jpg','applicants_certifications','352713552_193180533311789_1402293
437036796147_n.jpg','U994T1686219487.jpg','2023-06-08 10:18:07','2023-06-08
10:18:07',NULL,'994',NULL,NULL),(1960,994,'SWT','applicants_certifications/
U994T1686219488.jpg','applicants_certifications','352713552_193180533311789_1402293
437036796147_n.jpg','U994T1686219488.jpg','2023-06-08 10:18:08','2023-06-08
10:18:08',NULL,'994',NULL,NULL),(1961,994,'SWT','applicants_certifications/
U994T1686219504.jpg','applicants_certifications','352785282_269008855659082_1077481
480175589982_n.jpg','U994T1686219504.jpg','2023-06-08 10:18:24','2023-06-08
10:18:24',NULL,'994',NULL,NULL),(1962,994,'SWT','applicants_certifications/
U994T1686219519.jpg','applicants_certifications','352800790_566481472341351_5630746
124973741675_n.jpg','U994T1686219519.jpg','2023-06-08 10:18:39','2023-06-08
10:18:39',NULL,'994',NULL,NULL),(1963,994,'SWT','applicants_certifications/
U994T1686219532.jpg','applicants_certifications','352922704_587316303529825_2159877
909902171145_n.jpg','U994T1686219532.jpg','2023-06-08 10:18:52','2023-06-08
10:18:52',NULL,'994',NULL,NULL),(1964,994,'SWT','applicants_certifications/
U994T1686219556.jpg','applicants_certifications','352976462_235057282598031_3404417
296089573689_n.jpg','U994T1686219556.jpg','2023-06-08 10:19:16','2023-06-08
10:19:16',NULL,'994',NULL,NULL),(1965,994,'SWT','applicants_certifications/
U994T1686219573.jpg','applicants_certifications','353026890_264634082780482_7514429
333657434427_n.jpg','U994T1686219573.jpg','2023-06-08 10:19:33','2023-06-08
10:19:33',NULL,'994',NULL,NULL),(1972,936,'TOR','applicants_certifications/
U936T1686224253.jpg','applicants_certifications','CamScanner 02-23-2023
19.24_1.jpg','U936T1686224253.jpg','2023-06-08 11:37:33','2023-06-08
11:37:33',NULL,'936',NULL,NULL),(1973,936,'TOR','applicants_certifications/
U936T1686224307.jpg','applicants_certifications','CamScanner 02-23-2023
19.24_2.jpg','U936T1686224307.jpg','2023-06-08 11:38:27','2023-06-08
11:38:27',NULL,'936',NULL,NULL),(1974,936,'TOR','applicants_certifications/
U936T1686224352.jpg','applicants_certifications','CamScanner 02-23-2023
19.24_3.jpg','U936T1686224352.jpg','2023-06-08 11:39:12','2023-06-08
11:39:12',NULL,'936',NULL,NULL),
(1982,941,'ELIGIBILITY','applicants_certifications/
U941T1686228127.jpg','applicants_certifications','inbound1467598726577433324.jpg','
U941T1686228127.jpg','2023-06-08 12:42:07','2023-06-08
12:42:07',NULL,'941',NULL,NULL),
(1983,941,'ELIGIBILITY','applicants_certifications/
U941T1686228129.jpg','applicants_certifications','inbound5863513735010601398.jpg','
U941T1686228129.jpg','2023-06-08 12:42:09','2023-06-08
12:42:09',NULL,'941',NULL,NULL),
(1985,941,'ELIGIBILITY','applicants_certifications/
U941T1686228153.jpg','applicants_certifications','inbound3646223538286227597.jpg','
U941T1686228153.jpg','2023-06-08 12:42:33','2023-06-08
12:42:33',NULL,'941',NULL,NULL),
(1986,941,'ELIGIBILITY','applicants_certifications/
U941T1686228175.jpg','applicants_certifications','inbound7384269656609922584.jpg','
U941T1686228175.jpg','2023-06-08 12:42:55','2023-06-08
12:42:55',NULL,'941',NULL,NULL),
(1988,941,'ELIGIBILITY','applicants_certifications/
U941T1686228267.jpg','applicants_certifications','inbound3476994648338824964.jpg','
U941T1686228267.jpg','2023-06-08
12:44:27','2023-06-08 12:44:27',NULL,'941',NULL,NULL),
(1990,974,'ELIGIBILITY','applicants_certifications/
U974T1686228990.pdf','applicants_certifications','License.pdf','U974T1686228990.pdf
','2023-06-08 12:56:30','2023-06-08 12:56:30',NULL,'974',NULL,NULL),
(1992,941,'ELIGIBILITY','applicants_certifications/
U941T1686230070.jpg','applicants_certifications','inbound737828062774591784.jpg','U
941T1686230070.jpg','2023-06-08 13:14:30','2023-06-08
13:14:30',NULL,'941',NULL,NULL),(1993,1025,'TOR','applicants_certifications/
U1025T1686230445.jpg','applicants_certifications','inbound8119256120664271366.jpg',
'U1025T1686230445.jpg','2023-06-08 13:20:45','2023-06-08
13:20:45',NULL,'1025',NULL,NULL),(1994,1025,'TOR','applicants_certifications/
U1025T1686231380.jpg','applicants_certifications','inbound8804995021277137945.jpg',
'U1025T1686231380.jpg','2023-06-08 13:36:20','2023-06-08
13:36:20',NULL,'1025',NULL,NULL),(1997,1026,'TOR','applicants_certifications/
U1026T1686231694.pdf','applicants_certifications','inbound6609742409205898789.pdf',
'U1026T1686231694.pdf','2023-06-08 13:41:34','2023-06-08
13:41:34',NULL,'1026',NULL,NULL),(1998,1015,'TOR','applicants_certifications/
U1015T1686231722.pdf','applicants_certifications','inbound4696668018333583702.pdf',
'U1015T1686231722.pdf','2023-06-08 13:42:02','2023-06-08
13:42:02',NULL,'1015',NULL,NULL),
(1999,1022,'ELIGIBILITY','applicants_certifications/
U1022T1686232358.jpg','applicants_certifications','inbound1840772503512222227.jpg',
'U1022T1686232358.jpg','2023-06-08 13:52:38','2023-06-08
13:52:38',NULL,'1022',NULL,NULL),(2006,1027,'TOR','applicants_certifications/
U1027T1686233295.jpg','applicants_certifications','inbound2173870434439437453.jpg',
'U1027T1686233295.jpg','2023-06-08 14:08:15','2023-06-08
14:08:15',NULL,'1027',NULL,NULL),(2007,1027,'TOR','applicants_certifications/
U1027T1686233318.jpg','applicants_certifications','inbound1609778237038248614.jpg',
'U1027T1686233318.jpg','2023-06-08 14:08:38','2023-06-08
14:08:38',NULL,'1027',NULL,NULL),
(2009,1027,'ELIGIBILITY','applicants_certifications/
U1027T1686233385.jpg','applicants_certifications','inbound795622113555151129.jpg','
U1027T1686233385.jpg','2023-06-08 14:09:45','2023-06-08
14:09:45',NULL,'1027',NULL,NULL),
(2011,1027,'ELIGIBILITY','applicants_certifications/
U1027T1686233468.jpg','applicants_certifications','inbound8326557500048551358.jpg',
'U1027T1686233468.jpg','2023-06-08 14:11:08','2023-06-08
14:11:08',NULL,'1027',NULL,NULL),
(2013,1027,'ELIGIBILITY','applicants_certifications/
U1027T1686233516.jpg','applicants_certifications','inbound6808867839862568438.jpg',
'U1027T1686233516.jpg','2023-06-08 14:11:56','2023-06-08
14:11:56',NULL,'1027',NULL,NULL),(2014,1027,'PDS','applicants_certifications/
U1027T1686233540.jpg','applicants_certifications','inbound5484284669780623287.jpg',
'U1027T1686233540.jpg','2023-06-08 14:12:20','2023-06-08
14:12:20',NULL,'1027',NULL,NULL),(2015,1027,'PDS','applicants_certifications/
U1027T1686233556.jpg','applicants_certifications','inbound8731811019189803737.jpg',
'U1027T1686233556.jpg','2023-06-08 14:12:36','2023-06-08
14:12:36',NULL,'1027',NULL,NULL),(2016,952,'PDS','applicants_certifications/
U952T1686234263.','applicants_certifications','336006','U952T1686234263.','2023-06-
08 14:24:23','2023-06-08 14:24:23',NULL,'952',NULL,NULL),
(2018,1027,'ELIGIBILITY','applicants_certifications/
U1027T1686235088.jpg','applicants_certifications','inbound4340482495994397727.jpg',
'U1027T1686235088.jpg','2023-06-08 14:38:08','2023-06-08
14:38:08',NULL,'1027',NULL,NULL),
(2019,1027,'ELIGIBILITY','applicants_certifications/
U1027T1686236710.jpg','applicants_certifications','inbound7657585566443520123.jpg',
'U1027T1686236710.jpg','2023-06-08 15:05:10','2023-06-08
15:05:10',NULL,'1027',NULL,NULL),
(2020,1027,'ELIGIBILITY','applicants_certifications/
U1027T1686236831.jpg','applicants_certifications','inbound7255749353327706663.jpg',
'U1027T1686236831.jpg','2023-06-08 15:07:11','2023-06-08
15:07:11',NULL,'1027',NULL,NULL),(2021,1033,'COE','applicants_certifications/
U1033T1686266325.pdf','applicants_certifications','inbound6919757318751482781.pdf',
'U1033T1686266325.pdf','2023-06-08 23:18:45','2023-06-08
23:18:45',NULL,'1033',NULL,NULL),
(2022,501,'ELIGIBILITY','applicants_certifications/
U501T1686268282.jpg','applicants_certifications','PRC
Authenticated.jpg','U501T1686268282.jpg','2023-06-08 23:51:22','2023-06-08
23:51:22',NULL,'501',NULL,NULL),(2025,1036,'COE','applicants_certifications/
U1036T1686270363.jpg','applicants_certifications','inbound6838142284144435404.jpg',
'U1036T1686270363.jpg','2023-06-09 00:26:03','2023-06-09
00:26:03',NULL,'1036',NULL,NULL),(2026,1036,'TOR','applicants_certifications/
U1036T1686271565.jpg','applicants_certifications','inbound7954559361416369100.jpg',
'U1036T1686271565.jpg','2023-06-09 00:46:05','2023-06-09
00:46:05',NULL,'1036',NULL,NULL),(2027,1036,'TOR','applicants_certifications/
U1036T1686271578.jpg','applicants_certifications','inbound5611121291890582296.jpg',
'U1036T1686271578.jpg','2023-06-09 00:46:18','2023-06-09
00:46:18',NULL,'1036',NULL,NULL),
(2028,1036,'ELIGIBILITY','applicants_certifications/
U1036T1686271597.jpg','applicants_certifications','inbound8608482853140609767.jpg',
'U1036T1686271597.jpg','2023-06-09 00:46:37','2023-06-09
00:46:37',NULL,'1036',NULL,NULL),(2029,1036,'PDS','applicants_certifications/
U1036T1686271615.jpg','applicants_certifications','inbound2644382426035163287.jpg',
'U1036T1686271615.jpg','2023-06-09 00:46:55','2023-06-09
00:46:55',NULL,'1036',NULL,NULL),(2031,1036,'PDS','applicants_certifications/
U1036T1686272721.jpg','applicants_certifications','inbound291412885858305938.jpg','
U1036T1686272721.jpg','2023-06-09 01:05:21','2023-06-09
01:05:21',NULL,'1036',NULL,NULL),(2032,1036,'PDS','applicants_certifications/
U1036T1686272735.jpg','applicants_certifications','inbound8413191978805500392.jpg',
'U1036T1686272735.jpg','2023-06-09 01:05:35','2023-06-09
01:05:35',NULL,'1036',NULL,NULL),(2033,1036,'PDS','applicants_certifications/
U1036T1686272745.jpg','applicants_certifications','inbound509334419572603104.jpg','
U1036T1686272745.jpg','2023-06-09 01:05:45','2023-06-09
01:05:45',NULL,'1036',NULL,NULL),(2034,942,'TOR','applicants_certifications/
U942T1686276879.pdf','applicants_certifications','OTR
IC.pdf','U942T1686276879.pdf','2023-06-09 02:14:39','2023-06-09
02:14:39',NULL,'942',NULL,NULL),(2035,942,'TOR','applicants_certifications/
U942T1686276901.pdf','applicants_certifications','TOR
ULS2.pdf','U942T1686276901.pdf','2023-06-09 02:15:01','2023-06-09
02:15:01',NULL,'942',NULL,NULL),(2036,942,'TOR','applicants_certifications/
U942T1686276918.pdf','applicants_certifications','TOR
ULS.pdf','U942T1686276918.pdf','2023-06-09 02:15:18','2023-06-09
02:15:18',NULL,'942',NULL,NULL),
(2037,942,'ELIGIBILITY','applicants_certifications/
U942T1686276985.pdf','applicants_certifications','RATING.pdf','U942T1686276985.pdf'
,'2023-06-09 02:16:25','2023-06-09 02:16:25',NULL,'942',NULL,NULL),
(2038,980,'ELIGIBILITY','applicants_certifications/
U980T1686277324.pdf','applicants_certifications','Certificate of
Eligibility.pdf','U980T1686277324.pdf','2023-06-09 02:22:04','2023-06-09
02:22:04',NULL,'980',NULL,NULL),(2039,980,'SWT','applicants_certifications/
U980T1686277358.pdf','applicants_certifications','Accounting and Finance for IT
progessionals.pdf','U980T1686277358.pdf','2023-06-09 02:22:38','2023-06-09
02:22:38',NULL,'980',NULL,NULL),(2040,980,'SWT','applicants_certifications/
U980T1686277375.pdf','applicants_certifications','Excel VBA for Creative Problem
Solving.pdf','U980T1686277375.pdf','2023-06-09 02:22:55','2023-06-09
02:22:55',NULL,'980',NULL,NULL),(2041,980,'SWT','applicants_certifications/
U980T1686277400.pdf','applicants_certifications','Procurement & Sourcing
Introduction.pdf','U980T1686277400.pdf','2023-06-09 02:23:20','2023-06-09
02:23:20',NULL,'980',NULL,NULL),(2043,1042,'TOR','applicants_certifications/
U1042T1686282950.pdf','applicants_certifications','inbound171189350356206314.pdf','
U1042T1686282950.pdf','2023-06-09 03:55:50','2023-06-09
03:55:50',NULL,'1042',NULL,NULL),
(2046,1042,'ELIGIBILITY','applicants_certifications/
U1042T1686283203.pdf','applicants_certifications','inbound2049224715222016385.pdf',
'U1042T1686283203.pdf','2023-06-09 04:00:03','2023-06-09
04:00:03',NULL,'1042',NULL,NULL),(2047,1042,'PDS','applicants_certifications/
U1042T1686283229.xlsx','applicants_certifications','inbound7809424750886784093.xlsx
','U1042T1686283229.xlsx','2023-06-09 04:00:29','2023-06-09
04:00:29',NULL,'1042',NULL,NULL),(2048,975,'TOR','applicants_certifications/
U975T1686286961.pdf','applicants_certifications','TOR- ANGELO
VERGARA.pdf','U975T1686286961.pdf','2023-06-09 05:02:41','2023-06-09
05:02:41',NULL,'975',NULL,NULL),(2049,1049,'TOR','applicants_certifications/
U1049T1686293447.pdf','applicants_certifications','LIMANTE, BRYLLE
SHEBYS_TOR.pdf','U1049T1686293447.pdf','2023-06-09 06:50:47','2023-06-09
06:50:47',NULL,'1049',NULL,NULL),
(2050,1044,'ELIGIBILITY','applicants_certifications/
U1044T1686294295.pdf','applicants_certifications','Certificate of
Eligibility.pdf','U1044T1686294295.pdf','2023-06-09 07:04:55','2023-06-09
07:04:55',NULL,'1044',NULL,NULL),(2054,980,'TOR','applicants_certifications/
U980T1686295258.pdf','applicants_certifications','Transcript of
Records_compressed.pdf','U980T1686295258.pdf','2023-06-09 07:20:58','2023-06-09
07:20:58',NULL,'980',NULL,NULL),(2055,980,'SWT','applicants_certifications/
U980T1686295322.pdf','applicants_certifications','Webinar Series on Innovative
Thinking for Enhancing Public Sector Productivity.pdf','U980T1686295322.pdf','2023-
06-09 07:22:02','2023-06-09 07:22:02',NULL,'980',NULL,NULL),
(2056,980,'SWT','applicants_certifications/
U980T1686295368.pdf','applicants_certifications','Public
Speaking.pdf','U980T1686295368.pdf','2023-06-09 07:22:48','2023-06-09
07:22:48',NULL,'980',NULL,NULL),(2057,980,'SWT','applicants_certifications/
U980T1686295397.pdf','applicants_certifications','Root
and Latent Cause Analysis.pdf','U980T1686295397.pdf','2023-06-09 07:23:17','2023-
06-09 07:23:17',NULL,'980',NULL,NULL),(2058,1000,'TOR','applicants_certifications/
U1000T1686295412.jpg','applicants_certifications','CamScanner 06-04-2023
18.34_1.jpg','U1000T1686295412.jpg','2023-06-09 07:23:32','2023-06-09
07:23:32',NULL,'1000',NULL,NULL),(2059,980,'SWT','applicants_certifications/
U980T1686295431.pdf','applicants_certifications','Stress
Management.pdf','U980T1686295431.pdf','2023-06-09 07:23:51','2023-06-09
07:23:51',NULL,'980',NULL,NULL),(2060,980,'SWT','applicants_certifications/
U980T1686295451.pdf','applicants_certifications','Basic
Communication.pdf','U980T1686295451.pdf','2023-06-09 07:24:11','2023-06-09
07:24:11',NULL,'980',NULL,NULL),(2062,980,'SWT','applicants_certifications/
U980T1686295476.pdf','applicants_certifications','Conflict
Management.pdf','U980T1686295476.pdf','2023-06-09 07:24:36','2023-06-09
07:24:36',NULL,'980',NULL,NULL),(2063,980,'SWT','applicants_certifications/
U980T1686295495.pdf','applicants_certifications','Government Procurement Reform Act
(R.A. 9184) and its Revised IRR and Updates.pdf','U980T1686295495.pdf','2023-06-09
07:24:55','2023-06-09 07:24:55',NULL,'980',NULL,NULL),
(2064,1000,'TOR','applicants_certifications/
U1000T1686295514.jpg','applicants_certifications','CamScanner 06-04-2023
18.35_1.jpg','U1000T1686295514.jpg','2023-06-09 07:25:14','2023-06-09
07:25:14',NULL,'1000',NULL,NULL),(2067,1000,'TOR','applicants_certifications/
U1000T1686295608.jpg','applicants_certifications','CamScanner 06-04-2023 18.35
(1)_1.jpg','U1000T1686295608.jpg','2023-06-09 07:26:48','2023-06-09
07:26:48',NULL,'1000',NULL,NULL),(2069,1000,'TOR','applicants_certifications/
U1000T1686295662.jpg','applicants_certifications','CamScanner 06-04-2023
18.36_1.jpg','U1000T1686295662.jpg','2023-06-09 07:27:42','2023-06-09
07:27:42',NULL,'1000',NULL,NULL),(2070,1000,'SWT','applicants_certifications/
U1000T1686295701.jpg','applicants_certifications','ROSIE BETH
L.VALDEZ_1.jpg','U1000T1686295701.jpg','2023-06-09 07:28:21','2023-06-09
07:28:21',NULL,'1000',NULL,NULL),(2071,980,'SWT','applicants_certifications/
U980T1686295873.pdf','applicants_certifications','Govt Property and Supply
Managment.pdf','U980T1686295873.pdf','2023-06-09 07:31:13','2023-06-09
07:31:13',NULL,'980',NULL,NULL),(2073,980,'SWT','applicants_certifications/
U980T1686296099.pdf','applicants_certifications','I-
CARE.pdf','U980T1686296099.pdf','2023-06-09 07:34:59','2023-06-09
07:34:59',NULL,'980',NULL,NULL),(2074,1000,'SWT','applicants_certifications/
U1000T1686296123.jpg','applicants_certifications','IMG_20230609_153419.jpg','U1000T
1686296123.jpg','2023-06-09 07:35:23','2023-06-09 07:35:23',NULL,'1000',NULL,NULL),
(2075,980,'SWT','applicants_certifications/
U980T1686296137.pdf','applicants_certifications','Internal Management
Auditing.pdf','U980T1686296137.pdf','2023-06-09 07:35:37','2023-06-09
07:35:37',NULL,'980',NULL,NULL),(2076,980,'SWT','applicants_certifications/
U980T1686296193.pdf','applicants_certifications','Record
Management.pdf','U980T1686296193.pdf','2023-06-09 07:36:33','2023-06-09
07:36:33',NULL,'980',NULL,NULL),(2077,987,'TOR','applicants_certifications/
U987T1686296402.pdf','applicants_certifications','TOR.pdf','U987T1686296402.pdf','2
023-06-09 07:40:02','2023-06-09 07:40:02',NULL,'987',NULL,NULL),
(2078,987,'COE','applicants_certifications/
U987T1686296426.pdf','applicants_certifications','COE AND SERVICE
RECORD.pdf','U987T1686296426.pdf','2023-06-09 07:40:26','2023-06-09
07:40:26',NULL,'987',NULL,NULL),(2079,980,'SWT','applicants_certifications/
U980T1686296455.pdf','applicants_certifications','TAP.pdf','U980T1686296455.pdf','2
023-06-09 07:40:55','2023-06-09 07:40:55',NULL,'980',NULL,NULL),
(2080,987,'ELIGIBILITY','applicants_certifications/
U987T1686296553.pdf','applicants_certifications','PRC
ID.pdf','U987T1686296553.pdf','2023-06-09 07:42:33','2023-06-09
07:42:33',NULL,'987',NULL,NULL),
(2081,987,'ELIGIBILITY','applicants_certifications/
U987T1686296572.pdf','applicants_certifications','PRC
rating.pdf','U987T1686296572.pdf','2023-06-09 07:42:52','2023-06-09
07:42:52',NULL,'987',NULL,NULL),(2083,1054,'TOR','applicants_certifications/
U1054T1686296895.pdf','applicants_certifications','tor.pdf','U1054T1686296895.pdf',
'2023-06-09 07:48:15','2023-06-09 07:48:15',NULL,'1054',NULL,NULL),
(2084,1054,'ELIGIBILITY','applicants_certifications/
U1054T1686296970.pdf','applicants_certifications','board of
rating.pdf','U1054T1686296970.pdf','2023-06-09 07:49:30','2023-06-09
07:49:30',NULL,'1054',NULL,NULL),(2085,980,'PDS','applicants_certifications/
U980T1686296995.pdf','applicants_certifications','PDF JON ALVIN CAEZAR L.
JACINTO.pdf','U980T1686296995.pdf','2023-06-09 07:49:55','2023-06-09
07:49:55',NULL,'980',NULL,NULL),(2086,1054,'PDS','applicants_certifications/
U1054T1686299155.pdf','applicants_certifications','pds.pdf','U1054T1686299155.pdf',
'2023-06-09 08:25:55','2023-06-09 08:25:55',NULL,'1054',NULL,NULL),
(2087,1054,'ELIGIBILITY','applicants_certifications/
U1054T1686299416.pdf','applicants_certifications','lisensya.pdf','U1054T1686299416.
pdf','2023-06-09 08:30:17','2023-06-09 08:30:17',NULL,'1054',NULL,NULL),
(2088,934,'ELIGIBILITY','applicants_certifications/
U934T1686300305.png','applicants_certifications','board of
passing.png','U934T1686300305.png','2023-06-09 08:45:05','2023-06-09
08:45:05',NULL,'934',NULL,NULL),(2091,1062,'SWT','applicants_certifications/
U1062T1686302164.png','applicants_certifications','inbound8029988234569089875.png',
'U1062T1686302164.png','2023-06-09 09:16:04','2023-06-09
09:16:04',NULL,'1062',NULL,NULL),(2093,1062,'SWT','applicants_certifications/
U1062T1686302406.png','applicants_certifications','inbound1364667648850686172.png',
'U1062T1686302406.png','2023-06-09 09:20:06','2023-06-09
09:20:06',NULL,'1062',NULL,NULL),
(2101,1061,'ELIGIBILITY','applicants_certifications/
U1061T1686305038.jpg','applicants_certifications','inbound2891826808069510027.jpg',
'U1061T1686305038.jpg','2023-06-09 10:03:58','2023-06-09
10:03:58',NULL,'1061',NULL,NULL),(2104,1021,'PDS','applicants_certifications/
U1021T1686305687.xlsx','applicants_certifications','inbound4597119482525064997.xlsx
','U1021T1686305687.xlsx','2023-06-09 10:14:47','2023-06-09
10:14:47',NULL,'1021',NULL,NULL),
(2105,1021,'ELIGIBILITY','applicants_certifications/
U1021T1686305704.jpg','applicants_certifications','inbound417154464917093399.jpg','
U1021T1686305704.jpg','2023-06-09 10:15:04','2023-06-09
10:15:04',NULL,'1021',NULL,NULL),(2107,994,'TOR','applicants_certifications/
U994T1686314201.pdf','applicants_certifications','TOR
1.pdf','U994T1686314201.pdf','2023-06-09 12:36:41','2023-06-09
12:36:41',NULL,'994',NULL,NULL),(2108,994,'TOR','applicants_certifications/
U994T1686314218.pdf','applicants_certifications','TOR
p2.pdf','U994T1686314218.pdf','2023-06-09 12:36:58','2023-06-09
12:36:58',NULL,'994',NULL,NULL),(2109,994,'TOR','applicants_certifications/
U994T1686314223.pdf','applicants_certifications','TOR
3.pdf','U994T1686314223.pdf','2023-06-09 12:37:03','2023-06-09
12:37:03',NULL,'994',NULL,NULL),(2111,994,'TOR','applicants_certifications/
U994T1686314240.pdf','applicants_certifications','TOR
p4.pdf','U994T1686314240.pdf','2023-06-09 12:37:20','2023-06-09
12:37:20',NULL,'994',NULL,NULL),(2112,994,'COE','applicants_certifications/
U994T1686314314.pdf','applicants_certifications','c. certificate of
employment.pdf','U994T1686314314.pdf','2023-06-09 12:38:34','2023-06-09
12:38:34',NULL,'994',NULL,NULL),
(2113,994,'ELIGIBILITY','applicants_certifications/
U994T1686314483.pdf','applicants_certifications','PRC
LICENSE.pdf','U994T1686314483.pdf','2023-06-09 12:41:23','2023-06-09
12:41:23',NULL,'994',NULL,NULL),(2114,994,'PDS','applicants_certifications/
U994T1686314514.pdf','applicants_certifications','b. PDS
p1.pdf','U994T1686314514.pdf','2023-06-09 12:41:54','2023-06-09
12:41:54',NULL,'994',NULL,NULL),(2115,994,'PDS','applicants_certifications/
U994T1686314521.pdf','applicants_certifications','b. PDS
p2.pdf','U994T1686314521.pdf','2023-06-09 12:42:01','2023-06-09
12:42:01',NULL,'994',NULL,NULL),(2116,994,'PDS','applicants_certifications/
U994T1686314527.pdf','applicants_certifications','b. PDS
p3.pdf','U994T1686314527.pdf','2023-06-09 12:42:07','2023-06-09
12:42:07',NULL,'994',NULL,NULL),(2118,994,'PDS','applicants_certifications/
U994T1686314536.pdf','applicants_certifications','b. PDS
p4.pdf','U994T1686314536.pdf','2023-06-09 12:42:16','2023-06-09
12:42:16',NULL,'994',NULL,NULL),(2119,994,'PDS','applicants_certifications/
U994T1686314540.pdf','applicants_certifications','B. WORK EXPERIENCE
SHEET.pdf','U994T1686314540.pdf','2023-06-09 12:42:20','2023-06-09
12:42:20',NULL,'994',NULL,NULL),(2120,1066,'TOR','applicants_certifications/
U1066T1686317305.jpg','applicants_certifications','inbound4808984470070787075.jpg',
'U1066T1686317305.jpg','2023-06-09 13:28:25','2023-06-09
13:28:25',NULL,'1066',NULL,NULL),
(2122,1066,'ELIGIBILITY','applicants_certifications/
U1066T1686320572.jpg','applicants_certifications','inbound2951630072537337791.jpg',
'U1066T1686320572.jpg','2023-06-09 14:22:52','2023-06-09
14:22:52',NULL,'1066',NULL,NULL),(2124,1066,'SWT','applicants_certifications/
U1066T1686321519.jpg','applicants_certifications','inbound8116490228288981742.jpg',
'U1066T1686321519.jpg','2023-06-09 14:38:39','2023-06-09
14:38:39',NULL,'1066',NULL,NULL),(2125,986,'TOR','applicants_certifications/
U986T1686335703.pdf','applicants_certifications','TOR-KIMBERLY
DOMINGO.pdf','U986T1686335703.pdf','2023-06-09 18:35:03','2023-06-09
18:35:03',NULL,'986',NULL,NULL),(2128,986,'SWT','applicants_certifications/
U986T1686336009.pdf','applicants_certifications','COE-KIMBERLY DOMINGO
(1).pdf','U986T1686336009.pdf','2023-06-09 18:40:09','2023-06-09
18:40:09',NULL,'986',NULL,NULL),(2130,986,'PDS','applicants_certifications/
U986T1686336062.pdf','applicants_certifications','PDS
FINAL.pdf','U986T1686336062.pdf','2023-06-09 18:41:02','2023-06-09
18:41:02',NULL,'986',NULL,NULL),(2131,986,'PDS','applicants_certifications/
U986T1686336088.pdf','applicants_certifications','KIMBERLY DOMINGO_PRC
ELIGIBILITY.pdf','U986T1686336088.pdf','2023-06-09 18:41:28','2023-06-09
18:41:28',NULL,'986',NULL,NULL),(2132,913,'TOR','applicants_certifications/
U913T1686346930.jpg','applicants_certifications','TOR_2.jpg','U913T1686346930.jpg',
'2023-06-09 21:42:10','2023-06-09 21:42:10',NULL,'913',NULL,NULL),
(2133,913,'TOR','applicants_certifications/
U913T1686346950.jpg','applicants_certifications','TOR_1.jpg','U913T1686346950.jpg',
'2023-06-09 21:42:30','2023-06-09 21:42:30',NULL,'913',NULL,NULL),
(2134,913,'ELIGIBILITY','applicants_certifications/
U913T1686347011.jpg','applicants_certifications','CamScanner 06-08-2023
16.22_3.jpg','U913T1686347011.jpg','2023-06-09 21:43:31','2023-06-09
21:43:31',NULL,'913',NULL,NULL),(2135,207,'TOR','applicants_certifications/
U207T1686350153.pdf','applicants_certifications','inbound1514476512452877212.pdf','
U207T1686350153.pdf','2023-06-09 22:35:53','2023-06-09
22:35:53',NULL,'207',NULL,NULL),(2136,207,'COE','applicants_certifications/
U207T1686351557.pdf','applicants_certifications','inbound521335582748415870.pdf','U
207T1686351557.pdf','2023-06-09 22:59:17','2023-06-09
22:59:17',NULL,'207',NULL,NULL),
(2137,207,'ELIGIBILITY','applicants_certifications/
U207T1686351732.pdf','applicants_certifications','inbound5303881941458603827.pdf','
U207T1686351732.pdf','2023-06-09 23:02:12','2023-06-09
23:02:12',NULL,'207',NULL,NULL),(2138,207,'PDS','applicants_certifications/
U207T1686351797.pdf','applicants_certifications','inbound8626790529670908663.pdf','
U207T1686351797.pdf','2023-06-09 23:03:17','2023-06-09
23:03:17',NULL,'207',NULL,NULL),
(2140,916,'ELIGIBILITY','applicants_certifications/
U916T1686352119.jpg','applicants_certifications','inbound6734124497746334218.jpg','
U916T1686352119.jpg','2023-06-09 23:08:39','2023-06-09
23:08:39',NULL,'916',NULL,NULL),(2141,207,'SWT','applicants_certifications/
U207T1686352561.pdf','applicants_certifications','inbound5009152514369367346.pdf','
U207T1686352561.pdf','2023-06-09 23:16:01','2023-06-09
23:16:01',NULL,'207',NULL,NULL),(2147,207,'SWT','applicants_certifications/
U207T1686352955.pdf','applicants_certifications','inbound8676181685006774771.pdf','
U207T1686352955.pdf','2023-06-09 23:22:35','2023-06-09
23:22:35',NULL,'207',NULL,NULL),(2148,207,'SWT','applicants_certifications/
U207T1686353528.pdf','applicants_certifications','inbound590630279007298122.pdf','U
207T1686353528.pdf','2023-06-09 23:32:08','2023-06-09
23:32:08',NULL,'207',NULL,NULL),(2150,916,'SWT','applicants_certifications/
U916T1686354379.jpg','applicants_certifications','inbound4126066471401106437.jpg','
U916T1686354379.jpg','2023-06-09 23:46:19','2023-06-09
23:46:19',NULL,'916',NULL,NULL),(2152,916,'SWT','applicants_certifications/
U916T1686354777.jpg','applicants_certifications','inbound8724763902402682246.jpg','
U916T1686354777.jpg','2023-06-09 23:52:57','2023-06-09
23:52:57',NULL,'916',NULL,NULL),(2155,916,'SWT','applicants_certifications/
U916T1686354993.jpg','applicants_certifications','inbound7762802705266035799.jpg','
U916T1686354993.jpg','2023-06-09 23:56:33','2023-06-09
23:56:33',NULL,'916',NULL,NULL),(2156,916,'SWT','applicants_certifications/
U916T1686355033.jpg','applicants_certifications','inbound2531089436044198209.jpg','
U916T1686355033.jpg','2023-06-09 23:57:13','2023-06-09
23:57:13',NULL,'916',NULL,NULL),(2157,916,'SWT','applicants_certifications/
U916T1686355393.pdf','applicants_certifications','inbound3697989744615416344.pdf','
U916T1686355393.pdf','2023-06-10 00:03:13','2023-06-10
00:03:13',NULL,'916',NULL,NULL),(2158,916,'SWT','applicants_certifications/
U916T1686355416.pdf','applicants_certifications','inbound67502640129348672.pdf','U9
16T1686355416.pdf','2023-06-10 00:03:36','2023-06-10
00:03:36',NULL,'916',NULL,NULL),
(2159,1073,'ELIGIBILITY','applicants_certifications/
U1073T1686355857.pdf','applicants_certifications','inbound2660526074047776069.pdf',
'U1073T1686355857.pdf','2023-06-10 00:10:57','2023-06-10
00:10:57',NULL,'1073',NULL,NULL),(2160,916,'TOR','applicants_certifications/
U916T1686356111.pdf','applicants_certifications','inbound8535330158563182760.pdf','
U916T1686356111.pdf','2023-06-10 00:15:11','2023-06-10
00:15:11',NULL,'916',NULL,NULL),(2161,916,'SWT','applicants_certifications/
U916T1686358403.jpg','applicants_certifications','inbound513153189600737078.jpg','U
916T1686358403.jpg','2023-06-10 00:53:23','2023-06-10
00:53:23',NULL,'916',NULL,NULL),(2162,916,'PDS','applicants_certifications/
U916T1686359199.xlsx','applicants_certifications','inbound8868244702623233239.xlsx'
,'U916T1686359199.xlsx','2023-06-10 01:06:39','2023-06-10
01:06:39',NULL,'916',NULL,NULL),(2163,980,'SWT','applicants_certifications/
U980T1686362760.pdf','applicants_certifications','Training-Workshop on Written
Office Communication.pdf','U980T1686362760.pdf','2023-06-10 02:06:00','2023-06-10
02:06:00',NULL,'980',NULL,NULL),(2164,980,'SWT','applicants_certifications/
U980T1686362799.pdf','applicants_certifications','Seminar-Workshop on Government
Procurement Reform Act.pdf','U980T1686362799.pdf','2023-06-10 02:06:39','2023-06-10
02:06:39',NULL,'980',NULL,NULL),(2165,980,'SWT','applicants_certifications/
U980T1686362818.pdf','applicants_certifications','Training-Workshop on Asset
Management Information System (AMIS).pdf','U980T1686362818.pdf','2023-06-10
02:06:58','2023-06-10 02:06:58',NULL,'980',NULL,NULL),
(2166,980,'SWT','applicants_certifications/
U980T1686362888.pdf','applicants_certifications','Risk Talks Webinar on
Strengthening Risk Management in the Public
Sector.pdf','U980T1686362888.pdf','2023-06-10 02:08:08','2023-06-10
02:08:08',NULL,'980',NULL,NULL),(2167,980,'SWT','applicants_certifications/
U980T1686362916.pdf','applicants_certifications','Mental Health Awareness
Seminar.pdf','U980T1686362916.pdf','2023-06-10 02:08:36','2023-06-10
02:08:36',NULL,'980',NULL,NULL),(2168,980,'SWT','applicants_certifications/
U980T1686362963.pdf','applicants_certifications','R.A. 9184-Government Procurement
Reform Act and its 2016 Revised Implementing Rules and
Regulations.pdf','U980T1686362963.pdf','2023-06-10 02:09:23','2023-06-10
02:09:23',NULL,'980',NULL,NULL),(2169,980,'SWT','applicants_certifications/
U980T1686362988.pdf','applicants_certifications','Interpersonal Communication
Skills Seminar.pdf','U980T1686362988.pdf','2023-06-10 02:09:48','2023-06-10
02:09:48',NULL,'980',NULL,NULL),(2170,980,'SWT','applicants_certifications/
U980T1686363013.pdf','applicants_certifications','Technical
Writing.pdf','U980T1686363013.pdf','2023-06-10 02:10:13','2023-06-10
02:10:13',NULL,'980',NULL,NULL),(2171,980,'SWT','applicants_certifications/
U980T1686363046.pdf','applicants_certifications','Problem Solving Analysis and
Solution Formulation.pdf','U980T1686363046.pdf','2023-06-10 02:10:46','2023-06-10
02:10:46',NULL,'980',NULL,NULL),(2172,980,'SWT','applicants_certifications/
U980T1686363063.pdf','applicants_certifications','Fiber Optic Network Technology
Course.pdf','U980T1686363063.pdf','2023-06-10 02:11:03','2023-06-10
02:11:03',NULL,'980',NULL,NULL),(2173,980,'SWT','applicants_certifications/
U980T1686363085.pdf','applicants_certifications','Regionwide Gender Sensitivity
Training (GST) Cum DOST GAD Kit Orientation.pdf','U980T1686363085.pdf','2023-06-10
02:11:25','2023-06-10 02:11:25',NULL,'980',NULL,NULL),
(2174,980,'SWT','applicants_certifications/
U980T1686363099.pdf','applicants_certifications','Risk
Management.pdf','U980T1686363099.pdf','2023-06-10 02:11:39','2023-06-10
02:11:39',NULL,'980',NULL,NULL),(2175,980,'SWT','applicants_certifications/
U980T1686363113.pdf','applicants_certifications','Personal Branding and Culture of
Excellence.pdf','U980T1686363113.pdf','2023-06-10 02:11:53','2023-06-10
02:11:53',NULL,'980',NULL,NULL),(2176,980,'SWT','applicants_certifications/
U980T1686363126.pdf','applicants_certifications','Symposium and Poster Exhibit of
IT Solutions Developed by DOST.pdf','U980T1686363126.pdf','2023-06-10
02:12:06','2023-06-10 02:12:06',NULL,'980',NULL,NULL),
(2177,980,'SWT','applicants_certifications/
U980T1686363143.pdf','applicants_certifications','Leveraging R&D Human Resource
Through HR Analytics.pdf','U980T1686363143.pdf','2023-06-10 02:12:23','2023-06-10
02:12:23',NULL,'980',NULL,NULL),(2178,980,'SWT','applicants_certifications/
U980T1686363162.pdf','applicants_certifications','ICT Resource Acquisition -
Project Terms of Reference Seminar.pdf','U980T1686363162.pdf','2023-06-10
02:12:42','2023-06-10 02:12:42',NULL,'980',NULL,NULL),
(2179,980,'SWT','applicants_certifications/
U980T1686363180.pdf','applicants_certifications','Training-Workshop on the Unified
Reporting System (URS) for the DOST System.pdf','U980T1686363180.pdf','2023-06-10
02:13:00','2023-06-10 02:13:00',NULL,'980',NULL,NULL),
(2180,980,'SWT','applicants_certifications/
U980T1686363195.pdf','applicants_certifications','Understanding Reinforcing and
Integrating DOST 02\'s Core Values for Culture Enhancement and Performance
Excellence.pdf','U980T1686363195.pdf','2023-06-10 02:13:15','2023-06-10
02:13:15',NULL,'980',NULL,NULL),(2181,980,'SWT','applicants_certifications/
U980T1686363207.pdf','applicants_certifications','Training on Basic Life Support
and First Aid.pdf','U980T1686363207.pdf','2023-06-10 02:13:27','2023-06-10
02:13:27',NULL,'980',NULL,NULL),(2182,980,'SWT','applicants_certifications/
U980T1686363225.pdf','applicants_certifications','Enhanced e-NGAs & e-Budget
Training v2.0.0.pdf','U980T1686363225.pdf','2023-06-10 02:13:45','2023-06-10
02:13:45',NULL,'980',NULL,NULL),(2183,980,'SWT','applicants_certifications/
U980T1686363243.pdf','applicants_certifications','Strategies for Developing
Effective Social Media Marketing, Photography, and Presentation Skills Seminar and
Workshop.pdf','U980T1686363243.pdf','2023-06-10 02:14:03','2023-06-10
02:14:03',NULL,'980',NULL,NULL),(2184,1013,'TOR','applicants_certifications/
U1013T1686384827.pdf','applicants_certifications','Transcript
of Records.pdf','U1013T1686384827.pdf','2023-06-10 08:13:47','2023-06-10
08:13:47',NULL,'1013',NULL,NULL),(2185,1013,'COE','applicants_certifications/
U1013T1686384868.pdf','applicants_certifications','performance-rating-ms-
nelia.pdf','U1013T1686384868.pdf','2023-06-10 08:14:28','2023-06-10
08:14:28',NULL,'1013',NULL,NULL),(2186,1013,'SWT','applicants_certifications/
U1013T1686384893.pdf','applicants_certifications','CSS NCII
Cert..pdf','U1013T1686384893.pdf','2023-06-10 08:14:54','2023-06-10
08:14:54',NULL,'1013',NULL,NULL),
(2187,1013,'ELIGIBILITY','applicants_certifications/
U1013T1686384920.pdf','applicants_certifications','PRC
License.pdf','U1013T1686384920.pdf','2023-06-10 08:15:20','2023-06-10
08:15:20',NULL,'1013',NULL,NULL),(2188,1013,'PDS','applicants_certifications/
U1013T1686384939.pdf','applicants_certifications','Personal data
sheet.pdf','U1013T1686384939.pdf','2023-06-10 08:15:39','2023-06-10
08:15:39',NULL,'1013',NULL,NULL),
(2190,944,'ELIGIBILITY','applicants_certifications/
U944T1686391671.jpg','applicants_certifications','inbound1767002171682196450.jpg','
U944T1686391671.jpg','2023-06-10 10:07:51','2023-06-10
10:07:51',NULL,'944',NULL,NULL),
(2191,944,'ELIGIBILITY','applicants_certifications/
U944T1686391999.jpg','applicants_certifications','inbound1646350743585739952.jpg','
U944T1686391999.jpg','2023-06-10 10:13:19','2023-06-10
10:13:19',NULL,'944',NULL,NULL),(2194,481,'COE','applicants_certifications/
U481T1686402529.pdf','applicants_certifications','COE
DSWD.pdf','U481T1686402529.pdf','2023-06-10 13:08:49','2023-06-10
13:08:49',NULL,'481',NULL,NULL),(2195,481,'PDS','applicants_certifications/
U481T1686403821.pdf','applicants_certifications','PDF - BENGWIC, JIRAH
A..pdf','U481T1686403821.pdf','2023-06-10 13:30:21','2023-06-10
13:30:21',NULL,'481',NULL,NULL),
(2196,481,'ELIGIBILITY','applicants_certifications/
U481T1686404733.pdf','applicants_certifications','NC3.pdf','U481T1686404733.pdf','2
023-06-10 13:45:33','2023-06-10 13:45:33',NULL,'481',NULL,NULL),
(2197,481,'ELIGIBILITY','applicants_certifications/
U481T1686404758.pdf','applicants_certifications','4.-Notice-of-Rating-Angiwan-
Jirah.pdf','U481T1686404758.pdf','2023-06-10 13:45:58','2023-06-10
13:45:58',NULL,'481',NULL,NULL),(2198,481,'SWT','applicants_certifications/
U481T1686404989.pdf','applicants_certifications','Certificates
(Training).pdf','U481T1686404989.pdf','2023-06-10 13:49:49','2023-06-10
13:49:49',NULL,'481',NULL,NULL),(2201,1086,'TOR','applicants_certifications/
U1086T1686420795.jpg','applicants_certifications','inbound5431258197283033601.jpg',
'U1086T1686420795.jpg','2023-06-10 18:13:15','2023-06-10
18:13:15',NULL,'1086',NULL,NULL),(2202,1086,'TOR','applicants_certifications/
U1086T1686420813.jpg','applicants_certifications','inbound9129073794641271284.jpg',
'U1086T1686420813.jpg','2023-06-10 18:13:33','2023-06-10
18:13:33',NULL,'1086',NULL,NULL),(2203,1086,'TOR','applicants_certifications/
U1086T1686420828.jpg','applicants_certifications','inbound3567134489191101524.jpg',
'U1086T1686420828.jpg','2023-06-10 18:13:48','2023-06-10
18:13:48',NULL,'1086',NULL,NULL),(2204,944,'TOR','applicants_certifications/
U944T1686445696.jpg','applicants_certifications','inbound570505574123055163.jpg','U
944T1686445696.jpg','2023-06-11 01:08:16','2023-06-11
01:08:16',NULL,'944',NULL,NULL),(2205,944,'TOR','applicants_certifications/
U944T1686445764.jpg','applicants_certifications','inbound4682039875920771849.jpg','
U944T1686445764.jpg','2023-06-11 01:09:24','2023-06-11
01:09:24',NULL,'944',NULL,NULL),(2206,944,'SWT','applicants_certifications/
U944T1686445902.jpg','applicants_certifications','inbound1707734266183484205.jpg','
U944T1686445902.jpg','2023-06-11 01:11:42','2023-06-11
01:11:42',NULL,'944',NULL,NULL),(2207,944,'SWT','applicants_certifications/
U944T1686446066.jpg','applicants_certifications','inbound663458988570058389.jpg','U
944T1686446066.jpg','2023-06-11 01:14:26','2023-06-11
01:14:26',NULL,'944',NULL,NULL),(2208,944,'PDS','applicants_certifications/
U944T1686448819.jpg','applicants_certifications','inbound4392004642334568736.jpg','
U944T1686448819.jpg','2023-06-11 02:00:19','2023-06-11
02:00:19',NULL,'944',NULL,NULL),(2209,944,'PDS','applicants_certifications/
U944T1686448943.jpg','applicants_certifications','inbound2765139404586788632.jpg','
U944T1686448943.jpg','2023-06-11 02:02:23','2023-06-11
02:02:23',NULL,'944',NULL,NULL),(2210,944,'PDS','applicants_certifications/
U944T1686449048.jpg','applicants_certifications','inbound97665739575190683.jpg','U9
44T1686449048.jpg','2023-06-11 02:04:08','2023-06-11
02:04:08',NULL,'944',NULL,NULL),(2211,944,'PDS','applicants_certifications/
U944T1686449118.jpg','applicants_certifications','inbound7388265495485350085.jpg','
U944T1686449118.jpg','2023-06-11 02:05:18','2023-06-11
02:05:18',NULL,'944',NULL,NULL),
(2212,381,'ELIGIBILITY','applicants_certifications/
U381T1686468224.jpg','applicants_certifications','Certificate of
Eligibility.jpg','U381T1686468224.jpg','2023-06-11 07:23:44','2023-06-11
07:23:44',NULL,'381',NULL,NULL),(2213,381,'TOR','applicants_certifications/
U381T1686468768.jpg','applicants_certifications','transcript
1.jpg','U381T1686468768.jpg','2023-06-11 07:32:48','2023-06-11
07:32:48',NULL,'381',NULL,NULL),(2214,381,'TOR','applicants_certifications/
U381T1686468965.jpg','applicants_certifications','transcript
2.jpg','U381T1686468965.jpg','2023-06-11 07:36:05','2023-06-11
07:36:05',NULL,'381',NULL,NULL),(2216,381,'TOR','applicants_certifications/
U381T1686469579.jpg','applicants_certifications','transcript
3.jpg','U381T1686469579.jpg','2023-06-11 07:46:19','2023-06-11
07:46:19',NULL,'381',NULL,NULL),(2217,381,'SWT','applicants_certifications/
U381T1686469953.jpg','applicants_certifications','global cuisine
quest.jpg','U381T1686469953.jpg','2023-06-11 07:52:33','2023-06-11
07:52:33',NULL,'381',NULL,NULL),(2218,381,'SWT','applicants_certifications/
U381T1686470170.jpg','applicants_certifications','advance english
grammar.jpg','U381T1686470170.jpg','2023-06-11 07:56:10','2023-06-11
07:56:10',NULL,'381',NULL,NULL),(2221,381,'SWT','applicants_certifications/
U381T1686471747.png','applicants_certifications','mental
health.png','U381T1686471747.png','2023-06-11 08:22:27','2023-06-11
08:22:27',NULL,'381',NULL,NULL),(2222,381,'SWT','applicants_certifications/
U381T1686471832.png','applicants_certifications','mental
health.png','U381T1686471832.png','2023-06-11 08:23:52','2023-06-11
08:23:52',NULL,'381',NULL,NULL),(2224,381,'SWT','applicants_certifications/
U381T1686472159.jpg','applicants_certifications','complete MBA
Course.jpg','U381T1686472159.jpg','2023-06-11 08:29:19','2023-06-11
08:29:19',NULL,'381',NULL,NULL),(2225,381,'SWT','applicants_certifications/
U381T1686472761.jpg','applicants_certifications','copywriting.jpg','U381T1686472761
.jpg','2023-06-11 08:39:21','2023-06-11 08:39:21',NULL,'381',NULL,NULL),
(2226,381,'SWT','applicants_certifications/
U381T1686473213.jpg','applicants_certifications','operating
VCM.jpg','U381T1686473213.jpg','2023-06-11 08:46:53','2023-06-11
08:46:53',NULL,'381',NULL,NULL),(2227,381,'SWT','applicants_certifications/
U381T1686473534.jpg','applicants_certifications','a beginers guide to a sucessful
business.jpg','U381T1686473534.jpg','2023-06-11 08:52:14','2023-06-11
08:52:14',NULL,'381',NULL,NULL),(2228,381,'SWT','applicants_certifications/
U381T1686473643.jpg','applicants_certifications','analytical business
report.jpg','U381T1686473643.jpg','2023-06-11 08:54:03','2023-06-11
08:54:03',NULL,'381',NULL,NULL),(2229,381,'SWT','applicants_certifications/
U381T1686473927.jpg','applicants_certifications','branding
mastery.jpg','U381T1686473927.jpg','2023-06-11 08:58:47','2023-06-11
08:58:47',NULL,'381',NULL,NULL),(2230,381,'SWT','applicants_certifications/
U381T1686473948.jpg','applicants_certifications','branding
mastery.jpg','U381T1686473948.jpg','2023-06-11 08:59:08','2023-06-11
08:59:08',NULL,'381',NULL,NULL),(2231,381,'SWT','applicants_certifications/
U381T1686474070.jpg','applicants_certifications','complete MBA
Course.jpg','U381T1686474070.jpg','2023-06-11 09:01:10','2023-06-11
09:01:10',NULL,'381',NULL,NULL),(2232,381,'SWT','applicants_certifications/
U381T1686474112.jpg','applicants_certifications','FINANCIAL
LITERACY.jpg','U381T1686474112.jpg','2023-06-11 09:01:52','2023-06-11
09:01:52',NULL,'381',NULL,NULL),(2233,381,'SWT','applicants_certifications/
U381T1686474318.jpg','applicants_certifications','google drive ultimate
course.jpg','U381T1686474318.jpg','2023-06-11 09:05:18','2023-06-11
09:05:18',NULL,'381',NULL,NULL),(2234,381,'SWT','applicants_certifications/
U381T1686474562.jpg','applicants_certifications','home business basic sales and
marketing tools.jpg','U381T1686474562.jpg','2023-06-11 09:09:22','2023-06-11
09:09:22',NULL,'381',NULL,NULL),(2235,381,'SWT','applicants_certifications/
U381T1686474630.jpg','applicants_certifications','how to build
confidence.jpg','U381T1686474630.jpg','2023-06-11 09:10:30','2023-06-11
09:10:30',NULL,'381',NULL,NULL),(2236,381,'SWT','applicants_certifications/
U381T1686474752.jpg','applicants_certifications','improve english skills by
movies.jpg','U381T1686474752.jpg','2023-06-11 09:12:32','2023-06-11
09:12:32',NULL,'381',NULL,NULL),(2237,381,'SWT','applicants_certifications/
U381T1686474823.jpg','applicants_certifications','Improving EnglisH
sKILLS.jpg','U381T1686474823.jpg','2023-06-11 09:13:43','2023-06-11
09:13:43',NULL,'381',NULL,NULL),(2238,381,'SWT','applicants_certifications/
U381T1686474870.jpg','applicants_certifications','problems and solutions in
accounting.jpg','U381T1686474870.jpg','2023-06-11 09:14:30','2023-06-11
09:14:30',NULL,'381',NULL,NULL),(2239,381,'SWT','applicants_certifications/
U381T1686474905.jpg','applicants_certifications','redifining the future of
hospitality.jpg','U381T1686474905.jpg','2023-06-11 09:15:05','2023-06-11
09:15:05',NULL,'381',NULL,NULL),(2240,381,'SWT','applicants_certifications/
U381T1686475061.jpg','applicants_certifications','OJT
RESTO.jpg','U381T1686475061.jpg','2023-06-11 09:17:41','2023-06-11
09:17:41',NULL,'381',NULL,NULL),(2241,381,'SWT','applicants_certifications/
U381T1686475118.jpg','applicants_certifications','OJT
VESSEL.jpg','U381T1686475118.jpg','2023-06-11 09:18:38','2023-06-11
09:18:38',NULL,'381',NULL,NULL),(2242,381,'SWT','applicants_certifications/
U381T1686475188.jpg','applicants_certifications','OJT
HOTEL.jpg','U381T1686475188.jpg','2023-06-11 09:19:48','2023-06-11
09:19:48',NULL,'381',NULL,NULL),(2243,942,'SWT','applicants_certifications/
U942T1686476339.pdf','applicants_certifications','A QUINTERO bookkeeping
cert.pdf','U942T1686476339.pdf','2023-06-11 09:38:59','2023-06-11
09:38:59',NULL,'942',NULL,NULL),
(2244,942,'ELIGIBILITY','applicants_certifications/
U942T1686476399.pdf','applicants_certifications','PRC
LICENSE.pdf','U942T1686476399.pdf','2023-06-11 09:39:59','2023-06-11
09:39:59',NULL,'942',NULL,NULL),(2245,1092,'TOR','applicants_certifications/
U1092T1686491558.pdf','applicants_certifications','Transcript of
Records.pdf','U1092T1686491558.pdf','2023-06-11 13:52:38','2023-06-11
13:52:38',NULL,'1092',NULL,NULL),(2246,1092,'COE','applicants_certifications/
U1092T1686493069.pdf','applicants_certifications','To Be
Followed.pdf','U1092T1686493069.pdf','2023-06-11 14:17:49','2023-06-11
14:17:49',NULL,'1092',NULL,NULL),(2247,1092,'SWT','applicants_certifications/
U1092T1686493095.pdf','applicants_certifications','NC2.pdf','U1092T1686493095.pdf',
'2023-06-11 14:18:15','2023-06-11 14:18:15',NULL,'1092',NULL,NULL),
(2248,1092,'ELIGIBILITY','applicants_certifications/
U1092T1686493123.pdf','applicants_certifications','To Be
Followed.pdf','U1092T1686493123.pdf','2023-06-11 14:18:43','2023-06-11
14:18:43',NULL,'1092',NULL,NULL),(2249,1092,'PDS','applicants_certifications/
U1092T1686493157.pdf','applicants_certifications','RESUME_JOLIX HAY
D.pdf','U1092T1686493157.pdf','2023-06-11 14:19:17','2023-06-11
14:19:17',NULL,'1092',NULL,NULL),(2250,913,'PDS','applicants_certifications/
U913T1686523312.','applicants_certifications','858314','U913T1686523312.','2023-06-
11 22:41:52','2023-06-11 22:41:52',NULL,'913',NULL,NULL),
(2254,1097,'TOR','applicants_certifications/
U1097T1686532573.jpg','applicants_certifications','inbound1847701618485363045.jpg',
'U1097T1686532573.jpg','2023-06-12 01:16:13','2023-06-12
01:16:13',NULL,'1097',NULL,NULL),(2255,1097,'TOR','applicants_certifications/
U1097T1686532602.jpg','applicants_certifications','inbound3628120213104054125.jpg',
'U1097T1686532602.jpg','2023-06-12 01:16:42','2023-06-12
01:16:42',NULL,'1097',NULL,NULL),(2256,1097,'TOR','applicants_certifications/
U1097T1686532626.jpg','applicants_certifications','inbound788681301476164257.jpg','
U1097T1686532626.jpg','2023-06-12 01:17:06','2023-06-12
01:17:06',NULL,'1097',NULL,NULL),
(2258,1097,'ELIGIBILITY','applicants_certifications/
U1097T1686532704.jpg','applicants_certifications','inbound1437693979131593098.jpg',
'U1097T1686532704.jpg','2023-06-12 01:18:24','2023-06-12
01:18:24',NULL,'1097',NULL,NULL),(2263,1098,'TOR','applicants_certifications/
U1098T1686534978.pdf','applicants_certifications','inbound7233028868600199782.pdf',
'U1098T1686534978.pdf','2023-06-12 01:56:18','2023-06-12
01:56:18',NULL,'1098',NULL,NULL),
(2264,1098,'ELIGIBILITY','applicants_certifications/
U1098T1686535004.pdf','applicants_certifications','inbound1462277393364552519.pdf',
'U1098T1686535004.pdf','2023-06-12 01:56:44','2023-06-12
01:56:44',NULL,'1098',NULL,NULL),(2265,1017,'TOR','applicants_certifications/
U1017T1686539019.jpg','applicants_certifications','inbound828671723001103984.jpg','
U1017T1686539019.jpg','2023-06-12 03:03:39','2023-06-12
03:03:39',NULL,'1017',NULL,NULL),(2267,1017,'TOR','applicants_certifications/
U1017T1686539832.jpg','applicants_certifications','inbound525198387824344642.jpg','
U1017T1686539832.jpg','2023-06-12 03:17:12','2023-06-12
03:17:12',NULL,'1017',NULL,NULL),(2268,1044,'SWT','applicants_certifications/
U1044T1686540021.pdf','applicants_certifications','Training
Certificate.ZendleBalao.pdf','U1044T1686540021.pdf','2023-06-12 03:20:21','2023-06-
12 03:20:21',NULL,'1044',NULL,NULL),(2269,983,'TOR','applicants_certifications/
U983T1686540245.pdf','applicants_certifications','OTR.pdf','U983T1686540245.pdf','2
023-06-12 03:24:05','2023-06-12 03:24:05',NULL,'983',NULL,NULL),
(2270,983,'COE','applicants_certifications/
U983T1686540590.pdf','applicants_certifications','COE.pdf','U983T1686540590.pdf','2
023-06-12 03:29:50','2023-06-12 03:29:50',NULL,'983',NULL,NULL),
(2271,983,'COE','applicants_certifications/
U983T1686540705.pdf','applicants_certifications','COE
(2).pdf','U983T1686540705.pdf','2023-06-12 03:31:45','2023-06-12
03:31:45',NULL,'983',NULL,NULL),
(2272,1017,'ELIGIBILITY','applicants_certifications/
U1017T1686540766.jpg','applicants_certifications','inbound3900193838673468475.jpg',
'U1017T1686540766.jpg','2023-06-12 03:32:46','2023-06-12
03:32:46',NULL,'1017',NULL,NULL),(2273,983,'SWT','applicants_certifications/
U983T1686541063.pdf','applicants_certifications','CERTIFICATES.pdf','U983T168654106
3.pdf','2023-06-12 03:37:43','2023-06-12 03:37:43',NULL,'983',NULL,NULL),
(2276,1044,'PDS','applicants_certifications/
U1044T1686544130.pdf','applicants_certifications','PDS.C1.pdf','U1044T1686544130.pd
f','2023-06-12 04:28:50','2023-06-12 04:28:50',NULL,'1044',NULL,NULL),
(2277,1044,'PDS','applicants_certifications/
U1044T1686544141.pdf','applicants_certifications','PDS.C2.pdf','U1044T1686544141.pd
f','2023-06-12 04:29:01','2023-06-12 04:29:01',NULL,'1044',NULL,NULL),
(2278,1044,'PDS','applicants_certifications/
U1044T1686544152.pdf','applicants_certifications','PDS.C3.pdf','U1044T1686544152.pd
f','2023-06-12 04:29:12','2023-06-12 04:29:12',NULL,'1044',NULL,NULL),
(2279,1044,'PDS','applicants_certifications/
U1044T1686544162.pdf','applicants_certifications','PDS.C4.pdf','U1044T1686544162.pd
f','2023-06-12 04:29:22','2023-06-12 04:29:22',NULL,'1044',NULL,NULL),
(2280,1044,'PDS','applicants_certifications/
U1044T1686544179.pdf','applicants_certifications','Work Experience
Sheet.pdf','U1044T1686544179.pdf','2023-06-12 04:29:39','2023-06-12
04:29:39',NULL,'1044',NULL,NULL),
(2281,983,'ELIGIBILITY','applicants_certifications/
U983T1686544596.jpg','applicants_certifications','LICENSE
ID.jpg','U983T1686544596.jpg','2023-06-12 04:36:36','2023-06-12
04:36:36',NULL,'983',NULL,NULL),
(2282,983,'ELIGIBILITY','applicants_certifications/
U983T1686544613.jpg','applicants_certifications','LICENSE ID
BACK.jpg','U983T1686544613.jpg','2023-06-12 04:36:53','2023-06-12
04:36:53',NULL,'983',NULL,NULL),(2284,1044,'TOR','applicants_certifications/
U1044T1686544646.pdf','applicants_certifications','TOR1.pdf','U1044T1686544646.pdf'
,'2023-06-12 04:37:26','2023-06-12 04:37:26',NULL,'1044',NULL,NULL),
(2285,1044,'TOR','applicants_certifications/
U1044T1686544656.pdf','applicants_certifications','TOR2.pdf','U1044T1686544656.pdf'
,'2023-06-12 04:37:36','2023-06-12 04:37:36',NULL,'1044',NULL,NULL),
(2286,1044,'TOR','applicants_certifications/
U1044T1686544666.pdf','applicants_certifications','TOR3.pdf','U1044T1686544666.pdf'
,'2023-06-12 04:37:46','2023-06-12 04:37:46',NULL,'1044',NULL,NULL),
(2287,1044,'TOR','applicants_certifications/
U1044T1686544676.pdf','applicants_certifications','TOR4.pdf','U1044T1686544676.pdf'
,'2023-06-12 04:37:56','2023-06-12 04:37:56',NULL,'1044',NULL,NULL),
(2288,1044,'COE','applicants_certifications/
U1044T1686544717.pdf','applicants_certifications','Performance Rating
2023.pdf','U1044T1686544717.pdf','2023-06-12 04:38:37','2023-06-12
04:38:37',NULL,'1044',NULL,NULL),(2289,983,'PDS','applicants_certifications/
U983T1686547571.pdf','applicants_certifications','J. VILLANUEVA
PDS_.pdf','U983T1686547571.pdf','2023-06-12 05:26:11','2023-06-12
05:26:11',NULL,'983',NULL,NULL),(2295,1107,'TOR','applicants_certifications/
U1107T1686555136.jpg','applicants_certifications','inbound8583474660795466085.jpg',
'U1107T1686555136.jpg','2023-06-12 07:32:16','2023-06-12
07:32:16',NULL,'1107',NULL,NULL),(2296,1107,'SWT','applicants_certifications/
U1107T1686555330.jpg','applicants_certifications','inbound7011631034458946504.jpg',
'U1107T1686555330.jpg','2023-06-12 07:35:30','2023-06-12
07:35:30',NULL,'1107',NULL,NULL),(2297,1107,'SWT','applicants_certifications/
U1107T1686555453.jpg','applicants_certifications','inbound3364354383607506724.jpg',
'U1107T1686555453.jpg','2023-06-12 07:37:33','2023-06-12
07:37:33',NULL,'1107',NULL,NULL),(2298,1107,'SWT','applicants_certifications/
U1107T1686555514.jpg','applicants_certifications','inbound4695100844949892798.jpg',
'U1107T1686555514.jpg','2023-06-12 07:38:34','2023-06-12
07:38:34',NULL,'1107',NULL,NULL),(2299,1107,'SWT','applicants_certifications/
U1107T1686555598.jpg','applicants_certifications','inbound1799929749157154686.jpg',
'U1107T1686555598.jpg','2023-06-12 07:39:58','2023-06-12
07:39:58',NULL,'1107',NULL,NULL),(2300,1107,'SWT','applicants_certifications/
U1107T1686555621.jpg','applicants_certifications','inbound5796789854066829073.jpg',
'U1107T1686555621.jpg','2023-06-12 07:40:21','2023-06-12
07:40:21',NULL,'1107',NULL,NULL),
(2302,1102,'ELIGIBILITY','applicants_certifications/
U1102T1686557410.jpg','applicants_certifications','IMG_3076.jpg','U1102T1686557410.
jpg','2023-06-12 08:10:10','2023-06-12 08:10:10',NULL,'1102',NULL,NULL),
(2303,1102,'COE','applicants_certifications/
U1102T1686557455.TOR','applicants_certifications','Precious.TOR','U1102T1686557455.
TOR','2023-06-12 08:10:55','2023-06-12 08:10:55',NULL,'1102',NULL,NULL),
(2304,1035,'TOR','applicants_certifications/
U1035T1686558752.pdf','applicants_certifications','inbound2062917173275038265.pdf',
'U1035T1686558752.pdf','2023-06-12 08:32:32','2023-06-12
08:32:32',NULL,'1035',NULL,NULL),(2305,903,'SWT','applicants_certifications/
U903T1686558818.png','applicants_certifications','Screenshot_20230612-
162236~2.png','U903T1686558818.png','2023-06-12 08:33:38','2023-06-12
08:33:38',NULL,'903',NULL,NULL),
(2306,1035,'ELIGIBILITY','applicants_certifications/
U1035T1686560087.jpg','applicants_certifications','inbound8973527358150905093.jpg',
'U1035T1686
560087.jpg','2023-06-12 08:54:47','2023-06-12 08:54:47',NULL,'1035',NULL,NULL),
(2311,1035,'TOR','applicants_certifications/
U1035T1686560333.jpg','applicants_certifications','inbound853802944698411953.jpg','
U1035T1686560333.jpg','2023-06-12 08:58:53','2023-06-12
08:58:53',NULL,'1035',NULL,NULL),(2312,381,'PDS','applicants_certifications/
U381T1686560406.xlsx','applicants_certifications','CSC Form
12.xlsx','U381T1686560406.xlsx','2023-06-12 09:00:06','2023-06-12
09:00:06',NULL,'381',NULL,NULL),(2313,1035,'COE','applicants_certifications/
U1035T1686560536.jpg','applicants_certifications','inbound292940610746198966.jpg','
U1035T1686560536.jpg','2023-06-12 09:02:16','2023-06-12
09:02:16',NULL,'1035',NULL,NULL),(2314,1110,'TOR','applicants_certifications/
U1110T1686573476.jpg','applicants_certifications','Transcript1.jpg','U1110T16865734
76.jpg','2023-06-12 12:37:56','2023-06-12 12:37:56',NULL,'1110',NULL,NULL),
(2315,1110,'TOR','applicants_certifications/
U1110T1686574132.jpg','applicants_certifications','Transcript2.jpg','U1110T16865741
32.jpg','2023-06-12 12:48:52','2023-06-12 12:48:52',NULL,'1110',NULL,NULL),
(2316,1110,'ELIGIBILITY','applicants_certifications/
U1110T1686574305.jpg','applicants_certifications','civil service
cert..jpg','U1110T1686574305.jpg','2023-06-12 12:51:45','2023-06-12
12:51:45',NULL,'1110',NULL,NULL),(2317,1110,'SWT','applicants_certifications/
U1110T1686574546.jpg','applicants_certifications','Update on Cashiering-seminar
cert.jpg','U1110T1686574546.jpg','2023-06-12 12:55:46','2023-06-12
12:55:46',NULL,'1110',NULL,NULL),(2319,1110,'COE','applicants_certifications/
U1110T1686574913.jpg','applicants_certifications','Certificate of
Employment.jpg','U1110T1686574913.jpg','2023-06-12 13:01:53','2023-06-12
13:01:53',NULL,'1110',NULL,NULL),(2320,1110,'SWT','applicants_certifications/
U1110T1686575386.jpg','applicants_certifications','Acctg. Update for Cashier-
seminar cert.jpg','U1110T1686575386.jpg','2023-06-12 13:09:46','2023-06-12
13:09:46',NULL,'1110',NULL,NULL),(2321,1110,'SWT','applicants_certifications/
U1110T1686575421.jpg','applicants_certifications','Posting Clerk Update-seminar
cert.jpg','U1110T1686575421.jpg','2023-06-12 13:10:21','2023-06-12
13:10:21',NULL,'1110',NULL,NULL),(2322,1110,'SWT','applicants_certifications/
U1110T1686575469.jpg','applicants_certifications','Stress Management-
Seminar.jpg','U1110T1686575469.jpg','2023-06-12 13:11:09','2023-06-12
13:11:09',NULL,'1110',NULL,NULL),(2327,934,'COE','applicants_certifications/
U934T1686620127.pdf','applicants_certifications','MAFUL CERT OF
EMPLOYMENT.pdf','U934T1686620127.pdf','2023-06-13 01:35:27','2023-06-13
01:35:27',NULL,'934',NULL,NULL),
(2329,1115,'ELIGIBILITY','applicants_certifications/U1115T1686620642.jpg
(1)','applicants_certifications','Report Rating_1.jpg (1)','U1115T1686620642.jpg
(1)','2023-06-13 01:44:02','2023-06-13 01:44:02',NULL,'1115',NULL,NULL),
(2332,1115,'PDS','applicants_certifications/
U1115T1686620787.pdf','applicants_certifications','PDS and
WES.pdf','U1115T1686620787.pdf','2023-06-13 01:46:27','2023-06-13
01:46:27',NULL,'1115',NULL,NULL),(2333,934,'SWT','applicants_certifications/
U934T1686621113.jpg','applicants_certifications','seminar.jpg','U934T1686621113.jpg
','2023-06-13 01:51:53','2023-06-13 01:51:53',NULL,'934',NULL,NULL),
(2334,1115,'TOR','applicants_certifications/
U1115T1686621147.pdf','applicants_certifications','OTR.pdf','U1115T1686621147.pdf',
'2023-06-13 01:52:27','2023-06-13 01:52:27',NULL,'1115',NULL,NULL),
(2335,1115,'COE','applicants_certifications/
U1115T1686621204.pdf','applicants_certifications','COE.pdf','U1115T1686621204.pdf',
'2023-06-13 01:53:24','2023-06-13 01:53:24',NULL,'1115',NULL,NULL),
(2336,1115,'SWT','applicants_certifications/
U1115T1686621377.pdf','applicants_certifications','Cert. of
Webinars.pdf','U1115T1686621377.pdf','2023-06-13 01:56:17','2023-06-13
01:56:17',NULL,'1115',NULL,NULL),(2337,555,'SWT','applicants_certifications/
U555T1686622464.pdf','applicants_certifications','11. Gamiz Training Facilitation
Course.pdf','U555T1686622464.pdf','2023-06-13 02:14:24','2023-06-13
02:14:24',NULL,'555',NULL,NULL),(2338,555,'SWT','applicants_certifications/
U555T1686622530.pdf','applicants_certifications','Certificate
(2).pdf','U555T1686622530.pdf','2023-06-13 02:15:31','2023-06-13
02:15:31',NULL,'555',NULL,NULL),(2339,555,'PDS','applicants_certifications/
U555T1686622585.pdf','applicants_certifications','3. GAMIZ_PERSONAL DATA
SHEET.pdf','U555T1686622585.pdf','2023-06-13 02:16:25','2023-06-13
02:16:25',NULL,'555',NULL,NULL),(2340,555,'SWT','applicants_certifications/
U555T1686622921.pdf','applicants_certifications','Certificates of
Appreciation.pdf','U555T1686622921.pdf','2023-06-13 02:22:01','2023-06-13
02:22:01',NULL,'555',NULL,NULL),(2341,1105,'TOR','applicants_certifications/
U1105T1686623198.jpg','applicants_certifications','CamScanner 02-23-2023
09.55_1.jpg','U1105T1686623198.jpg','2023-06-13 02:26:38','2023-06-13
02:26:38',NULL,'1105',NULL,NULL),(2342,1105,'TOR','applicants_certifications/
U1105T1686623251.jpg','applicants_certifications','CamScanner 02-23-2023
09.55_2.jpg','U1105T1686623251.jpg','2023-06-13 02:27:31','2023-06-13
02:27:31',NULL,'1105',NULL,NULL),
(2346,1105,'ELIGIBILITY','applicants_certifications/
U1105T1686624270.jpg','applicants_certifications','CamScanner 06-13-2023
10.33_2.jpg','U1105T1686624270.jpg','2023-06-13 02:44:30','2023-06-13
02:44:30',NULL,'1105',NULL,NULL),(2347,1105,'SWT','applicants_certifications/
U1105T1686624323.jpg','applicants_certifications','CamScanner 06-13-2023
10.33_1.jpg','U1105T1686624323.jpg','2023-06-13 02:45:23','2023-06-13
02:45:23',NULL,'1105',NULL,NULL),(2349,1105,'SWT','applicants_certifications/
U1105T1686624463.jpg','applicants_certifications','CamScanner 02-23-2023
09.55_14.jpg','U1105T1686624463.jpg','2023-06-13 02:47:43','2023-06-13
02:47:43',NULL,'1105',NULL,NULL),(2350,1105,'SWT','applicants_certifications/
U1105T1686624497.jpg','applicants_certifications','20221021_210022.jpg','U1105T1686
624497.jpg','2023-06-13 02:48:17','2023-06-13 02:48:17',NULL,'1105',NULL,NULL),
(2351,1105,'SWT','applicants_certifications/
U1105T1686624524.jpg','applicants_certifications','CamScanner 10-21-2022
20.56_3.jpg','U1105T1686624524.jpg','2023-06-13 02:48:44','2023-06-13
02:48:44',NULL,'1105',NULL,NULL),(2352,1105,'SWT','applicants_certifications/
U1105T1686624547.jpg','applicants_certifications','20221021_210053.jpg','U1105T1686
624547.jpg','2023-06-13 02:49:07','2023-06-13 02:49:07',NULL,'1105',NULL,NULL),
(2353,1105,'SWT','applicants_certifications/
U1105T1686624621.jpg','applicants_certifications','20221021_210037.jpg','U1105T1686
624621.jpg','2023-06-13 02:50:21','2023-06-13 02:50:21',NULL,'1105',NULL,NULL),
(2354,1105,'SWT','applicants_certifications/
U1105T1686624639.jpg','applicants_certifications','CamScanner 10-21-2022
15.39.jpg','U1105T1686624639.jpg','2023-06-13 02:50:39','2023-06-13
02:50:39',NULL,'1105',NULL,NULL),(2355,1105,'SWT','applicants_certifications/
U1105T1686624662.jpg','applicants_certifications','CamScanner 10-21-2022
15.38.jpg','U1105T1686624662.jpg','2023-06-13 02:51:02','2023-06-13
02:51:02',NULL,'1105',NULL,NULL),(2356,1105,'SWT','applicants_certifications/
U1105T1686624707.jpg','applicants_certifications','CamScanner 02-23-2023
09.55_22.jpg','U1105T1686624707.jpg','2023-06-13 02:51:47','2023-06-13
02:51:47',NULL,'1105',NULL,NULL),(2357,1048,'TOR','applicants_certifications/
U1048T1686625624.pdf','applicants_certifications','TRANSCRIPT OF
RECORDS.pdf','U1048T1686625624.pdf','2023-06-13 03:07:04','2023-06-13
03:07:04',NULL,'1048',NULL,NULL),(2358,1048,'SWT','applicants_certifications/
U1048T1686625786.pdf','applicants_certifications','Basic Life Support and First Aid
Training.pdf','U1048T1686625786.pdf','2023-06-13 03:09:46','2023-06-13
03:09:46',NULL,'1048',NULL,NULL),(2359,1048,'SWT','applicants_certifications/
U1048T1686625956.pdf','applicants_certifications','Interpersonal Communication
Seminar.pdf','U1048T1686625956.pdf','2023-06-13 03:12:36','2023-06-13
03:12:36',NULL,'1048',NULL,NULL),(2360,1048,'SWT','applicants_certifications/
U1048T1686626092.pdf','applicants_certifications','Advancing Community Relations
Thru Effective Communication.pdf','U1048T1686626092.pdf','2023-06-13
03:14:52','2023-06-13 03:14:52',NULL,'1048',NULL,NULL),
(2361,1048,'SWT','applicants_certifications/
U1048T1686626166.pdf','applicants_certifications','Basic Computer System
Maintenance.pdf','U1048T1686626166.pdf','2023-06-13 03:16:06','2023-06-13
03:16:06',NULL,'1048',NULL,NULL),(2362,1048,'SWT','applicants_certifications/
U1048T1686626272.pdf','applicants_certifications','Training on Technical
Secretariat Services.pdf','U1048T1686626272.pdf','2023-06-13 03:17:52','2023-06-13
03:17:52',NULL,'1048',NULL,NULL),(2363,1048,'SWT','applicants_certifications/
U1048T1686626355.pdf','applicants_certifications','Basic Human Resource Management
Training.pdf','U1048T1686626355.pdf','2023-06-13 03:19:15','2023-06-13
03:19:15',NULL,'1048',NULL,NULL),(2364,1048,'SWT','applicants_certifications/
U1048T1686626444.pdf','applicants_certifications','Training on Communicative and
Grammatical Competence, Technical Writing, MS Office Applications and Web
Applications.pdf','U1048T1686626444.pdf','2023-06-13 03:20:44','2023-06-13
03:20:44',NULL,'1048',NULL,NULL),(2365,1048,'SWT','applicants_certifications/
U1048T1686626509.pdf','applicants_certifications','Moral Enhancement
Seminar.pdf','U1048T1686626509.pdf','2023-06-13 03:21:49','2023-06-13
03:21:49',NULL,'1048',NULL,NULL),(2366,1048,'SWT','applicants_certifications/
U1048T1686626610.pdf','applicants_certifications','Double Barrel Database (IBM I2
Analyst) Seminar Workshop.pdf','U1048T1686626610.pdf','2023-06-13 03:23:30','2023-
06-13 03:23:30',NULL,'1048',NULL,NULL),
(2367,1048,'SWT','applicants_certifications/
U1048T1686626775.pdf','applicants_certifications','Competency Training and
Handholding of the Proficiency Evaluation
Process.pdf','U1048T1686626775.pdf','2023-06-13
03:26:15','2023-06-13 03:26:15',NULL,'1048',NULL,NULL),
(2368,1048,'SWT','applicants_certifications/
U1048T1686626991.pdf','applicants_certifications','Computer Skills Training
Assessment and Evaluation on the Competencies of Multimedia Applications-Video and
Audio Editing, Desktop Publishing-Layout, Presentation Package Operation and Web
Browsing.pdf','U1048T1686626991.pdf','2023-06-13 03:29:51','2023-06-13
03:29:51',NULL,'1048',NULL,NULL),(2369,1048,'SWT','applicants_certifications/
U1048T1686627062.pdf','applicants_certifications','Next Generation Investigation
System (NGIS).pdf','U1048T1686627062.pdf','2023-06-13 03:31:02','2023-06-13
03:31:02',NULL,'1048',NULL,NULL),(2370,1048,'SWT','applicants_certifications/
U1048T1686627171.pdf','applicants_certifications','Next Generation Investigation
System-Troubleshooting for E-projects Training for Investigators and Crime
Registrars.pdf','U1048T1686627171.pdf','2023-06-13 03:32:51','2023-06-13
03:32:51',NULL,'1048',NULL,NULL),(2371,1048,'SWT','applicants_certifications/
U1048T1686627259.pdf','applicants_certifications','Seminar Workshop on Advance
Microsoft Powerpoint.pdf','U1048T1686627259.pdf','2023-06-13 03:34:19','2023-06-13
03:34:19',NULL,'1048',NULL,NULL),(2372,1048,'COE','applicants_certifications/
U1048T1686627355.pdf','applicants_certifications','SERVICE RECORD-
PLGU.pdf','U1048T1686627355.pdf','2023-06-13 03:35:55','2023-06-13
03:35:55',NULL,'1048',NULL,NULL),
(2373,1048,'ELIGIBILITY','applicants_certifications/
U1048T1686627453.pdf','applicants_certifications','PRC
LICENSE.pdf','U1048T1686627453.pdf','2023-06-13 03:37:33','2023-06-13
03:37:33',NULL,'1048',NULL,NULL),(2378,980,'SWT','applicants_certifications/
U980T1686631826.pdf','applicants_certifications','Preparation of the Project
Procurement Management Plan(PPMP) and the Annual Procurement Plan (APP)
Seminar.pdf','U980T1686631826.pdf','2023-06-13 04:50:26','2023-06-13
04:50:26',NULL,'980',NULL,NULL),(2379,954,'PDS','applicants_certifications/
U954T1686636338.xlsx','applicants_certifications','GEROLD JACOB
PDS.xlsx','U954T1686636338.xlsx','2023-06-13 06:05:38','2023-06-13
06:05:38',NULL,'954',NULL,NULL),(2381,954,'COE','applicants_certifications/
U954T1686637700.pdf','applicants_certifications','GEROD JACOB CERT OF
EMPLOYMENT.pdf','U954T1686637700.pdf','2023-06-13 06:28:20','2023-06-13
06:28:20',NULL,'954',NULL,NULL),(2382,954,'TOR','applicants_certifications/
U954T1686637715.pdf','applicants_certifications','GERODL JACOB EU
TOR.pdf','U954T1686637715.pdf','2023-06-13 06:28:35','2023-06-13
06:28:35',NULL,'954',NULL,NULL),(2384,954,'TOR','applicants_certifications/
U954T1686637748.pdf','applicants_certifications','GEROLD JACOB MASSCOMM TOR
1.pdf','U954T1686637748.pdf','2023-06-13 06:29:08','2023-06-13
06:29:08',NULL,'954',NULL,NULL),(2385,1075,'COE','applicants_certifications/
U1075T1686637753.jpg','applicants_certifications','inbound2959352034996931847.jpg',
'U1075T1686637753.jpg','2023-06-13 06:29:13','2023-06-13
06:29:13',NULL,'1075',NULL,NULL),(2386,954,'TOR','applicants_certifications/
U954T1686637758.pdf','applicants_certifications','GEROLD JACOB MASSCOMM TOR
2.pdf','U954T1686637758.pdf','2023-06-13 06:29:18','2023-06-13
06:29:18',NULL,'954',NULL,NULL),(2389,954,'TOR','applicants_certifications/
U954T1686637819.pdf','applicants_certifications','GEROLD JACOB IT TOR
3.pdf','U954T1686637819.pdf','2023-06-13 06:30:19','2023-06-13
06:30:19',NULL,'954',NULL,NULL),(2390,954,'TOR','applicants_certifications/
U954T1686637833.pdf','applicants_certifications','GEROLD JACOB MAED
TOR.pdf','U954T1686637833.pdf','2023-06-13 06:30:33','2023-06-13
06:30:33',NULL,'954',NULL,NULL),(2391,1075,'SWT','applicants_certifications/
U1075T1686637836.jpg','applicants_certifications','inbound7343354522819222725.jpg',
'U1075T1686637836.jpg','2023-06-13 06:30:36','2023-06-13
06:30:36',NULL,'1075',NULL,NULL),(2392,1075,'SWT','applicants_certifications/
U1075T1686637867.jpg','applicants_certifications','inbound8904954484897324883.jpg',
'U1075T1686637867.jpg','2023-06-13 06:31:07','2023-06-13
06:31:07',NULL,'1075',NULL,NULL),
(2393,954,'ELIGIBILITY','applicants_certifications/
U954T1686637872.pdf','applicants_certifications','GEROLD JACOB PRC
LICENSE.pdf','U954T1686637872.pdf','2023-06-13 06:31:12','2023-06-13
06:31:12',NULL,'954',NULL,NULL),
(2394,954,'ELIGIBILITY','applicants_certifications/
U954T1686637884.pdf','applicants_certifications','GEROLD JACOB CERT OF
PASSING.pdf','U954T1686637884.pdf','2023-06-13 06:31:24','2023-06-13
06:31:24',NULL,'954',NULL,NULL),
(2396,954,'ELIGIBILITY','applicants_certifications/
U954T1686637897.pdf','applicants_certifications','GEROLD JACOB CERT OF
RATING.pdf','U954T1686637897.pdf','2023-06-13 06:31:37','2023-06-13
06:31:37',NULL,'954',NULL,NULL),
(2397,954,'ELIGIBILITY','applicants_certifications/
U954T1686637908.pdf','applicants_certifications','GEROLD JACOB DRIVER\'S
LICENSE.pdf','U954T1686637908.pdf','2023-06-13 06:31:48','2023-06-13
06:31:48',NULL,'954',NULL,NULL),(2398,1075,'SWT','applicants_certifications/
U1075T1686637934.jpg','applicants_certifications','inbound5312779103053387181.jpg',
'U1075T1686637934.jpg','2023-06-13 06:32:14','2023-06-13
06:32:14',NULL,'1075',NULL,NULL),(2399,1075,'SWT','applicants_certifications/
U1075T1686637957.jpg','applicants_certifications','inbound4230131576142293150.jpg',
'U1075T1686637957.jpg','2023-06-13 06:32:37','2023-06-13
06:32:37',NULL,'1075',NULL,NULL),(2400,980,'COE','applicants_certifications/
U980T1686638730.pdf','applicants_certifications','Certificate of
Employment.pdf','U980T1686638730.pdf','2023-06-13 06:45:30','2023-06-13
06:45:30',NULL,'980',NULL,NULL),(2402,1117,'TOR','applicants_certifications/
U1117T1686641723.pdf','applicants_certifications','TOR.pdf','U1117T1686641723.pdf',
'2023-06-13 07:35:23','2023-06-13 07:35:23',NULL,'1117',NULL,NULL),
(2406,1117,'SWT','applicants_certifications/
U1117T1686642519.pdf','applicants_certifications','Certificates.pdf','U1117T1686642
519.pdf','2023-06-13 07:48:39','2023-06-13 07:48:39',NULL,'1117',NULL,NULL),
(2407,1117,'ELIGIBILITY','applicants_certifications/
U1117T1686642602.pdf','applicants_certifications','PRC
ID.pdf','U1117T1686642602.pdf','2023-06-13 07:50:02','2023-06-13
07:50:02',NULL,'1117',NULL,NULL),
(2408,1117,'ELIGIBILITY','applicants_certifications/
U1117T1686642639.pdf','applicants_certifications','CERTIFICATE OF
RATING.pdf','U1117T1686642639.pdf','2023-06-13 07:50:39','2023-06-13
07:50:39',NULL,'1117',NULL,NULL),(2409,1116,'TOR','applicants_certifications/
U1116T1686644437.pdf','applicants_certifications','TOR Page
1.pdf','U1116T1686644437.pdf','2023-06-13 08:20:37','2023-06-13
08:20:37',NULL,'1116',NULL,NULL),(2410,1116,'TOR','applicants_certifications/
U1116T1686644448.pdf','applicants_certifications','TOR Page
2.pdf','U1116T1686644448.pdf','2023-06-13 08:20:48','2023-06-13
08:20:48',NULL,'1116',NULL,NULL),(2411,1116,'SWT','applicants_certifications/
U1116T1686644466.pdf','applicants_certifications','CERTIFICATES.pdf','U1116T1686644
466.pdf','2023-06-13 08:21:06','2023-06-13 08:21:06',NULL,'1116',NULL,NULL),
(2412,1116,'SWT','applicants_certifications/
U1116T1686644480.pdf','applicants_certifications','CERTIFICATES0001.pdf','U1116T168
6644480.pdf','2023-06-13 08:21:20','2023-06-13 08:21:20',NULL,'1116',NULL,NULL),
(2413,1116,'SWT','applicants_certifications/
U1116T1686644493.pdf','applicants_certifications','CERTIFICATES0002.pdf','U1116T168
6644493.pdf','2023-06-13 08:21:33','2023-06-13 08:21:33',NULL,'1116',NULL,NULL),
(2414,1116,'SWT','applicants_certifications/
U1116T1686644505.pdf','applicants_certifications','CERTIFICATES0003.pdf','U1116T168
6644505.pdf','2023-06-13 08:21:45','2023-06-13 08:21:45',NULL,'1116',NULL,NULL),
(2415,1116,'ELIGIBILITY','applicants_certifications/
U1116T1686644519.pdf','applicants_certifications','certificate of
eligibility.pdf','U1116T1686644519.pdf','2023-06-13 08:21:59','2023-06-13
08:21:59',NULL,'1116',NULL,NULL),(2416,1116,'PDS','applicants_certifications/
U1116T1686644534.pdf','applicants_certifications','PDS Page
1.pdf','U1116T1686644534.pdf','2023-06-13 08:22:14','2023-06-13
08:22:14',NULL,'1116',NULL,NULL),(2417,1116,'PDS','applicants_certifications/
U1116T1686644546.pdf','applicants_certifications','PDS Page
2.pdf','U1116T1686644546.pdf','2023-06-13 08:22:26','2023-06-13
08:22:26',NULL,'1116',NULL,NULL),(2418,1116,'PDS','applicants_certifications/
U1116T1686644558.pdf','applicants_certifications','PDS Page
3.pdf','U1116T1686644558.pdf','2023-06-13 08:22:38','2023-06-13
08:22:38',NULL,'1116',NULL,NULL),(2419,1116,'PDS','applicants_certifications/
U1116T1686644570.pdf','applicants_certifications','PDS Page
4.pdf','U1116T1686644570.pdf','2023-06-13 08:22:50','2023-06-13
08:22:50',NULL,'1116',NULL,NULL),(2421,1122,'TOR','applicants_certifications/
U1122T1686647784.JPG','applicants_certifications','IMG_20230613_120941.JPG','U1122T
1686647784.JPG','2023-06-13 09:16:24','2023-06-13 09:16:24',NULL,'1122',NULL,NULL),
(2422,1122,'TOR','applicants_certifications/
U1122T1686647804.JPG','applicants_certifications','IMG_20230613_120905.JPG','U1122T
1686647804.JPG','2023-06-13 09:16:44','2023-06-13 09:16:44',NULL,'1122',NULL,NULL),
(2423,1122,'TOR','applicants_certifications/
U1122T1686647842.JPG','applicants_certifications','IMG_20230613_120812.JPG','U1122T
1686647842.JPG','2023-06-13 09:17:23','2023-06-13 09:17:23',NULL,'1122',NULL,NULL),
(2424,1122,'ELIGIBILITY','applicants_certifications/
U1122T1686647868.JPG','applicants_certifications','IMG_20230613_170646.JPG','U1122T
1686647868.JPG','2023-06-13 09:17:48','2023-06-13 09:17:48',NULL,'1122',NULL,NULL),
(2425,1122,'ELIGIBILITY','applicants_certifications/
U1122T1686647933.JPG','applicants_certifications','IMG_20230613_081039.JPG','U1122T
1686647933.JPG','2023-06-13 09:18:53','2023-06-13 09:18:53',NULL,'1122',NULL,NULL),
(2426,1122,'PDS','applicants_certifications/
U1122T1686993385.jpg','applicants_certifications','AnyScanner_06_17_2023
0.jpg','U1122T1686993385.jpg','2023-06-17 09:16:25','2023-06-17
09:16:25',NULL,'1122',NULL,NULL),(2427,1122,'PDS','applicants_certifications/
U1122T1686647982.JPG','applicants_certifications','IMG_20230613_170745.JPG','U1122T
1686647982.JPG','2023-06-13 09:19:42','2023-06-13 09:19:42',NULL,'1122',NULL,NULL),
(2428,1122,'PDS','applicants_certifications/
U1122T1686648008.JPG','applicants_certifications','IMG_20230613_170815.JPG','U1122T
1686648008.JPG','2023-06-13 09:20:08','2023-06-13 09:20:08',NULL,'1122',NULL,NULL),
(2429,1122,'PDS','applicants_certifications/
U1122T1686648026.JPG','applicants_certifications','IMG_20230613_170831.JPG','U1122T
1686648026.JPG','2023-06-13 09:20:26','2023-06-13 09:20:26',NULL,'1122',NULL,NULL),
(2430,1109,'TOR','applicants_certifications/
U1109T1686654383.jpg','applicants_certifications','inbound6555154953092252184.jpg',
'U1109T1686654383.jpg','2023-06-13 11:06:23','2023-06-13
11:06:23',NULL,'1109',NULL,NULL),(2431,1109,'TOR','applicants_certifications/
U1109T1686654924.jpg','applicants_certifications','inbound5957613672850328099.jpg',
'U1109T1686654924.jpg','2023-06-13 11:15:24','2023-06-13
11:15:24',NULL,'1109',NULL,NULL),
(2432,1109,'ELIGIBILITY','applicants_certifications/
U1109T1686655099.jpg','applicants_certifications','inbound3871537446812871047.jpg',
'U1109T1686655099.jpg','2023-06-13 11:18:19','2023-06-13
11:18:19',NULL,'1109',NULL,NULL),
(2434,1109,'ELIGIBILITY','applicants_certifications/
U1109T1686655262.jpg','applicants_certifications','inbound4758507824344871302.jpg',
'U1109T1686655262.jpg','2023-06-13 11:21:02','2023-06-13
11:21:02',NULL,'1109',NULL,NULL),(2436,1014,'COE','applicants_certifications/
U1014T1686659249.pdf','applicants_certifications','Certificate of
Employment.pdf','U1014T1686659249.pdf','2023-06-13 12:27:29','2023-06-13
12:27:29',NULL,'1014',NULL,NULL),(2437,1089,'COE','applicants_certifications/
U1089T1686659310.pdf','applicants_certifications','inbound5972352161571275765.pdf',
'U1089T1686659310.pdf','2023-06-13 12:28:30','2023-06-13
12:28:30',NULL,'1089',NULL,NULL),
(2440,1130,'ELIGIBILITY','applicants_certifications/
U1130T1686659599.pdf','applicants_certifications','inbound7104107159910026549.pdf',
'U1130T1686659599.pdf','2023-06-13 12:33:19','2023-06-13
12:33:19',NULL,'1130',NULL,NULL),
(2441,1014,'ELIGIBILITY','applicants_certifications/
U1014T1686659632.pdf','applicants_certifications','Certificate of Eligibility and
License.pdf','U1014T1686659632.pdf','2023-06-13 12:33:52','2023-06-13
12:33:52',NULL,'1014',NULL,NULL),
(2442,1130,'ELIGIBILITY','applicants_certifications/
U1130T1686659698.pdf','applicants_certifications','inbound2826501380347609579.pdf',
'U1130T1686659698.pdf','2023-06-13 12:34:58','2023-06-13
12:34:58',NULL,'1130',NULL,NULL),(2443,1130,'TOR','applicants_certifications/
U1130T1686659777.pdf','applicants_certifications','inbound6191964256917768450.pdf',
'U1130T1686659777.pdf','2023-06-13 12:36:17','2023-06-13
12:36:17',NULL,'1130',NULL,NULL),(2444,1085,'TOR','applicants_certifications/
U1085T1686659919.jpg','applicants_certifications','IMG_20230610_220744.jpg','U1085T
1686659919.jpg','2023-06-13 12:38:39','2023-06-13 12:38:39',NULL,'1085',NULL,NULL),
(2445,1085,'TOR','applicants_certifications/
U1085T1686659946.jpg','applicants_certifications','IMG_20230610_220731.jpg','U1085T
1686659946.jpg','2023-06-13 12:39:06','2023-06-13 12:39:06',NULL,'1085',NULL,NULL),
(2446,1014,'TOR','applicants_certifications/
U1014T1686665143.pdf','applicants_certifications','TOR and Diploma
(1).pdf','U1014T1686665143.pdf','2023-06-13 14:05:43','2023-06-13
14:05:43',NULL,'1014',NULL,NULL),
(2447,1130,'ELIGIBILITY','applicants_certifications/
U1130T1686661452.pdf','applicants_certifications','inbound7014166395283894777.pdf',
'U1130T1686661452.pdf','2023-06-13 13:04:12','2023-06-13
13:04:12',NULL,'1130',NULL,NULL),(2448,967,'TOR','applicants_certifications/
U967T1686662686.jpg','applicants_certifications','IMG_20230613_212106.jpg','U967T16
86662686.jpg','2023-06-13 13:24:46','2023-06-13 13:24:46',NULL,'967',NULL,NULL),
(2449,967,'TOR','applicants_certifications/
U967T1686662707.jpg','applicants_certifications','IMG_20230613_212143.jpg','U967T16
86662707.jpg','2023-06-13 13:25:07','2023-06-13 13:25:07',NULL,'967',NULL,NULL),
(2450,1051,'TOR','applicants_certifications/
U1051T1686662754.jpg','applicants_certifications','IMG20230613212136.jpg','U1051T16
86662754.jpg','2023-06-13 13:25:54','2023-06-13 13:25:54',NULL,'1051',NULL,NULL),
(2451,967,'TOR','applicants_certifications/
U967T1686662789.jpg','applicants_certifications','IMG_20230613_212210.jpg','U967T16
86662789.jpg','2023-06-13 13:26:29','2023-06-13 13:26:29',NULL,'967',NULL,NULL),
(2454,1051,'COE','applicants_certifications/
U1051T1686663773.jpg','applicants_certifications','IMG20230613213209.jpg','U1051T16
86663773.jpg','2023-06-13 13:42:53','2023-06-13 13:42:53',NULL,'1051',NULL,NULL),
(2455,1014,'SWT','applicants_certifications/
U1014T1686663858.pdf','applicants_certifications','Certificate of Trainings &
Workshop (1).pdf','U1014T1686663858.pdf','2023-06-13 13:44:18','2023-06-13
13:44:18',NULL,'1014',NULL,NULL),(2457,1051,'SWT','applicants_certifications/
U1051T1686664326.jpg','applicants_certifications','IMG20230613213305.jpg','U1051T16
86664326.jpg','2023-06-13 13:52:06','2023-06-13 13:52:06',NULL,'1051',NULL,NULL),
(2458,1051,'ELIGIBILITY','applicants_certifications/
U1051T1686664422.jpg','applicants_certifications','IMG20230613213354.jpg','U1051T16
86664422.jpg','2023-06-13 13:53:42','2023-06-13 13:53:42',NULL,'1051',NULL,NULL),
(2459,1014,'PDS','applicants_certifications/
U1014T1686664979.pdf','applicants_certifications','Personal Data
Sheet.pdf','U1014T1686664979.pdf','2023-06-13 14:02:59','2023-06-13
14:02:59',NULL,'1014',NULL,NULL),(2460,1131,'PDS','applicants_certifications/
U1131T1686666364.pdf','applicants_certifications','Lopez_CS Form No. 212 Personal
Data Sheet revised.pdf','U1131T1686666364.pdf','2023-06-13 14:26:04','2023-06-13
14:26:04',NULL,'1131',NULL,NULL),
(2461,1131,'ELIGIBILITY','applicants_certifications/
U1131T1686666407.pdf','applicants_certifications','PSYCHOMETRICIAN.pdf','U1131T1686
666407.pdf','2023-06-13 14:26:47','2023-06-13 14:26:47',NULL,'1131',NULL,NULL),
(2462,1131,'SWT','applicants_certifications/
U1131T1686666589.pdf','applicants_certifications','Lopez_Certificates.pdf','U1131T1
686666589.pdf','2023-06-13 14:29:49','2023-06-13 14:29:49',NULL,'1131',NULL,NULL),
(2463,1131,'TOR','applicants_certifications/
U1131T1686666871.pdf','applicants_certifications','Lopez_TOR_SAINT-LOUIS-
UNIVERSITY.pdf','U1131T1686666871.pdf','2023-06-13 14:34:31','2023-06-13
14:34:31',NULL,'1131',NULL,NULL),(2466,1131,'COE','applicants_certifications/
U1131T1686667835.pdf','applicants_certifications','COE_Lopez.pdf','U1131T1686667835
.pdf','2023-06-13 14:50:35','2023-06-13 14:50:35',NULL,'1131',NULL,NULL),
(2467,210,'PDS','applicants_certifications/
U210T1686674239.xlsx','applicants_certifications','ILDEFONSO, Vanessa Lynne A-PDS
(1).xlsx','U210T1686674239.xlsx','2023-06-13 16:37:19','2023-06-13
16:37:19',NULL,'210',NULL,NULL),(2468,210,'SWT','applicants_certifications/
U210T1686670185.pdf','applicants_certifications','jan to may 2023 certificates
doc.pdf','U210T1686670185.pdf','2023-06-13 15:29:45','2023-06-13
15:29:45',NULL,'210',NULL,NULL),
(2470,1034,'ELIGIBILITY','applicants_certifications/
U1034T1686703486.pdf','applicants_certifications','Authenticated- Certificate of
Passing.pdf','U1034T1686703486.pdf','2023-06-14 00:44:46','2023-06-14
00:44:46',NULL,'1034',NULL,NULL),(2471,1034,'COE','applicants_certifications/
U1034T1686703580.jpeg','applicants_certifications','Shella COE- LGU
Alista.jpeg','U1034T1686703580.jpeg','2023-06-14 00:46:20','2023-06-14
00:46:20',NULL,'1034',NULL,NULL),(2472,1034,'COE','applicants_certifications/
U1034T1686703611.jpeg','applicants_certifications','Shella COE-
ACT.jpeg','U1034T1686703611.jpeg','2023-06-14 00:46:51','2023-06-14
00:46:51',NULL,'1034',NULL,NULL),(2473,1116,'COE','applicants_certifications/
U1116T1686704394.pdf','applicants_certifications','certificate of
employment.pdf','U1116T1686704394.pdf','2023-06-14 00:59:54','2023-06-14
00:59:54',NULL,'1116',NULL,NULL),(2476,1034,'TOR','applicants_certifications/
U1034T1686705634.pdf','applicants_certifications','Shella TOR-
ISU.pdf.pdf','U1034T1686705634.pdf','2023-06-14 01:20:34','2023-06-14
01:20:34',NULL,'1034',NULL,NULL),(2478,1034,'TOR','applicants_certifications/
U1034T1686705915.pdf','applicants_certifications','Shella TOR-
IC.pdf.pdf','U1034T1686705915.pdf','2023-06-14 01:25:15','2023-06-14
01:25:15',NULL,'1034',NULL,NULL),(2479,1060,'TOR','applicants_certifications/
U1060T1686705954.pdf','applicants_certifications','TOR-Heidi-
1.pdf','U1060T1686705954.pdf','2023-06-14 01:25:54','2023-06-14
01:25:54',NULL,'1060',NULL,NULL),(2480,1060,'TOR','applicants_certifications/
U1060T1686705977.pdf','applicants_certifications','TOR-Heidi-
2.pdf','U1060T1686705977.pdf','2023-06-14 01:26:17','2023-06-14
01:26:17',NULL,'1060',NULL,NULL),(2481,1060,'SWT','applicants_certifications/
U1060T1686706024.pdf','applicants_certifications','Basic Customer Service
Cert..pdf','U1060T1686706024.pdf','2023-06-14 01:27:04','2023-06-14
01:27:04',NULL,'1060',NULL,NULL),(2482,1060,'SWT','applicants_certifications/
U1060T1686706048.pdf','applicants_certifications','HOPE
cert..pdf','U1060T1686706048.pdf','2023-06-14 01:27:28','2023-06-14
01:27:28',NULL,'1060',NULL,NULL),(2483,1060,'SWT','applicants_certifications/
U1060T1686706066.pdf','applicants_certifications','LARGE
cert..pdf','U1060T1686706066.pdf','2023-06-14 01:27:46','2023-06-14
01:27:46',NULL,'1060',NULL,NULL),
(2484,1060,'ELIGIBILITY','applicants_certifications/
U1060T1686706092.pdf','applicants_certifications','CSC
Eligibility.pdf','U1060T1686706092.pdf','2023-06-14 01:28:12','2023-06-14
01:28:12',NULL,'1060',NULL,NULL),(2485,1140,'TOR','applicants_certifications/
U1140T1686706649.pdf','applicants_certifications','TOR.pdf','U1140T1686706649.pdf',
'2023-06-14 01:37:29','2023-06-14 01:37:29',NULL,'1140',NULL,NULL),
(2486,1140,'SWT','applicants_certifications/
U1140T1686706744.pdf','applicants_certifications','Cash
Management.pdf','U1140T1686706744.pdf','2023-06-14 01:39:04','2023-06-14
01:39:04',NULL,'1140',NULL,NULL),(2487,1034,'SWT','applicants_certifications/
U1034T1686706766.pdf','applicants_certifications','Certificate of Trainings and
Seminars in the Phil..pdf','U1034T1686706766.pdf','2023-06-14 01:39:26','2023-06-14
01:39:26',NULL,'1034',NULL,NULL),(2488,1140,'SWT','applicants_certifications/
U1140T1686706791.pdf','applicants_certifications','Mediation &
Adjudication.pdf','U1140T1686706791.pdf','2023-06-14 01:39:51','2023-06-14
01:39:51',NULL,'1140',NULL,NULL),(2489,1140,'SWT','applicants_certifications/
U1140T1686706813.pdf','applicants_certifications','Webinar on Laws and Rules on
Government Expenditures.pdf','U1140T1686706813.pdf','2023-06-14 01:40:13','2023-06-
14 01:40:13',NULL,'1140',NULL,NULL),(2490,1140,'SWT','applicants_certifications/
U1140T1686706814.pdf','applicants_certifications','Webinar on Laws and Rules on
Government Expenditures.pdf','U1140T1686706814.pdf','2023-06-14 01:40:14','2023-06-
14 01:40:14',NULL,'1140',NULL,NULL),(2491,1140,'SWT','applicants_certifications/
U1140T1686706830.pdf','applicants_certifications','Effective Supplier
Management.pdf','U1140T1686706830.pdf','2023-06-14 01:40:30','2023-06-14
01:40:30',NULL,'1140',NULL,NULL),(2492,1140,'SWT','applicants_certifications/
U1140T1686706832.pdf','applicants_certifications','Effective Supplier
Management.pdf','U1140T1686706832.pdf','2023-06-14 01:40:32','2023-06-14
01:40:32',NULL,'1140',NULL,NULL),(2493,1140,'SWT','applicants_certifications/
U1140T1686706852.pdf','applicants_certifications','Seminar_ISO 9001
2015.pdf','U1140T1686706852.pdf','2023-06-14 01:40:52','2023-06-14
01:40:52',NULL,'1140',NULL,NULL),(2494,1140,'SWT','applicants_certifications/
U1140T1686706873.pdf','applicants_certifications','SBCC101
Training.pdf','U1140T1686706873.pdf','2023-06-14 01:41:13','2023-06-14
01:41:13',NULL,'1140',NULL,NULL),(2497,1140,'SWT','applicants_certifications/
U1140T1686707009.pdf','applicants_certifications','Credit Risk
Management.pdf','U1140T1686707009.pdf','2023-06-14 01:43:29','2023-06-14
01:43:29',NULL,'1140',NULL,NULL),(2498,1140,'SWT','applicants_certifications/
U1140T1686707030.pdf','applicants_certifications','Leadership
Insights.pdf','U1140T1686707030.pdf','2023-06-14 01:43:50','2023-06-14
01:43:50',NULL,'1140',NULL,NULL),(2499,1140,'SWT','applicants_certifications/
U1140T1686707053.pdf','applicants_certifications','Advanced Financial Analysis and
Accounting Updates.pdf','U1140T1686707053.pdf','2023-06-14 01:44:13','2023-06-14
01:44:13',NULL,'1140',NULL,NULL),
(2500,1140,'ELIGIBILITY','applicants_certifications/
U1140T1686707105.pdf','applicants_certifications','CSC
Certificate.pdf','U1140T1686707105.pdf','2023-06-14 01:45:05','2023-06-14
01:45:05',NULL,'1140',NULL,NULL),(2501,1140,'SWT','applicants_certifications/
U1140T1688096465.jpg','applicants_certifications','75932335-610E-4735-8FE3-
60C2D07A1EED.jpg','U1140T1688096465.jpg','2023-06-30 03:41:05','2023-06-30
03:41:05',NULL,'1140',NULL,NULL),(2502,1140,'SWT','applicants_certifications/
U1140T1686707751.pdf','applicants_certifications','Data Privacy Law Series
1.pdf','U1140T1686707751.pdf','2023-06-14 01:55:51','2023-06-14
01:55:51',NULL,'1140',NULL,NULL),(2503,1140,'SWT','applicants_certifications/
U1140T1686707770.pdf','applicants_certifications','Data Privacy Law Series
2.pdf','U1140T1686707770.pdf','2023-06-14 01:56:10','2023-06-14
01:56:10',NULL,'1140',NULL,NULL),(2504,1140,'SWT','applicants_certifications/
U1140T1686707792.pdf','applicants_certifications','Data Privacy Law Series
3.pdf','U1140T1686707792.pdf','2023-06-14 01:56:32','2023-06-14
01:56:32',NULL,'1140',NULL,NULL),(2505,1140,'SWT','applicants_certifications/
U1140T1686707805.pdf','applicants_certifications','Data Privacy Law Series
4.pdf','U1140T1686707805.pdf','2023-06-14 01:56:45','2023-06-14
01:56:45',NULL,'1140',NULL,NULL),(2506,1140,'SWT','applicants_certifications/
U1140T1686707847.pdf','applicants_certifications','Data Privacy Law Series
5.pdf','U1140T1686707847.pdf','2023-06-14 01:57:27','2023-06-14
01:57:27',NULL,'1140',NULL,NULL),(2507,1034,'SWT','applicants_certifications/
U1034T1686707933.pdf','applicants_certifications','Certificates of training
Online.pdf','U1034T1686707933.pdf','2023-06-14 01:58:53','2023-06-14
01:58:53',NULL,'1034',NULL,NULL),(2508,1140,'SWT','applicants_certifications/
U1140T1686707941.pdf','applicants_certifications','Data Privacy Law Series
6.pdf','U1140T1686707941.pdf','2023-06-14 01:59:01','2023-06-14
01:59:01',NULL,'1140',NULL,NULL),(2509,1140,'SWT','applicants_certifications/
U1140T1686708137.pdf','applicants_certifications','Data Privacy Law Series
7.pdf','U1140T1686708137.pdf','2023-06-14 02:02:17','2023-06-14
02:02:17',NULL,'1140',NULL,NULL),(2510,1140,'PDS','applicants_certifications/
U1140T1687502861.pdf','applicants_certifications','PDS
P1.pdf','U1140T1687502861.pdf','2023-06-23 06:47:41','2023-06-23
06:47:41',NULL,'1140',NULL,NULL),(2511,1140,'PDS','applicants_certifications/
U1140T1687502874.pdf','applicants_certifications','PDS
P2.pdf','U1140T1687502874.pdf','2023-06-23 06:47:54','2023-06-23
06:47:54',NULL,'1140',NULL,NULL),(2512,1140,'PDS','applicants_certifications/
U1140T1687502889.pdf','applicants_certifications','PDS
P3.pdf','U1140T1687502889.pdf','2023-06-23 06:48:09','2023-06-23
06:48:09',NULL,'1140',NULL,NULL),(2513,555,'COE','applicants_certifications/
U555T1686708268.pdf','applicants_certifications','IPCR June to
November.pdf','U555T1686708268.pdf','2023-06-14 02:04:28','2023-06-14
02:04:28',NULL,'555',NULL,NULL),(2515,1140,'PDS','applicants_certifications/
U1140T1687502905.pdf','applicants_certifications','PDS
P4.pdf','U1140T1687502905.pdf','2023-06-23 06:48:25','2023-06-23
06:48:25',NULL,'1140',NULL,NULL),(2516,555,'COE','applicants_certifications/
U555T1686708328.pdf','applicants_certifications','IPCR
December.pdf','U555T1686708328.pdf','2023-06-14 02:05:28','2023-06-14
02:05:28',NULL,'555',NULL,NULL),(2517,1034,'PDS','applicants_certifications/
U1034T1686711301.pdf','applicants_certifications','Notarized Personal Data
Sheet.pdf.pdf','U1034T1686711301.pdf','2023-06-14 02:55:01','2023-06-14
02:55:01',NULL,'1034',NULL,NULL),
(2519,990,'ELIGIBILITY','applicants_certifications/
U990T1686713166.pdf','applicants_certifications','Authenticated Board
Rating.pdf','U990T1686713166.pdf','2023-06-14 03:26:06','2023-06-14
03:26:06',NULL,'990',NULL,NULL),
(2521,990,'ELIGIBILITY','applicants_certifications/
U990T1686713246.pdf','applicants_certifications','Authenticated Unexpired PRC
ID.pdf','U990T1686713246.pdf','2023-06-14 03:27:26','2023-06-14
03:27:26',NULL,'990',NULL,NULL),(2522,1144,'TOR','applicants_certifications/
U1144T1686721267.pdf','applicants_certifications','TOR.pdf','U1144T1686721267.pdf',
'2023-06-14 05:41:07','2023-06-14 05:41:07',NULL,'1144',NULL,NULL),
(2523,1144,'ELIGIBILITY','applicants_certifications/
U1144T1686721312.pdf','applicants_certifications','prc.eli.pdf','U1144T1686721312.p
df','2023-06-14 05:41:52','2023-06-14 05:41:52',NULL,'1144',NULL,NULL),
(2524,1144,'SWT','applicants_certifications/
U1144T1686721376.pdf','applicants_certifications','trainings.pdf','U1144T1686721376
.pdf','2023-06-14 05:42:56','2023-06-14 05:42:56',NULL,'1144',NULL,NULL),
(2525,1144,'PDS','applicants_certifications/
U1144T1686721410.pdf','applicants_certifications','pds.pdf','U1144T1686721410.pdf',
'2023-06-14 05:43:30','2023-06-14 05:43:30',NULL,'1144',NULL,NULL),
(2526,955,'PDS','applicants_certifications/
U955T1686726584.pdf','applicants_certifications','inbound4249755245381283658.pdf','
U955T1686726584.pdf','2023-06-14 07:09:44','2023-06-14
07:09:44',NULL,'955',NULL,NULL),
(2527,1143,'ELIGIBILITY','applicants_certifications/
U1143T1686729484.pdf','applicants_certifications','inbound1046783328133351509.pdf',
'U1143T1686729484.pdf','2023-06-14 07:58:04','2023-06-14
07:58:04',NULL,'1143',NULL,NULL),(2528,1143,'TOR','applicants_certifications/
U1143T1686729698.pdf','applicants_certifications','inbound7175500735340838467.pdf',
'U1143T1686729698.pdf','2023-06-14 08:01:38','2023-06-14
08:01:38',NULL,'1143',NULL,NULL),(2530,1140,'COE','applicants_certifications/
U1140T1686730221.jpg','applicants_certifications','COE.jpg','U1140T1686730221.jpg',
'2023-06-14 08:10:21','2023-06-14 08:10:21',NULL,'1140',NULL,NULL),
(2531,1140,'PDS','applicants_certifications/
U1140T1686730464.pdf','applicants_certifications','Work Experience
Sheet.pdf','U1140T1686730464.pdf','2023-06-14 08:14:24','2023-06-14
08:14:24',NULL,'1140',NULL,NULL),(2532,1117,'COE','applicants_certifications/
U1117T1686730817.pdf','applicants_certifications','Service
Record.pdf','U1117T1686730817.pdf','2023-06-14 08:20:17','2023-06-14
08:20:17',NULL,'1117',NULL,NULL),(2533,1117,'PDS','applicants_certifications/
U1117T1686730885.pdf','applicants_certifications','PDS.pdf','U1117T1686730885.pdf',
'2023-06-14 08:21:25','2023-06-14 08:21:25',NULL,'1117',NULL,NULL),
(2536,1044,'COE','applicants_certifications/
U1044T1686732152.jpg','applicants_certifications','Certificate of Employment. Zen
Balao.jpg','U1044T1686732152.jpg','2023-06-14 08:42:32','2023-06-14
08:42:32',NULL,'1044',NULL,NULL),
(2538,1151,'ELIGIBILITY','applicants_certifications/
U1151T1686732396.jpg','applicants_certifications','Document
13_2_2.jpg','U1151T1686732396.jpg','2023-06-14 08:46:36','2023-06-14
08:46:36',NULL,'1151',NULL,NULL),(2540,1156,'COE','applicants_certifications/
U1156T1686736540.jpg','applicants_certifications','inbound2060298811244947411.jpg',
'U1156T1686736540.jpg','2023-06-14 09:55:40','2023-06-14
09:55:40',NULL,'1156',NULL,NULL),(2542,1158,'TOR','applicants_certifications/
U1158T1686741912.pdf','applicants_certifications','CAY-
OHEN_HELENITA_TranscriptOfRecords.pdf','U1158T1686741912.pdf','2023-06-14
11:25:12','2023-06-14 11:25:12',NULL,'1158',NULL,NULL),
(2543,1158,'COE','applicants_certifications/
U1158T1686742050.pdf','applicants_certifications','Cay-Ohen, Helenita - COE -
DTI.pdf','U1158T1686742050.pdf','2023-06-14
11:27:30','2023-06-14 11:27:30',NULL,'1158',NULL,NULL),
(2545,1158,'COE','applicants_certifications/
U1158T1686742080.pdf','applicants_certifications','Cay-ohen, Helenita - COE
Comelec.pdf','U1158T1686742080.pdf','2023-06-14 11:28:00','2023-06-14
11:28:00',NULL,'1158',NULL,NULL),(2546,1158,'COE','applicants_certifications/
U1158T1686742102.jpg','applicants_certifications','Cay-ohen, Helenita - COE
Balmuco.jpg','U1158T1686742102.jpg','2023-06-14 11:28:22','2023-06-14
11:28:22',NULL,'1158',NULL,NULL),(2547,1158,'SWT','applicants_certifications/
U1158T1686742126.pdf','applicants_certifications','CAY-
OHEN_HELENITA_CertificateOfTrainingsAttended1.pdf','U1158T1686742126.pdf','2023-06-
14 11:28:46','2023-06-14 11:28:46',NULL,'1158',NULL,NULL),
(2548,1158,'SWT','applicants_certifications/
U1158T1686742149.pdf','applicants_certifications','CAY-
OHEN_HELENITA_CertificateOfTrainingsAttended2.pdf','U1158T1686742149.pdf','2023-06-
14 11:29:09','2023-06-14 11:29:09',NULL,'1158',NULL,NULL),
(2549,1158,'SWT','applicants_certifications/
U1158T1686742172.pdf','applicants_certifications','CAY-
OHEN_HELENITA_CertificateOfTrainingsAttended3.pdf','U1158T1686742172.pdf','2023-06-
14 11:29:32','2023-06-14 11:29:32',NULL,'1158',NULL,NULL),
(2550,1158,'ELIGIBILITY','applicants_certifications/
U1158T1686742199.pdf','applicants_certifications','CAY-
OHEN_HELENITA_CertificateOfEligibility.pdf','U1158T1686742199.pdf','2023-06-14
11:29:59','2023-06-14 11:29:59',NULL,'1158',NULL,NULL),
(2551,1158,'PDS','applicants_certifications/
U1158T1686742820.pdf','applicants_certifications','Cay-ohen,
Helenita_PDS.pdf','U1158T1686742820.pdf','2023-06-14 11:40:20','2023-06-14
11:40:20',NULL,'1158',NULL,NULL),(2555,945,'SWT','applicants_certifications/
U945T1686754327.pdf','applicants_certifications','CERTIFICATES.pdf','U945T168675432
7.pdf','2023-06-14 14:52:07','2023-06-14 14:52:07',NULL,'945',NULL,NULL),
(2556,1097,'TOR','applicants_certifications/
U1097T1686756901.jpg','applicants_certifications','IMG_20230614_162005.jpg','U1097T
1686756901.jpg','2023-06-14 15:35:01','2023-06-14 15:35:01',NULL,'1097',NULL,NULL),
(2558,1159,'COE','applicants_certifications/
U1159T1686784851.jpg','applicants_certifications','inbound698158804884157137.jpg','
U1159T1686784851.jpg','2023-06-14 23:20:51','2023-06-14
23:20:51',NULL,'1159',NULL,NULL),(2559,945,'PDS','applicants_certifications/
U945T1686789692.pdf','applicants_certifications','PDS.pdf','U945T1686789692.pdf','2
023-06-15 00:41:32','2023-06-15 00:41:32',NULL,'945',NULL,NULL),
(2562,945,'ELIGIBILITY','applicants_certifications/
U945T1686789791.pdf','applicants_certifications','CERT. OF
PASSING.pdf','U945T1686789791.pdf','2023-06-15 00:43:11','2023-06-15
00:43:11',NULL,'945',NULL,NULL),(2563,945,'TOR','applicants_certifications/
U945T1686789839.pdf','applicants_certifications','TOR
2.pdf','U945T1686789839.pdf','2023-06-15 00:43:59','2023-06-15
00:43:59',NULL,'945',NULL,NULL),
(2566,1119,'ELIGIBILITY','applicants_certifications/
U1119T1686790859.pdf','applicants_certifications','prc
license_085047.pdf','U1119T1686790859.pdf','2023-06-15 01:00:59','2023-06-15
01:00:59',NULL,'1119',NULL,NULL),(2567,1119,'PDS','applicants_certifications/
U1119T1686791436.xlsx','applicants_certifications','pds final -
precy_091011.xlsx','U1119T1686791436.xlsx','2023-06-15 01:10:36','2023-06-15
01:10:37',NULL,'1119',NULL,NULL),(2568,1046,'TOR','applicants_certifications/
U1046T1686796905.pdf','applicants_certifications','Merlyn_Puguon_TOR.pdf','U1046T16
86796905.pdf','2023-06-15 02:41:45','2023-06-15 02:41:45',NULL,'1046',NULL,NULL),
(2569,1046,'SWT','applicants_certifications/
U1046T1686796939.pdf','applicants_certifications','Merlyn_Puguon_Trainings.pdf','U1
046T1686796939.pdf','2023-06-15 02:42:19','2023-06-15
02:42:19',NULL,'1046',NULL,NULL),
(2570,1046,'ELIGIBILITY','applicants_certifications/
U1046T1686796976.pdf','applicants_certifications','Merlyn_Puguon_Eligibility.pdf','
U1046T1686796976.pdf','2023-06-15 02:42:57','2023-06-15
02:42:57',NULL,'1046',NULL,NULL),(2573,958,'TOR','applicants_certifications/
U958T1686798843.pdf','applicants_certifications','Transcript of Record-UMLANO,
JOYDEE N..docx.pdf','U958T1686798843.pdf','2023-06-15 03:14:03','2023-06-15
03:14:03',NULL,'958',NULL,NULL),
(2574,958,'ELIGIBILITY','applicants_certifications/
U958T1686798874.pdf','applicants_certifications','Certificate of Eligibility-
UMLANO, JOYDEE N..pdf','U958T1686798874.pdf','2023-06-15 03:14:34','2023-06-15
03:14:34',NULL,'958',NULL,NULL),(2575,958,'COE','applicants_certifications/
U958T1686800649.pdf','applicants_certifications','Service Record and IPCR-UMLANO,
JOYDEE N..docx.pdf','U958T1686800649.pdf','2023-06-15 03:44:09','2023-06-15
03:44:09',NULL,'958',NULL,NULL),(2576,958,'SWT','applicants_certifications/
U958T1686800878.pdf','applicants_certifications','Serminar and Training
Certificates-UMLANO, JOYDEE N..pdf','U958T1686800878.pdf','2023-06-15
03:47:58','2023-06-15 03:47:58',NULL,'958',NULL,NULL),
(2577,1172,'TOR','applicants_certifications/
U1172T1686804486.jpg','applicants_certifications','inbound6248734744640290433.jpg',
'U1172T1686804486.jpg','2023-06-15 04:48:06','2023-06-15
04:48:06',NULL,'1172',NULL,NULL),(2578,1172,'TOR','applicants_certifications/
U1172T1686804501.jpg','applicants_certifications','inbound896216567680844899.jpg','
U1172T1686804501.jpg','2023-06-15 04:48:21','2023-06-15
04:48:21',NULL,'1172',NULL,NULL),(2579,1172,'TOR','applicants_certifications/
U1172T1686804513.jpg','applicants_certifications','inbound2934230340402565917.jpg',
'U1172T1686804513.jpg','2023-06-15 04:48:33','2023-06-15
04:48:33',NULL,'1172',NULL,NULL),(2581,1169,'TOR','applicants_certifications/
U1169T1686804586.jpg','applicants_certifications','inbound1489563704580885967.jpg',
'U1169T1686804586.jpg','2023-06-15 04:49:46','2023-06-15
04:49:46',NULL,'1169',NULL,NULL),(2582,1169,'TOR','applicants_certifications/
U1169T1686804609.jpg','applicants_certifications','inbound4411210937944368587.jpg',
'U1169T1686804609.jpg','2023-06-15 04:50:09','2023-06-15
04:50:09',NULL,'1169',NULL,NULL),(2583,1172,'PDS','applicants_certifications/
U1172T1686804937.xlsx','applicants_certifications','inbound6256502112121758109.xlsx
','U1172T1686804937.xlsx','2023-06-15 04:55:37','2023-06-15
04:55:37',NULL,'1172',NULL,NULL),(2584,943,'TOR','applicants_certifications/
U943T1686805245.pdf','applicants_certifications','TOR-
DIPLOMA.pdf','U943T1686805245.pdf','2023-06-15 05:00:45','2023-06-15
05:00:45',NULL,'943',NULL,NULL),(2585,943,'COE','applicants_certifications/
U943T1686805267.pdf','applicants_certifications','SERVICE RECORD-
COE.pdf','U943T1686805267.pdf','2023-06-15 05:01:07','2023-06-15
05:01:07',NULL,'943',NULL,NULL),(2586,943,'SWT','applicants_certifications/
U943T1686805292.pdf','applicants_certifications','TRAININGS.pdf','U943T1686805292.p
df','2023-06-15 05:01:32','2023-06-15 05:01:32',NULL,'943',NULL,NULL),
(2587,943,'ELIGIBILITY','applicants_certifications/
U943T1686805383.pdf','applicants_certifications','COE-CS
PROF.pdf','U943T1686805383.pdf','2023-06-15 05:03:03','2023-06-15
05:03:03',NULL,'943',NULL,NULL),(2588,943,'PDS','applicants_certifications/
U943T1686805403.pdf','applicants_certifications','PDS-
WES.pdf','U943T1686805403.pdf','2023-06-15 05:03:23','2023-06-15
05:03:23',NULL,'943',NULL,NULL),(2589,1172,'COE','applicants_certifications/
U1172T1686806029.jpg','applicants_certifications','inbound2887766366472396192.jpg',
'U1172T1686806029.jpg','2023-06-15 05:13:49','2023-06-15
05:13:49',NULL,'1172',NULL,NULL),(2590,1046,'PDS','applicants_certifications/
U1046T1686806210.pdf','applicants_certifications','Merlyn_Puguon_PDS_1.pdf','U1046T
1686806210.pdf','2023-06-15 05:16:50','2023-06-15 05:16:50',NULL,'1046',NULL,NULL),
(2591,45,'SWT','applicants_certifications/
U45T1686807269.pdf','applicants_certifications','ED612353.pdf','U45T1686807269.pdf'
,'2023-06-15 05:34:29','2023-06-15 05:34:29',NULL,'45',NULL,NULL),
(2592,45,'TOR','applicants_certifications/
U45T1686807309.pdf','applicants_certifications','SUS.pdf','U45T1686807309.pdf','202
3-06-15 05:35:09','2023-06-15 05:35:09',NULL,'45',NULL,NULL),
(2593,45,'COE','applicants_certifications/
U45T1686807323.pdf','applicants_certifications','SUS.pdf','U45T1686807323.pdf','202
3-06-15 05:35:23','2023-06-15 05:35:23',NULL,'45',NULL,NULL),
(2594,45,'SWT','applicants_certifications/
U45T1686807337.pdf','applicants_certifications','SUS.pdf','U45T1686807337.pdf','202
3-06-15 05:35:37','2023-06-15 05:35:37',NULL,'45',NULL,NULL),
(2595,45,'ELIGIBILITY','applicants_certifications/
U45T1686807346.pdf','applicants_certifications','SUS.pdf','U45T1686807346.pdf','202
3-06-15 05:35:46','2023-06-15 05:35:46',NULL,'45',NULL,NULL),
(2596,45,'PDS','applicants_certifications/
U45T1686807356.pdf','applicants_certifications','SUS.pdf','U45T1686807356.pdf','202
3-06-15 05:35:56','2023-06-15 05:35:56',NULL,'45',NULL,NULL),
(2597,967,'PDS','applicants_certifications/
U967T1686810023.xlsx','applicants_certifications','PERSONAL DATA SHEET-
CORCUERA.xlsx','U967T1686810023.xlsx','2023-06-15 06:20:23','2023-06-15
06:20:23',NULL,'967',NULL,NULL),(2598,1169,'PDS','applicants_certifications/
U1169T1686810730.jpg','applicants_certifications','inbound3938167683165302654.jpg',
'U1169T1686810730.jpg','2023-06-15 06:32:10','2023-06-15
06:32:10',NULL,'1169',NULL,NULL),(2599,1169,'PDS','applicants_certifications/
U1169T1686810764.jpg','applicants_certifications','inbound124087299599160798.jpg','
U1169T1686810764.jpg','2023-06-15 06:32:44','2023-06-15
06:32:44',NULL,'1169',NULL,NULL),(2600,1169,'PDS','applicants_certifications/
U1169T1686810783.jpg','applicants_certifications','inbound6575015802458560391.jpg',
'U1169T1686810783.jpg','2023-06-15 06:33:03','2023-06-15
06:33:03',NULL,'1169',NULL,NULL),(2601,1169,'PDS','applicants_certifications/
U1169T1686810815.jpg','applicants_certifications','inbound3334831863264419188.jpg',
'U1169T1686810815.jpg','2023-06-15 06:33:35','2023-06-15
06:33:35',NULL,'1169',NULL,NULL),
(2602,1169,'ELIGIBILITY','applicants_certifications/
U1169T1686810891.jpg','applicants_certifications','inbound3102664991657528163.jpg',
'U11
69T1686810891.jpg','2023-06-15 06:34:51','2023-06-15
06:34:51',NULL,'1169',NULL,NULL),(2608,1039,'SWT','applicants_certifications/
U1039T1686811378.jpg','applicants_certifications','Image_20230615_0001.jpg','U1039T
1686811378.jpg','2023-06-15 06:42:58','2023-06-15 06:42:58',NULL,'1039',NULL,NULL),
(2609,1039,'SWT','applicants_certifications/
U1039T1686811421.jpg','applicants_certifications','Image_20230615_0002.jpg','U1039T
1686811421.jpg','2023-06-15 06:43:41','2023-06-15 06:43:41',NULL,'1039',NULL,NULL),
(2610,972,'TOR','applicants_certifications/
U972T1686811433.pdf','applicants_certifications','inbound7955130927841380141.pdf','
U972T1686811433.pdf','2023-06-15 06:43:53','2023-06-15
06:43:53',NULL,'972',NULL,NULL),(2611,1039,'SWT','applicants_certifications/
U1039T1686811442.jpg','applicants_certifications','Image_20230615_0003.jpg','U1039T
1686811442.jpg','2023-06-15 06:44:02','2023-06-15 06:44:02',NULL,'1039',NULL,NULL),
(2612,972,'COE','applicants_certifications/
U972T1686811478.pdf','applicants_certifications','inbound8036695081532578916.pdf','
U972T1686811478.pdf','2023-06-15 06:44:38','2023-06-15
06:44:38',NULL,'972',NULL,NULL),(2613,972,'SWT','applicants_certifications/
U972T1686811532.pdf','applicants_certifications','inbound3709219205966470144.pdf','
U972T1686811532.pdf','2023-06-15 06:45:32','2023-06-15
06:45:32',NULL,'972',NULL,NULL),
(2614,972,'ELIGIBILITY','applicants_certifications/
U972T1686811588.pdf','applicants_certifications','inbound8757149713762933246.pdf','
U972T1686811588.pdf','2023-06-15 06:46:28','2023-06-15
06:46:28',NULL,'972',NULL,NULL),(2615,1174,'TOR','applicants_certifications/
U1174T1686813209.pdf','applicants_certifications','tor
Jelly.pdf','U1174T1686813209.pdf','2023-06-15 07:13:29','2023-06-15
07:13:29',NULL,'1174',NULL,NULL),(2616,1174,'SWT','applicants_certifications/
U1174T1686813268.pdf','applicants_certifications','jelly 1
cert..pdf','U1174T1686813268.pdf','2023-06-15 07:14:28','2023-06-15
07:14:28',NULL,'1174',NULL,NULL),(2617,1174,'SWT','applicants_certifications/
U1174T1686813291.pdf','applicants_certifications','jelly 2
cert.pdf','U1174T1686813291.pdf','2023-06-15 07:14:51','2023-06-15
07:14:51',NULL,'1174',NULL,NULL),(2618,1174,'SWT','applicants_certifications/
U1174T1686813311.pdf','applicants_certifications','jelly 3
cert.pdf','U1174T1686813311.pdf','2023-06-15 07:15:11','2023-06-15
07:15:11',NULL,'1174',NULL,NULL),(2619,66,'TOR','applicants_certifications/
U66T1686813500.pdf','applicants_certifications','OTR_Bachelors
Degree.pdf','U66T1686813500.pdf','2023-06-15 07:18:20','2023-06-15
07:18:20',NULL,'66',NULL,NULL),(2620,66,'TOR','applicants_certifications/
U66T1686813519.pdf','applicants_certifications','Diploma_Garcia.pdf','U66T168681351
9.pdf','2023-06-15 07:18:39','2023-06-15 07:18:39',NULL,'66',NULL,NULL),
(2621,66,'COE','applicants_certifications/
U66T1686813546.jpg','applicants_certifications','14044.jpg','U66T1686813546.jpg','2
023-06-15 07:19:06','2023-06-15 07:19:06',NULL,'66',NULL,NULL),
(2622,66,'COE','applicants_certifications/
U66T1686813558.jpg','applicants_certifications','Cleared COE - Marlon Jan B.
Garcia.jpg','U66T1686813558.jpg','2023-06-15 07:19:18','2023-06-15
07:19:18',NULL,'66',NULL,NULL),(2623,66,'SWT','applicants_certifications/
U66T1686813574.pdf','applicants_certifications','7s Principles of Good
Housekeeping.pdf','U66T1686813574.pdf','2023-06-15 07:19:34','2023-06-15
07:19:34',NULL,'66',NULL,NULL),(2624,66,'SWT','applicants_certifications/
U66T1686813586.pdf','applicants_certifications','AGIA - Internal Control System for
Property and Supply Management Feb 2-4 2022.pdf','U66T1686813586.pdf','2023-06-15
07:19:46','2023-06-15 07:19:46',NULL,'66',NULL,NULL),
(2625,66,'SWT','applicants_certifications/
U66T1686813596.pdf','applicants_certifications','AGIA - LARGE Jan 18-
20.pdf','U66T1686813596.pdf','2023-06-15 07:19:56','2023-06-15
07:19:56',NULL,'66',NULL,NULL),(2626,66,'SWT','applicants_certifications/
U66T1686813605.pdf','applicants_certifications','Certificate of Participation
MARLON JAN B. GARCIA - CHRDF.pdf','U66T1686813605.pdf','2023-06-15 07:20:05','2023-
06-15 07:20:05',NULL,'66',NULL,NULL),(2627,66,'SWT','applicants_certifications/
U66T1686813615.pdf','applicants_certifications','ECERT_MARLON GARCIA
DTI.pdf','U66T1686813615.pdf','2023-06-15 07:20:15','2023-06-15
07:20:15',NULL,'66',NULL,NULL),(2628,66,'SWT','applicants_certifications/
U66T1686813667.pdf','applicants_certifications','img20210623_14022597.pdf','U66T168
6813667.pdf','2023-06-15 07:21:07','2023-06-15 07:21:07',NULL,'66',NULL,NULL),
(2629,66,'SWT','applicants_certifications/
U66T1686813690.pdf','applicants_certifications','Marlon Jan B.
Garcia.pdf','U66T1686813690.pdf','2023-06-15 07:21:30','2023-06-15
07:21:30',NULL,'66',NULL,NULL),(2630,66,'SWT','applicants_certifications/
U66T1686813701.pdf','applicants_certifications','Marlon Jan Bumina-ang Garcia (1) -
iNTERNATIONAL HOSPITALITY RETAIL FOOD SERVICES MAGMT
ADVISORY.pdf','U66T1686813701.pdf','2023-06-15 07:21:41','2023-06-15
07:21:41',NULL,'66',NULL,NULL),(2631,66,'SWT','applicants_certifications/
U66T1686813711.pdf','applicants_certifications','MARLON_GARCIA_up
law.pdf','U66T1686813711.pdf','2023-06-15 07:21:51','2023-06-15
07:21:51',NULL,'66',NULL,NULL),(2632,66,'SWT','applicants_certifications/
U66T1686813722.pdf','applicants_certifications','PCPD -
4.pdf','U66T1686813722.pdf','2023-06-15 07:22:02','2023-06-15
07:22:02',NULL,'66',NULL,NULL),(2633,66,'SWT','applicants_certifications/
U66T1686813731.pdf','applicants_certifications','Social
Intelligence.pdf','U66T1686813731.pdf','2023-06-15 07:22:11','2023-06-15
07:22:11',NULL,'66',NULL,NULL),(2634,1174,'PDS','applicants_certifications/
U1174T1686813739.docx','applicants_certifications','RESUME.docx','U1174T1686813739.
docx','2023-06-15 07:22:19','2023-06-15 07:22:19',NULL,'1174',NULL,NULL),
(2635,1174,'ELIGIBILITY','applicants_certifications/
U1174T1686814059.jpg','applicants_certifications','331483592_593801392189620_161260
4872013821066_n.jpg','U1174T1686814059.jpg','2023-06-15 07:27:39','2023-06-15
07:27:39',NULL,'1174',NULL,NULL),(2636,1176,'TOR','applicants_certifications/
U1176T1686816423.pdf','applicants_certifications','NGBinwag Transcript of
Records.pdf','U1176T1686816423.pdf','2023-06-15 08:07:03','2023-06-15
08:07:03',NULL,'1176',NULL,NULL),(2637,1176,'COE','applicants_certifications/
U1176T1686816467.pdf','applicants_certifications','NGBinwag Certificate of
Employment.pdf','U1176T1686816467.pdf','2023-06-15 08:07:47','2023-06-15
08:07:47',NULL,'1176',NULL,NULL),(2638,1176,'SWT','applicants_certifications/
U1176T1686816512.pdf','applicants_certifications','NGBinwag Training
Certificates.pdf','U1176T1686816512.pdf','2023-06-15 08:08:32','2023-06-15
08:08:32',NULL,'1176',NULL,NULL),(2639,1159,'TOR','applicants_certifications/
U1159T1686816532.jpg','applicants_certifications','inbound3426092290887517803.jpg',
'U1159T1686816532.jpg','2023-06-15 08:08:52','2023-06-15
08:08:52',NULL,'1159',NULL,NULL),
(2640,1176,'ELIGIBILITY','applicants_certifications/
U1176T1686816551.pdf','applicants_certifications','NGBinwag Certificate of
Eligibility.pdf','U1176T1686816551.pdf','2023-06-15 08:09:11','2023-06-15
08:09:11',NULL,'1176',NULL,NULL),(2641,1159,'TOR','applicants_certifications/
U1159T1686816553.jpg','applicants_certifications','inbound2752915137004199415.jpg',
'U1159T1686816553.jpg','2023-06-15 08:09:13','2023-06-15
08:09:13',NULL,'1159',NULL,NULL),(2642,1159,'TOR','applicants_certifications/
U1159T1686816575.jpg','applicants_certifications','inbound1463008218723381656.jpg',
'U1159T1686816575.jpg','2023-06-15 08:09:35','2023-06-15
08:09:35',NULL,'1159',NULL,NULL),(2646,1111,'TOR','applicants_certifications/
U1111T1686819313.pdf','applicants_certifications','Transcript of
Records_OCFEMIA.pdf','U1111T1686819313.pdf','2023-06-15 08:55:13','2023-06-15
08:55:13',NULL,'1111',NULL,NULL),(2651,1106,'TOR','applicants_certifications/
U1106T1686819515.pdf','applicants_certifications','TOR.pdf','U1106T1686819515.pdf',
'2023-06-15 08:58:35','2023-06-15 08:58:35',NULL,'1106',NULL,NULL),
(2652,1183,'TOR','applicants_certifications/
U1183T1686819703.pdf','applicants_certifications','TOR.pdf','U1183T1686819703.pdf',
'2023-06-15 09:01:43','2023-06-15 09:01:43',NULL,'1183',NULL,NULL),
(2653,1183,'COE','applicants_certifications/
U1183T1686819732.pdf','applicants_certifications','Employment
Cert..pdf','U1183T1686819732.pdf','2023-06-15 09:02:12','2023-06-15
09:02:12',NULL,'1183',NULL,NULL),(2654,1183,'SWT','applicants_certifications/
U1183T1686819942.pdf','applicants_certifications','Basic Computer
Literacy.pdf','U1183T1686819942.pdf','2023-06-15 09:05:42','2023-06-15
09:05:42',NULL,'1183',NULL,NULL),(2655,1183,'SWT','applicants_certifications/
U1183T1686819994.pdf','applicants_certifications','ESL Training Cert -
Basic.pdf','U1183T1686819994.pdf','2023-06-15 09:06:34','2023-06-15
09:06:34',NULL,'1183',NULL,NULL),(2656,1183,'SWT','applicants_certifications/
U1183T1686820018.pdf','applicants_certifications','Accounting Advance
Training.pdf','U1183T1686820018.pdf','2023-06-15 09:06:58','2023-06-15
09:06:58',NULL,'1183',NULL,NULL),(2657,1189,'PDS','applicants_certifications/
U1189T1686821220.xlsx','applicants_certifications','Emz
PDS.xlsx','U1189T1686821220.xlsx','2023-06-15 09:27:00','2023-06-15
09:27:00',NULL,'1189',NULL,NULL),(2658,495,'PDS','applicants_certifications/
U495T1686821644.pdf','applicants_certifications','Personal Data
Sheet.pdf','U495T1686821644.pdf','2023-06-15 09:34:04','2023-06-15
09:34:04',NULL,'495',NULL,NULL),(2659,1189,'COE','applicants_certifications/
U1189T1686821650.jpg','applicants_certifications','COE.jpg','U1189T1686821650.jpg',
'2023-06-15 09:34:10','2023-06-15 09:34:10',NULL,'1189',NULL,NULL),
(2660,1178,'COE','applicants_certifications/
U1178T1686822675.pdf','applicants_certifications','CERTIFICATE OF
EMPLOYMENT.pdf','U1178T1686822675.pdf','2023-06-15 09:51:15','2023-06-15
09:51:15',NULL,'1178',NULL,NULL),(2661,1178,'TOR','applicants_certifications/
U1178T1686822963.pdf','applicants_certifications','TOR.pdf','U1178T168682296
3.pdf','2023-06-15 09:56:03','2023-06-15 09:56:03',NULL,'1178',NULL,NULL),
(2662,1176,'PDS','applicants_certifications/
U1176T1686823042.pdf','applicants_certifications','NGBinwag Personal Data
Sheet.pdf','U1176T1686823042.pdf','2023-06-15 09:57:22','2023-06-15
09:57:22',NULL,'1176',NULL,NULL),(2663,1178,'SWT','applicants_certifications/
U1178T1686823047.pdf','applicants_certifications','CERTIFICATE OF
TRAINING.pdf','U1178T1686823047.pdf','2023-06-15 09:57:27','2023-06-15
09:57:27',NULL,'1178',NULL,NULL),(2664,1178,'PDS','applicants_certifications/
U1178T1686823084.pdf','applicants_certifications','PDS.pdf','U1178T1686823084.pdf',
'2023-06-15 09:58:04','2023-06-15 09:58:04',NULL,'1178',NULL,NULL),
(2665,1178,'ELIGIBILITY','applicants_certifications/
U1178T1686823149.pdf','applicants_certifications','PRC
CERTIFICATION.pdf','U1178T1686823149.pdf','2023-06-15 09:59:09','2023-06-15
09:59:09',NULL,'1178',NULL,NULL),(2666,1169,'COE','applicants_certifications/
U1169T1686823323.jpg','applicants_certifications','inbound2877202246736671452.jpg',
'U1169T1686823323.jpg','2023-06-15 10:02:03','2023-06-15
10:02:03',NULL,'1169',NULL,NULL),(2668,1169,'COE','applicants_certifications/
U1169T1686823450.jpg','applicants_certifications','inbound4471312037514853731.jpg',
'U1169T1686823450.jpg','2023-06-15 10:04:10','2023-06-15
10:04:10',NULL,'1169',NULL,NULL),(2669,1179,'TOR','applicants_certifications/
U1179T1686823665.pdf','applicants_certifications','TOR.pdf','U1179T1686823665.pdf',
'2023-06-15 10:07:45','2023-06-15 10:07:45',NULL,'1179',NULL,NULL),
(2670,1179,'ELIGIBILITY','applicants_certifications/
U1179T1686823735.pdf','applicants_certifications','PRC Eligibility-PRC Licensed
ID.pdf','U1179T1686823735.pdf','2023-06-15 10:08:55','2023-06-15
10:08:55',NULL,'1179',NULL,NULL),(2671,1169,'SWT','applicants_certifications/
U1169T1686824023.jpg','applicants_certifications','01 Mental
Health_1.jpg','U1169T1686824023.jpg','2023-06-15 10:13:43','2023-06-15
10:13:43',NULL,'1169',NULL,NULL),(2672,1169,'SWT','applicants_certifications/
U1169T1686824330.jpg','applicants_certifications','02 Initial Case
Presentation_1.jpg','U1169T1686824330.jpg','2023-06-15 10:18:50','2023-06-15
10:18:50',NULL,'1169',NULL,NULL),(2673,1169,'SWT','applicants_certifications/
U1169T1686824749.jpg','applicants_certifications','03 Final Case
Presentation_1.jpg','U1169T1686824749.jpg','2023-06-15 10:25:49','2023-06-15
10:25:49',NULL,'1169',NULL,NULL),(2674,1169,'SWT','applicants_certifications/
U1169T1686824903.jpg','applicants_certifications','04 Promoting Human Relationships
and Community Acountability_1.jpg','U1169T1686824903.jpg','2023-06-15
10:28:23','2023-06-15 10:28:23',NULL,'1169',NULL,NULL),
(2675,1169,'SWT','applicants_certifications/
U1169T1686825000.jpg','applicants_certifications','05
ECCD_1.jpg','U1169T1686825000.jpg','2023-06-15 10:30:00','2023-06-15
10:30:00',NULL,'1169',NULL,NULL),(2676,1169,'SWT','applicants_certifications/
U1169T1686825043.jpg','applicants_certifications','06 Training For Youth Advocates
on Anti-Rape and VAWC_1.jpg','U1169T1686825043.jpg','2023-06-15 10:30:43','2023-06-
15 10:30:43',NULL,'1169',NULL,NULL),(2677,1169,'SWT','applicants_certifications/
U1169T1686825104.jpg','applicants_certifications','07 I\'M OKAY-an encounter with
Self_1.jpg','U1169T1686825104.jpg','2023-06-15 10:31:44','2023-06-15
10:31:44',NULL,'1169',NULL,NULL),(2678,1169,'SWT','applicants_certifications/
U1169T1686825171.jpg','applicants_certifications','08 Self Awareness and Mental
Health Seminar of PWD_1.jpg','U1169T1686825171.jpg','2023-06-15 10:32:51','2023-06-
15 10:32:51',NULL,'1169',NULL,NULL),(2679,1169,'SWT','applicants_certifications/
U1169T1686825258.jpg','applicants_certifications','09 Skills Training on Beverage
Making_1.jpg','U1169T1686825258.jpg','2023-06-15 10:34:18','2023-06-15
10:34:18',NULL,'1169',NULL,NULL),(2680,1169,'SWT','applicants_certifications/
U1169T1686825314.jpg','applicants_certifications','10 Roll out Training on Strong
Families_1.jpg','U1169T1686825314.jpg','2023-06-15 10:35:14','2023-06-15
10:35:14',NULL,'1169',NULL,NULL),(2682,1169,'SWT','applicants_certifications/
U1169T1686825413.jpg','applicants_certifications','11 Gender Responsive Population
Strategies Training_1.jpg','U1169T1686825413.jpg','2023-06-15 10:36:53','2023-06-15
10:36:53',NULL,'1169',NULL,NULL),(2683,1169,'SWT','applicants_certifications/
U1169T1686825466.jpg','applicants_certifications','12 Gender Awareness and
Development_1.jpg','U1169T1686825466.jpg','2023-06-15 10:37:46','2023-06-15
10:37:46',NULL,'1169',NULL,NULL),(2684,1169,'SWT','applicants_certifications/
U1169T1686825519.jpg','applicants_certifications','14 Basic Computer
Literacy_1.jpg','U1169T1686825519.jpg','2023-06-15 10:38:39','2023-06-15
10:38:39',NULL,'1169',NULL,NULL),(2686,1169,'SWT','applicants_certifications/
U1169T1686825558.jpg','applicants_certifications','13 Life Skills
Training(Taglish)_1.jpg','U1169T1686825558.jpg','2023-06-15 10:39:18','2023-06-15
10:39:18',NULL,'1169',NULL,NULL),(2687,1169,'SWT','applicants_certifications/
U1169T1686825617.jpg','applicants_certifications','RA_1.jpg','U1169T1686825617.jpg'
,'2023-06-15 10:40:17','2023-06-15 10:40:17',NULL,'1169',NULL,NULL),
(2689,917,'TOR','applicants_certifications/
U917T1686826522.pdf','applicants_certifications','inbound246343240363486599.pdf','U
917T1686826522.pdf','2023-06-15 10:55:22','2023-06-15
10:55:22',NULL,'917',NULL,NULL),
(2690,917,'ELIGIBILITY','applicants_certifications/
U917T1686826107.pdf','applicants_certifications','inbound40643018187260217.pdf','U9
17T1686826107.pdf','2023-06-15 10:48:27','2023-06-15
10:48:27',NULL,'917',NULL,NULL),(2694,1205,'TOR','applicants_certifications/
U1205T1686828272.jpg','applicants_certifications','inbound2358217252023653722.jpg',
'U1205T1686828272.jpg','2023-06-15 11:24:32','2023-06-15
11:24:32',NULL,'1205',NULL,NULL),(2696,1205,'TOR','applicants_certifications/
U1205T1686828326.jpg','applicants_certifications','inbound7065310969195709009.jpg',
'U1205T1686828326.jpg','2023-06-15 11:25:26','2023-06-15
11:25:26',NULL,'1205',NULL,NULL),
(2701,1188,'ELIGIBILITY','applicants_certifications/
U1188T1686832184.jpg','applicants_certifications','CS
ELIGIBILITY.jpg','U1188T1686832184.jpg','2023-06-15 12:29:44','2023-06-15
12:29:44',NULL,'1188',NULL,NULL),(2702,1160,'TOR','applicants_certifications/
U1160T1686832982.pdf','applicants_certifications','inbound6406262643033913722.pdf',
'U1160T1686832982.pdf','2023-06-15 12:43:02','2023-06-15
12:43:02',NULL,'1160',NULL,NULL),(2703,1215,'TOR','applicants_certifications/
U1215T1686833855.pdf','applicants_certifications','DAULAYAN_TOR.pdf','U1215T1686833
855.pdf','2023-06-15 12:57:35','2023-06-15 12:57:35',NULL,'1215',NULL,NULL),
(2704,1215,'TOR','applicants_certifications/
U1215T1686833858.pdf','applicants_certifications','DAULAYAN_TOR.pdf','U1215T1686833
858.pdf','2023-06-15 12:57:38','2023-06-15 12:57:38',NULL,'1215',NULL,NULL),
(2707,701,'TOR','applicants_certifications/
U701T1686834698.jpg','applicants_certifications','inbound6989842837051459061.jpg','
U701T1686834698.jpg','2023-06-15 13:11:38','2023-06-15
13:11:38',NULL,'701',NULL,NULL),(2708,701,'TOR','applicants_certifications/
U701T1686834730.jpg','applicants_certifications','inbound8917832608202647448.jpg','
U701T1686834730.jpg','2023-06-15 13:12:10','2023-06-15
13:12:10',NULL,'701',NULL,NULL),(2709,701,'TOR','applicants_certifications/
U701T1686834756.jpg','applicants_certifications','inbound3381271925863978576.jpg','
U701T1686834756.jpg','2023-06-15 13:12:36','2023-06-15
13:12:36',NULL,'701',NULL,NULL),(2710,701,'COE','applicants_certifications/
U701T1686834821.jpg','applicants_certifications','inbound3749116169735503303.jpg','
U701T1686834821.jpg','2023-06-15 13:13:41','2023-06-15
13:13:41',NULL,'701',NULL,NULL),(2711,701,'COE','applicants_certifications/
U701T1686834910.jpg','applicants_certifications','inbound5039159231423853778.jpg','
U701T1686834910.jpg','2023-06-15 13:15:10','2023-06-15
13:15:10',NULL,'701',NULL,NULL),(2712,701,'COE','applicants_certifications/
U701T1686834960.jpg','applicants_certifications','inbound6440443080511603787.jpg','
U701T1686834960.jpg','2023-06-15 13:16:00','2023-06-15
13:16:00',NULL,'701',NULL,NULL),(2713,701,'COE','applicants_certifications/
U701T1686835014.jpg','applicants_certifications','inbound9100294729030090176.jpg','
U701T1686835014.jpg','2023-06-15 13:16:54','2023-06-15
13:16:54',NULL,'701',NULL,NULL),(2714,701,'TOR','applicants_certifications/
U701T1686835043.jpg','applicants_certifications','inbound5704980761123701160.jpg','
U701T1686835043.jpg','2023-06-15 13:17:23','2023-06-15
13:17:23',NULL,'701',NULL,NULL),(2715,701,'COE','applicants_certifications/
U701T1686835100.jpg','applicants_certifications','inbound7363336973308273157.jpg','
U701T1686835100.jpg','2023-06-15 13:18:20','2023-06-15
13:18:20',NULL,'701',NULL,NULL),(2716,701,'SWT','applicants_certifications/
U701T1686835161.jpg','applicants_certifications','inbound1976215793378449927.jpg','
U701T1686835161.jpg','2023-06-15 13:19:21','2023-06-15
13:19:21',NULL,'701',NULL,NULL),(2717,701,'COE','applicants_certifications/
U701T1686835215.jpg','applicants_certifications','inbound4305165245548402699.jpg','
U701T1686835215.jpg','2023-06-15 13:20:15','2023-06-15
13:20:15',NULL,'701',NULL,NULL),
(2718,701,'ELIGIBILITY','applicants_certifications/
U701T1686835244.jpg','applicants_certifications','inbound9148443459359507295.jpg','
U701T1686835244.jpg','2023-06-15 13:20:44','2023-06-15
13:20:44',NULL,'701',NULL,NULL),
(2719,935,'ELIGIBILITY','applicants_certifications/
U935T1686835249.jpeg','applicants_certifications','received_3426792454262080.jpeg',
'U935T1686835249.jpeg','2023-06-15 13:20:49','2023-06-15
13:20:49',NULL,'935',NULL,NULL),(2720,955,'TOR','applicants_certifications/
U955T1686835425.pdf','applicants_certifications','inbound1591445587116657119.pdf','
U955T1686835425.pdf','2023-06-15 13:23:45','2023-06-15
13:23:45',NULL,'955',NULL,NULL),(2721,955,'COE','applicants_certifications/
U955T1686835473.pdf','applicants_certifications','inbound7314829196664824910.pdf','
U955T
1686835473.pdf','2023-06-15 13:24:33','2023-06-15 13:24:33',NULL,'955',NULL,NULL),
(2722,955,'SWT','applicants_certifications/
U955T1686835497.pdf','applicants_certifications','inbound7286899949966419584.pdf','
U955T1686835497.pdf','2023-06-15 13:24:57','2023-06-15
13:24:57',NULL,'955',NULL,NULL),
(2723,955,'ELIGIBILITY','applicants_certifications/
U955T1686835528.pdf','applicants_certifications','inbound592168971455093122.pdf','U
955T1686835528.pdf','2023-06-15 13:25:28','2023-06-15
13:25:28',NULL,'955',NULL,NULL),(2724,701,'SWT','applicants_certifications/
U701T1686835648.jpg','applicants_certifications','inbound8317138935303131232.jpg','
U701T1686835648.jpg','2023-06-15 13:27:28','2023-06-15
13:27:28',NULL,'701',NULL,NULL),(2725,701,'PDS','applicants_certifications/
U701T1686835690.jpg','applicants_certifications','inbound8373161499548039133.jpg','
U701T1686835690.jpg','2023-06-15 13:28:10','2023-06-15
13:28:10',NULL,'701',NULL,NULL),(2726,701,'PDS','applicants_certifications/
U701T1686835728.jpg','applicants_certifications','inbound6815822566945220539.jpg','
U701T1686835728.jpg','2023-06-15 13:28:48','2023-06-15
13:28:48',NULL,'701',NULL,NULL),(2727,701,'PDS','applicants_certifications/
U701T1686835757.jpg','applicants_certifications','inbound7853688835692269411.jpg','
U701T1686835757.jpg','2023-06-15 13:29:17','2023-06-15
13:29:17',NULL,'701',NULL,NULL),(2728,701,'PDS','applicants_certifications/
U701T1686835809.jpg','applicants_certifications','inbound1923615627384647967.jpg','
U701T1686835809.jpg','2023-06-15 13:30:09','2023-06-15
13:30:09',NULL,'701',NULL,NULL),(2729,1211,'TOR','applicants_certifications/
U1211T1686836151.pdf','applicants_certifications','Transcript of
Records.pdf','U1211T1686836151.pdf','2023-06-15 13:35:51','2023-06-15
13:35:51',NULL,'1211',NULL,NULL),(2730,1211,'COE','applicants_certifications/
U1211T1686836194.pdf','applicants_certifications','Service
Records.pdf','U1211T1686836194.pdf','2023-06-15 13:36:34','2023-06-15
13:36:34',NULL,'1211',NULL,NULL),
(2732,1211,'ELIGIBILITY','applicants_certifications/
U1211T1686836384.pdf','applicants_certifications','Eligibility.pdf','U1211T16868363
84.pdf','2023-06-15 13:39:44','2023-06-15 13:39:44',NULL,'1211',NULL,NULL),
(2733,1211,'PDS','applicants_certifications/
U1211T1686836422.pdf','applicants_certifications','PDS.pdf','U1211T1686836422.pdf',
'2023-06-15 13:40:22','2023-06-15 13:40:22',NULL,'1211',NULL,NULL),
(2735,1217,'TOR','applicants_certifications/
U1217T1686836709.pdf','applicants_certifications','inbound5309991025216126099.pdf',
'U1217T1686836709.pdf','2023-06-15 13:45:09','2023-06-15
13:45:09',NULL,'1217',NULL,NULL),
(2738,1217,'ELIGIBILITY','applicants_certifications/
U1217T1686837001.pdf','applicants_certifications','inbound6076505773080447781.pdf',
'U1217T1686837001.pdf','2023-06-15 13:50:01','2023-06-15
13:50:01',NULL,'1217',NULL,NULL),(2741,1188,'SWT','applicants_certifications/
U1188T1686837746.jpg','applicants_certifications','Non-Teaching Induction
Program.jpg','U1188T1686837746.jpg','2023-06-15 14:02:26','2023-06-15
14:02:26',NULL,'1188',NULL,NULL),(2742,1188,'SWT','applicants_certifications/
U1188T1686837791.jpg','applicants_certifications','Seminar-Workshop on Protocols,
Work Ethics & Social Graces.jpg','U1188T1686837791.jpg','2023-06-15
14:03:11','2023-06-15 14:03:11',NULL,'1188',NULL,NULL),
(2745,1188,'SWT','applicants_certifications/
U1188T1686838261.jpg','applicants_certifications','Leading with HOPE ( Holistic
Opportunities for Professional Enchancement) Certificate of Completion from Series
1-5.jpg','U1188T1686838261.jpg','2023-06-15 14:11:01','2023-06-15
14:11:01',NULL,'1188',NULL,NULL),(2746,1188,'SWT','applicants_certifications/
U1188T1686838275.jpg','applicants_certifications','Leading with HOPE ( Holistic
Opportunities for Professional Enchancement) Series 1 - Mental
Health.jpg','U1188T1686838275.jpg','2023-06-15 14:11:15','2023-06-15
14:11:15',NULL,'1188',NULL,NULL),(2747,1188,'SWT','applicants_certifications/
U1188T1686838306.jpg','applicants_certifications','Leading with HOPE ( Holistic
Opportunities for Professional Enchancement) Series 5 Intensive Values
Education.jpg','U1188T1686838306.jpg','2023-06-15 14:11:46','2023-06-15
14:11:46',NULL,'1188',NULL,NULL),(2749,1188,'SWT','applicants_certifications/
U1188T1686838401.jpg','applicants_certifications','Rapid Damage Assessment and Need
Analysis Training.jpg','U1188T1686838401.jpg','2023-06-15 14:13:21','2023-06-15
14:13:21',NULL,'1188',NULL,NULL),(2750,1188,'SWT','applicants_certifications/
U1188T1686838494.jpg','applicants_certifications','IEC on Iba na ang Panahon
Science for Safer Communities.jpg','U1188T1686838494.jpg','2023-06-15
14:14:54','2023-06-15 14:14:54',NULL,'1188',NULL,NULL),
(2751,1188,'SWT','applicants_certifications/
U1188T1686838507.jpg','applicants_certifications','Emergency Responders
Course.jpg','U1188T1686838507.jpg','2023-06-15 14:15:07','2023-06-15
14:15:07',NULL,'1188',NULL,NULL),(2755,1188,'SWT','applicants_certifications/
U1188T1686838789.jpg','applicants_certifications','Program Orientation and Project
Proposal Preparation Workshop.jpg','U1188T1686838789.jpg','2023-06-15
14:19:49','2023-06-15 14:19:49',NULL,'1188',NULL,NULL),
(2756,1188,'SWT','applicants_certifications/
U1188T1686838814.jpg','applicants_certifications','Basic Computer Training
Workshop.jpg','U1188T1686838814.jpg','2023-06-15 14:20:14','2023-06-15
14:20:14',NULL,'1188',NULL,NULL),(2757,1188,'SWT','applicants_certifications/
U1188T1686838825.jpg','applicants_certifications','Basic Bookkeeping
Training.jpg','U1188T1686838825.jpg','2023-06-15 14:20:25','2023-06-15
14:20:25',NULL,'1188',NULL,NULL),(2758,1211,'SWT','applicants_certifications/
U1211T1686838842.jpg','applicants_certifications','Seminar and
Trainings_1.jpg','U1211T1686838842.jpg','2023-06-15 14:20:42','2023-06-15
14:20:42',NULL,'1211',NULL,NULL),(2759,1211,'SWT','applicants_certifications/
U1211T1686838862.jpg','applicants_certifications','Seminar and
Trainings_2.jpg','U1211T1686838862.jpg','2023-06-15 14:21:02','2023-06-15
14:21:02',NULL,'1211',NULL,NULL),(2760,1211,'SWT','applicants_certifications/
U1211T1686838901.jpg','applicants_certifications','Seminar and
Trainings_3.jpg','U1211T1686838901.jpg','2023-06-15 14:21:41','2023-06-15
14:21:41',NULL,'1211',NULL,NULL),(2761,1211,'SWT','applicants_certifications/
U1211T1686838919.jpg','applicants_certifications','Seminar and
Trainings_4.jpg','U1211T1686838919.jpg','2023-06-15 14:21:59','2023-06-15
14:21:59',NULL,'1211',NULL,NULL),(2762,1188,'SWT','applicants_certifications/
U1188T1686838929.jpg','applicants_certifications','MOSAR
Training.jpg','U1188T1686838929.jpg','2023-06-15 14:22:09','2023-06-15
14:22:09',NULL,'1188',NULL,NULL),(2763,1211,'SWT','applicants_certifications/
U1211T1686838935.jpg','applicants_certifications','Seminar and
Trainings_5.jpg','U1211T1686838935.jpg','2023-06-15 14:22:15','2023-06-15
14:22:15',NULL,'1211',NULL,NULL),(2764,1211,'SWT','applicants_certifications/
U1211T1686838951.jpg','applicants_certifications','Seminar and
Trainings_6.jpg','U1211T1686838951.jpg','2023-06-15 14:22:31','2023-06-15
14:22:31',NULL,'1211',NULL,NULL),(2765,1211,'SWT','applicants_certifications/
U1211T1686838968.jpg','applicants_certifications','Seminar and
Trainings_7.jpg','U1211T1686838968.jpg','2023-06-15 14:22:48','2023-06-15
14:22:48',NULL,'1211',NULL,NULL),(2766,1211,'SWT','applicants_certifications/
U1211T1686838986.jpg','applicants_certifications','Seminar and
Trainings_8.jpg','U1211T1686838986.jpg','2023-06-15 14:23:06','2023-06-15
14:23:06',NULL,'1211',NULL,NULL),(2767,1211,'SWT','applicants_certifications/
U1211T1686839000.jpg','applicants_certifications','Seminar and
Trainings_9.jpg','U1211T1686839000.jpg','2023-06-15 14:23:20','2023-06-15
14:23:20',NULL,'1211',NULL,NULL),(2768,1211,'SWT','applicants_certifications/
U1211T1686839020.jpg','applicants_certifications','Seminar and
Trainings_10.jpg','U1211T1686839020.jpg','2023-06-15 14:23:40','2023-06-15
14:23:40',NULL,'1211',NULL,NULL),(2769,1211,'SWT','applicants_certifications/
U1211T1686839037.jpg','applicants_certifications','Seminar and
Trainings_11.jpg','U1211T1686839037.jpg','2023-06-15 14:23:57','2023-06-15
14:23:57',NULL,'1211',NULL,NULL),(2770,1211,'SWT','applicants_certifications/
U1211T1686839055.jpg','applicants_certifications','Seminar and
Trainings_12.jpg','U1211T1686839055.jpg','2023-06-15 14:24:15','2023-06-15
14:24:15',NULL,'1211',NULL,NULL),(2771,1211,'SWT','applicants_certifications/
U1211T1686839074.jpg','applicants_certifications','Seminar and
Trainings_13.jpg','U1211T1686839074.jpg','2023-06-15 14:24:34','2023-06-15
14:24:34',NULL,'1211',NULL,NULL),(2772,1211,'SWT','applicants_certifications/
U1211T1686839095.jpg','applicants_certifications','Seminar and
Trainings_14.jpg','U1211T1686839095.jpg','2023-06-15 14:24:55','2023-06-15
14:24:55',NULL,'1211',NULL,NULL),(2773,1211,'SWT','applicants_certifications/
U1211T1686839113.jpg','applicants_certifications','Seminar and
Trainings_15.jpg','U1211T1686839113.jpg','2023-06-15 14:25:13','2023-06-15
14:25:13',NULL,'1211',NULL,NULL),(2774,1211,'SWT','applicants_certifications/
U1211T1686839131.jpg','applicants_certifications','Seminar and
Trainings_16.jpg','U1211T1686839131.jpg','2023-06-15 14:25:31','2023-06-15
14:25:31',NULL,'1211',NULL,NULL),(2775,1211,'SWT','applicants_certifications/
U1211T1686839149.jpg','applicants_certifications','Seminar and
Trainings_17.jpg','U1211T1686839149.jpg','2023-06-15 14:25:49','2023-06-15
14:25:49',NULL,'1211',NULL,NULL),(2776,1211,'SWT','applicants_certifications/
U1211T1686839167.jpg','applicants_certifications','Seminar and
Trainings_18.jpg','U1211T1686839167.jpg','2023-06-15 14:26:07','2023-06-15
14:26:07',NULL,'1211',NULL,NULL),(2777,1211,'SWT','applicants_certifications/
U1211T1686839187.jpg','applicants_certifications','Seminar and
Trainings_19.jpg','U1211T1686839187.jpg','2023-06-15 14:26:27','2023-06-15
14:26:27',NULL,'1211',NULL,NULL),(2778,1211,'SWT','applicants_certifications/
U1211T1686839209.jpg','applicants_certifications','Seminar
and Trainings_20.jpg','U1211T1686839209.jpg','2023-06-15 14:26:49','2023-06-15
14:26:49',NULL,'1211',NULL,NULL),(2779,1211,'SWT','applicants_certifications/
U1211T1686839227.jpg','applicants_certifications','Seminar and
Trainings_21.jpg','U1211T1686839227.jpg','2023-06-15 14:27:07','2023-06-15
14:27:07',NULL,'1211',NULL,NULL),(2780,1211,'SWT','applicants_certifications/
U1211T1686839244.jpg','applicants_certifications','Seminar and
Trainings_22.jpg','U1211T1686839244.jpg','2023-06-15 14:27:24','2023-06-15
14:27:24',NULL,'1211',NULL,NULL),(2781,1211,'SWT','applicants_certifications/
U1211T1686839263.jpg','applicants_certifications','Seminar and
Trainings_23.jpg','U1211T1686839263.jpg','2023-06-15 14:27:43','2023-06-15
14:27:43',NULL,'1211',NULL,NULL),(2782,483,'TOR','applicants_certifications/
U483T1686839288.jpg','applicants_certifications','inbound8207109442629067233.jpg','
U483T1686839288.jpg','2023-06-15 14:28:08','2023-06-15
14:28:08',NULL,'483',NULL,NULL),(2783,1211,'SWT','applicants_certifications/
U1211T1686839293.jpg','applicants_certifications','Seminar and
Trainings_24.jpg','U1211T1686839293.jpg','2023-06-15 14:28:13','2023-06-15
14:28:13',NULL,'1211',NULL,NULL),(2784,1211,'SWT','applicants_certifications/
U1211T1686839312.jpg','applicants_certifications','Seminar and
Trainings_25.jpg','U1211T1686839312.jpg','2023-06-15 14:28:32','2023-06-15
14:28:32',NULL,'1211',NULL,NULL),(2785,1211,'SWT','applicants_certifications/
U1211T1686839332.jpg','applicants_certifications','Seminar and
Trainings_26.jpg','U1211T1686839332.jpg','2023-06-15 14:28:52','2023-06-15
14:28:52',NULL,'1211',NULL,NULL),(2786,483,'COE','applicants_certifications/
U483T1686839429.jpg','applicants_certifications','inbound8442863606692146535.jpg','
U483T1686839429.jpg','2023-06-15 14:30:29','2023-06-15
14:30:29',NULL,'483',NULL,NULL),(2798,483,'SWT','applicants_certifications/
U483T1686839643.jpg','applicants_certifications','inbound5309028408847879956.jpg','
U483T1686839643.jpg','2023-06-15 14:34:03','2023-06-15
14:34:03',NULL,'483',NULL,NULL),(2799,483,'SWT','applicants_certifications/
U483T1686839729.jpg','applicants_certifications','inbound9035995013119754195.jpg','
U483T1686839729.jpg','2023-06-15 14:35:29','2023-06-15
14:35:29',NULL,'483',NULL,NULL),
(2800,483,'ELIGIBILITY','applicants_certifications/
U483T1686839828.jpg','applicants_certifications','inbound6989160849436535624.jpg','
U483T1686839828.jpg','2023-06-15 14:37:08','2023-06-15
14:37:08',NULL,'483',NULL,NULL),(2802,1225,'SWT','applicants_certifications/
U1225T1686841052.docx','applicants_certifications','inbound4789497530110313531.docx
','U1225T1686841052.docx','2023-06-15 14:57:32','2023-06-15
14:57:32',NULL,'1225',NULL,NULL),(2803,1225,'SWT','applicants_certifications/
U1225T1686841081.pdf','applicants_certifications','inbound6412472716474386164.pdf',
'U1225T1686841081.pdf','2023-06-15 14:58:01','2023-06-15
14:58:01',NULL,'1225',NULL,NULL),(2809,1209,'TOR','applicants_certifications/
U1209T1686841549.jpg','applicants_certifications','CameraScan 2023-10-06
03.59.46.jpg','U1209T1686841549.jpg','2023-06-15 15:05:49','2023-06-15
15:05:49',NULL,'1209',NULL,NULL),(2810,1209,'TOR','applicants_certifications/
U1209T1686841568.jpg','applicants_certifications','CameraScan 2023-10-06
04.00.59.jpg','U1209T1686841568.jpg','2023-06-15 15:06:08','2023-06-15
15:06:08',NULL,'1209',NULL,NULL),(2811,1209,'TOR','applicants_certifications/
U1209T1686841588.jpg','applicants_certifications','CameraScan 2023-10-06
03.54.50.jpg','U1209T1686841588.jpg','2023-06-15 15:06:28','2023-06-15
15:06:28',NULL,'1209',NULL,NULL),(2812,1168,'TOR','applicants_certifications/
U1168T1686843297.pdf','applicants_certifications','TOR.pdf','U1168T1686843297.pdf',
'2023-06-15 15:34:57','2023-06-15 15:34:57',NULL,'1168',NULL,NULL),
(2813,1168,'COE','applicants_certifications/
U1168T1686843328.pdf','applicants_certifications','COE.pdf','U1168T1686843328.pdf',
'2023-06-15 15:35:28','2023-06-15 15:35:28',NULL,'1168',NULL,NULL),
(2814,1168,'ELIGIBILITY','applicants_certifications/
U1168T1686843363.pdf','applicants_certifications','COE.pdf','U1168T1686843363.pdf',
'2023-06-15 15:36:03','2023-06-15 15:36:03',NULL,'1168',NULL,NULL),
(2815,1168,'PDS','applicants_certifications/
U1168T1686843410.pdf','applicants_certifications','PDS.pdf','U1168T1686843410.pdf',
'2023-06-15 15:36:50','2023-06-15 15:36:50',NULL,'1168',NULL,NULL),
(2816,1045,'PDS','applicants_certifications/
U1045T1686845372.pdf','applicants_certifications','pds.pdf','U1045T1686845372.pdf',
'2023-06-15 16:09:32','2023-06-15 16:09:32',NULL,'1045',NULL,NULL),
(2817,1045,'COE','applicants_certifications/
U1045T1686846556.docx','applicants_certifications','COE 2022-12-27
(3246971).docx','U1045T1686846556.docx','2023-06-15 16:29:16','2023-06-15
16:29:16',NULL,'1045',NULL,NULL),(2818,1045,'TOR','applicants_certifications/
U1045T1686847177.docx','applicants_certifications','OTR.docx','U1045T1686847177.doc
x','2023-06-15 16:39:37','2023-06-15 16:39:37',NULL,'1045',NULL,NULL),
(2819,1045,'ELIGIBILITY','applicants_certifications/
U1045T1686847341.jpg','applicants_certifications','354356092_935312860862933_248230
2231625272310_n.jpg','U1045T1686847341.jpg','2023-06-15 16:42:21','2023-06-15
16:42:21',NULL,'1045',NULL,NULL),(2820,1045,'SWT','applicants_certifications/
U1045T1686847467.jpg','applicants_certifications','354722706_112925435166619_468018
8996504197012_n.jpg','U1045T1686847467.jpg','2023-06-15 16:44:27','2023-06-15
16:44:27',NULL,'1045',NULL,NULL),(2821,1225,'PDS','applicants_certifications/
U1225T1686847536.xlsx','applicants_certifications','inbound7027545210780258079.xlsx
','U1225T1686847536.xlsx','2023-06-15 16:45:36','2023-06-15
16:45:36',NULL,'1225',NULL,NULL),(2822,1234,'TOR','applicants_certifications/
U1234T1686860554.pdf','applicants_certifications','TOR.pdf','U1234T1686860554.pdf',
'2023-06-15 20:22:34','2023-06-15 20:22:34',NULL,'1234',NULL,NULL),
(2823,1235,'COE','applicants_certifications/
U1235T1686860720.pdf','applicants_certifications','6. CoE of
JNK.pdf','U1235T1686860720.pdf','2023-06-15 20:25:20','2023-06-15
20:25:20',NULL,'1235',NULL,NULL),
(2824,1241,'ELIGIBILITY','applicants_certifications/
U1241T1686870377.jpg','applicants_certifications','inbound1412203153791730633.jpg',
'U1241T1686870377.jpg','2023-06-15 23:06:17','2023-06-15
23:06:17',NULL,'1241',NULL,NULL),
(2825,1241,'ELIGIBILITY','applicants_certifications/
U1241T1686870412.jpg','applicants_certifications','inbound2908889311622215724.jpg',
'U1241T1686870412.jpg','2023-06-15 23:06:52','2023-06-15
23:06:52',NULL,'1241',NULL,NULL),
(2826,1241,'ELIGIBILITY','applicants_certifications/
U1241T1686870459.jpg','applicants_certifications','inbound7697143077589704051.jpg',
'U1241T1686870459.jpg','2023-06-15 23:07:39','2023-06-15
23:07:39',NULL,'1241',NULL,NULL),
(2827,1241,'ELIGIBILITY','applicants_certifications/
U1241T1686870487.jpg','applicants_certifications','inbound4591977601422632500.jpg',
'U1241T1686870487.jpg','2023-06-15 23:08:07','2023-06-15
23:08:07',NULL,'1241',NULL,NULL),(2828,1241,'COE','applicants_certifications/
U1241T1686870676.jpg','applicants_certifications','inbound2958143269312259680.jpg',
'U1241T1686870676.jpg','2023-06-15 23:11:16','2023-06-15
23:11:16',NULL,'1241',NULL,NULL),(2829,1241,'COE','applicants_certifications/
U1241T1686870705.jpg','applicants_certifications','inbound1375751849770123433.jpg',
'U1241T1686870705.jpg','2023-06-15 23:11:45','2023-06-15
23:11:45',NULL,'1241',NULL,NULL),(2830,1241,'PDS','applicants_certifications/
U1241T1686870747.jpg','applicants_certifications','inbound3873397284703380043.jpg',
'U1241T1686870747.jpg','2023-06-15 23:12:27','2023-06-15
23:12:27',NULL,'1241',NULL,NULL),(2831,1241,'PDS','applicants_certifications/
U1241T1686870770.jpg','applicants_certifications','inbound4428285436778861868.jpg',
'U1241T1686870770.jpg','2023-06-15 23:12:50','2023-06-15
23:12:50',NULL,'1241',NULL,NULL),(2832,1241,'PDS','applicants_certifications/
U1241T1686870789.jpg','applicants_certifications','inbound6531227501548218716.jpg',
'U1241T1686870789.jpg','2023-06-15 23:13:09','2023-06-15
23:13:09',NULL,'1241',NULL,NULL),(2833,1241,'PDS','applicants_certifications/
U1241T1686870820.jpg','applicants_certifications','inbound1775370678176093670.jpg',
'U1241T1686870820.jpg','2023-06-15 23:13:40','2023-06-15
23:13:40',NULL,'1241',NULL,NULL),(2836,1188,'COE','applicants_certifications/
U1188T1686871057.jpg','applicants_certifications','Service Record
DepEd.jpg','U1188T1686871057.jpg','2023-06-15 23:17:37','2023-06-15
23:17:37',NULL,'1188',NULL,NULL),(2839,1188,'SWT','applicants_certifications/
U1188T1686871268.jpg','applicants_certifications','Seminar - Workshop on National
Building Code of the Phil. and its Rules and Regulation
(IRR).jpg','U1188T1686871268.jpg','2023-06-15 23:21:08','2023-06-15
23:21:08',NULL,'1188',NULL,NULL),(2840,1240,'TOR','applicants_certifications/
U1240T1686871288.pdf','applicants_certifications','Transcript of Records -
MBA.pdf','U1240T1686871288.pdf','2023-06-15 23:21:28','2023-06-15
23:21:28',NULL,'1240',NULL,NULL),(2841,1240,'TOR','applicants_certifications/
U1240T1686871341.pdf','applicants_certifications','Transcript of Records -
Bachelor.pdf','U1240T1686871341.pdf','2023-06-15 23:22:21','2023-06-15
23:22:21',NULL,'1240',NULL,NULL),(2844,1240,'COE','applicants_certifications/
U1240T1686871467.pdf','applicants_certifications','COE Amazon
MHLS.pdf','U1240T1686871467.pdf','2023-06-15 23:24:27','2023-06-15
23:24:27',NULL,'1240',NULL,NULL),(2845,1240,'COE','applicants_certifications/
U1240T1686871485.pdf','applicants_certifications','GSP
COE.pdf','U1240T1686871485.pdf','2023-06-15 23:24:45','2023-06-15
23:24:45',NULL,'1240',NULL,NULL),(2848,1240,'COE','applicants_certifications/
U1240T1686871721.pdf','applicants_certifications','ST.LUKES-TOPSERVE
COE.pdf','U1240T1686871721.pdf','2023-06-15 23:28:41','2023-06-15
23:28:41',NULL,'1240',NULL,NULL),(2849,1245,'PDS','applicants_certifications/
U1245T1686874758.pdf','applicants_certifications','inbound389178899960004306.pdf','
U1245T1686874758.pdf','2023-06-16
00:19:18','2023-06-16 00:19:18',NULL,'1245',NULL,NULL),
(2850,1245,'COE','applicants_certifications/
U1245T1686874839.pdf','applicants_certifications','inbound132174128100396390.pdf','
U1245T1686874839.pdf','2023-06-16 00:20:39','2023-06-16
00:20:39',NULL,'1245',NULL,NULL),
(2853,1214,'ELIGIBILITY','applicants_certifications/
U1214T1686875168.pdf','applicants_certifications','FOE Certification - Ester
Sison.pdf','U1214T1686875168.pdf','2023-06-16 00:26:08','2023-06-16
00:26:08',NULL,'1214',NULL,NULL),(2859,1247,'TOR','applicants_certifications/
U1247T1686875877.pdf','applicants_certifications','U1247T1686875785.pdf','U1247T168
6875877.pdf','2023-06-16 00:37:57','2023-06-16 00:37:57',NULL,'1247',NULL,NULL),
(2861,1247,'ELIGIBILITY','applicants_certifications/
U1247T1686876176.pdf','applicants_certifications','eligibility2.pdf','U1247T1686876
176.pdf','2023-06-16 00:42:56','2023-06-16 00:42:56',NULL,'1247',NULL,NULL),
(2863,1247,'SWT','applicants_certifications/
U1247T1686876493.pdf','applicants_certifications','PDFGallery_20230616_084553.pdf',
'U1247T1686876493.pdf','2023-06-16 00:48:13','2023-06-16
00:48:13',NULL,'1247',NULL,NULL),(2865,1248,'TOR','applicants_certifications/
U1248T1686878196.jpg','applicants_certifications','AnyScanner_06_16_2023
0.jpg','U1248T1686878196.jpg','2023-06-16 01:16:36','2023-06-16
01:16:36',NULL,'1248',NULL,NULL),
(2866,1248,'ELIGIBILITY','applicants_certifications/
U1248T1686878216.jpg','applicants_certifications','AnyScanner_06_16_2023
1.jpg','U1248T1686878216.jpg','2023-06-16 01:16:56','2023-06-16
01:16:56',NULL,'1248',NULL,NULL),(2867,1163,'TOR','applicants_certifications/
U1163T1686878760.jpg','applicants_certifications','inbound1301171478919083111.jpg',
'U1163T1686878760.jpg','2023-06-16 01:26:00','2023-06-16
01:26:00',NULL,'1163',NULL,NULL),(2868,1163,'TOR','applicants_certifications/
U1163T1686878782.jpg','applicants_certifications','inbound3846138590250976973.jpg',
'U1163T1686878782.jpg','2023-06-16 01:26:22','2023-06-16
01:26:22',NULL,'1163',NULL,NULL),(2869,1163,'TOR','applicants_certifications/
U1163T1686878805.jpg','applicants_certifications','inbound4209294851870743695.jpg',
'U1163T1686878805.jpg','2023-06-16 01:26:45','2023-06-16
01:26:45',NULL,'1163',NULL,NULL),(2870,1163,'TOR','applicants_certifications/
U1163T1686878824.jpg','applicants_certifications','inbound7317045221066681901.jpg',
'U1163T1686878824.jpg','2023-06-16 01:27:04','2023-06-16
01:27:04',NULL,'1163',NULL,NULL),(2871,1163,'COE','applicants_certifications/
U1163T1686878858.jpg','applicants_certifications','inbound911817744535495738.jpg','
U1163T1686878858.jpg','2023-06-16 01:27:38','2023-06-16
01:27:38',NULL,'1163',NULL,NULL),(2872,1163,'SWT','applicants_certifications/
U1163T1686878892.jpg','applicants_certifications','inbound4044454432718881904.jpg',
'U1163T1686878892.jpg','2023-06-16 01:28:12','2023-06-16
01:28:12',NULL,'1163',NULL,NULL),
(2873,1163,'ELIGIBILITY','applicants_certifications/
U1163T1686878910.jpg','applicants_certifications','inbound2504766786006927045.jpg',
'U1163T1686878910.jpg','2023-06-16 01:28:30','2023-06-16
01:28:30',NULL,'1163',NULL,NULL),(2874,1163,'PDS','applicants_certifications/
U1163T1686878954.jpg','applicants_certifications','inbound3382141608834487796.jpg',
'U1163T1686878954.jpg','2023-06-16 01:29:14','2023-06-16
01:29:14',NULL,'1163',NULL,NULL),(2875,1163,'PDS','applicants_certifications/
U1163T1686880975.jpg','applicants_certifications','inbound7080556883840384897.jpg',
'U1163T1686880975.jpg','2023-06-16 02:02:55','2023-06-16
02:02:55',NULL,'1163',NULL,NULL),(2876,1163,'PDS','applicants_certifications/
U1163T1686881000.jpg','applicants_certifications','inbound4434048158516784762.jpg',
'U1163T1686881000.jpg','2023-06-16 02:03:20','2023-06-16
02:03:20',NULL,'1163',NULL,NULL),(2877,1163,'PDS','applicants_certifications/
U1163T1686881025.jpg','applicants_certifications','inbound4798893650052930882.jpg',
'U1163T1686881025.jpg','2023-06-16 02:03:45','2023-06-16
02:03:45',NULL,'1163',NULL,NULL),(2878,1163,'PDS','applicants_certifications/
U1163T1686881059.jpg','applicants_certifications','inbound4706059588494058874.jpg',
'U1163T1686881059.jpg','2023-06-16 02:04:19','2023-06-16
02:04:19',NULL,'1163',NULL,NULL),(2879,1163,'PDS','applicants_certifications/
U1163T1686881084.jpg','applicants_certifications','inbound5351291460691780328.jpg',
'U1163T1686881084.jpg','2023-06-16 02:04:44','2023-06-16
02:04:44',NULL,'1163',NULL,NULL),(2880,1163,'PDS','applicants_certifications/
U1163T1686881108.jpg','applicants_certifications','inbound2017830777424188116.jpg',
'U1163T1686881108.jpg','2023-06-16 02:05:08','2023-06-16
02:05:08',NULL,'1163',NULL,NULL),(2881,1254,'SWT','applicants_certifications/
U1254T1686881178.pdf','applicants_certifications','Trainings.pdf','U1254T1686881178
.pdf','2023-06-16 02:06:18','2023-06-16 02:06:18',NULL,'1254',NULL,NULL),
(2882,1194,'TOR','applicants_certifications/
U1194T1686881178.jpg','applicants_certifications','inbound4493909018045040831.jpg',
'U1194T1686881178.jpg','2023-06-16 02:06:18','2023-06-16
02:06:18',NULL,'1194',NULL,NULL),
(2883,1254,'ELIGIBILITY','applicants_certifications/
U1254T1686881202.pdf','applicants_certifications','civil service
eligibility.pdf','U1254T1686881202.pdf','2023-06-16 02:06:42','2023-06-16
02:06:42',NULL,'1254',NULL,NULL),(2884,1194,'TOR','applicants_certifications/
U1194T1686881223.jpg','applicants_certifications','inbound677701284674618301.jpg','
U1194T1686881223.jpg','2023-06-16 02:07:03','2023-06-16
02:07:03',NULL,'1194',NULL,NULL),(2885,1194,'TOR','applicants_certifications/
U1194T1686881251.jpg','applicants_certifications','inbound8674026286318176579.jpg',
'U1194T1686881251.jpg','2023-06-16 02:07:31','2023-06-16
02:07:31',NULL,'1194',NULL,NULL),(2886,1194,'COE','applicants_certifications/
U1194T1686881282.jpg','applicants_certifications','inbound8886009014843638314.jpg',
'U1194T1686881282.jpg','2023-06-16 02:08:02','2023-06-16
02:08:02',NULL,'1194',NULL,NULL),(2888,1254,'COE','applicants_certifications/
U1254T1686881335.pdf','applicants_certifications','COE
manning.pdf','U1254T1686881335.pdf','2023-06-16 02:08:55','2023-06-16
02:08:55',NULL,'1254',NULL,NULL),(2889,1194,'SWT','applicants_certifications/
U1194T1686881379.jpg','applicants_certifications','inbound4456309803787821509.jpg',
'U1194T1686881379.jpg','2023-06-16 02:09:39','2023-06-16
02:09:39',NULL,'1194',NULL,NULL),(2891,1194,'SWT','applicants_certifications/
U1194T1686881516.jpg','applicants_certifications','inbound3182891709185039146.jpg',
'U1194T1686881516.jpg','2023-06-16 02:11:56','2023-06-16
02:11:56',NULL,'1194',NULL,NULL),(2892,1194,'SWT','applicants_certifications/
U1194T1686881545.jpg','applicants_certifications','inbound7633299871655349705.jpg',
'U1194T1686881545.jpg','2023-06-16 02:12:25','2023-06-16
02:12:25',NULL,'1194',NULL,NULL),(2893,1194,'SWT','applicants_certifications/
U1194T1686881589.jpg','applicants_certifications','inbound5273648909842191119.jpg',
'U1194T1686881589.jpg','2023-06-16 02:13:09','2023-06-16
02:13:09',NULL,'1194',NULL,NULL),(2894,1254,'PDS','applicants_certifications/
U1254T1686881725.pdf','applicants_certifications','PDS.pdf','U1254T1686881725.pdf',
'2023-06-16 02:15:25','2023-06-16 02:15:25',NULL,'1254',NULL,NULL),
(2895,1254,'TOR','applicants_certifications/
U1254T1686882055.pdf','applicants_certifications','transcript of
records.pdf','U1254T1686882055.pdf','2023-06-16 02:20:55','2023-06-16
02:20:55',NULL,'1254',NULL,NULL),(2896,1254,'COE','applicants_certifications/
U1254T1686882137.pdf','applicants_certifications','proof of sea service with
performance ratings.pdf','U1254T1686882137.pdf','2023-06-16 02:22:17','2023-06-16
02:22:17',NULL,'1254',NULL,NULL),(2897,1254,'TOR','applicants_certifications/
U1254T1686882185.pdf','applicants_certifications','Diploma.pdf','U1254T1686882185.p
df','2023-06-16 02:23:05','2023-06-16 02:23:05',NULL,'1254',NULL,NULL),
(2898,1254,'PDS','applicants_certifications/
U1254T1686882215.pdf','applicants_certifications','work experience
sheet.pdf','U1254T1686882215.pdf','2023-06-16 02:23:35','2023-06-16
02:23:35',NULL,'1254',NULL,NULL),(2899,1254,'COE','applicants_certifications/
U1254T1686882281.pdf','applicants_certifications','job
description.pdf','U1254T1686882281.pdf','2023-06-16 02:24:41','2023-06-16
02:24:41',NULL,'1254',NULL,NULL),(2900,1112,'TOR','applicants_certifications/
U1112T1686882344.docx','applicants_certifications','OTR.docx','U1112T1686882344.doc
x','2023-06-16 02:25:44','2023-06-16 02:25:44',NULL,'1112',NULL,NULL),
(2901,1194,'SWT','applicants_certifications/
U1194T1686882475.jpg','applicants_certifications','inbound1358192910692410435.jpg',
'U1194T1686882475.jpg','2023-06-16 02:27:55','2023-06-16
02:27:55',NULL,'1194',NULL,NULL),
(2903,1112,'ELIGIBILITY','applicants_certifications/
U1112T1686882733.jpg','applicants_certifications','CERTIFICATE OF
ELIGIBILITY.jpg','U1112T1686882733.jpg','2023-06-16 02:32:13','2023-06-16
02:32:13',NULL,'1112',NULL,NULL),(2904,1048,'PDS','applicants_certifications/
U1048T1686883810.pdf','applicants_certifications','Personal Data
Sheet.pdf','U1048T1686883810.pdf','2023-06-16 02:50:10','2023-06-16
02:50:10',NULL,'1048',NULL,NULL),(2905,1048,'COE','applicants_certifications/
U1048T1686883863.pdf','applicants_certifications','Certificate of
Employment.pdf','U1048T1686883863.pdf','2023-06-16 02:51:03','2023-06-16
02:51:03',NULL,'1048',NULL,NULL),(2907,1112,'PDS','applicants_certifications/
U1112T1686884847.xlsx','applicants_certifications','Personal-Data-Sheet-CS-Form-
No.-212-Revised-2017.xlsx','U1112T1686884847.xlsx','2023-06-16 03:07:27','2023-06-
16 03:07:27',NULL,'1112',NULL,NULL),(2908,1258,'TOR','applicants_certifications/
U1258T1686884889.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_005.jpg','U1258T1686884889.jpg','2023-06-16 03:08:09','2023-06-16
03:08:09',NULL,'1258',NULL,NULL),(2909,1258,'TOR','applicants_certifications/
U1258T1686884911.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_006.jpg','U1258T1686884911.jpg','2023-06-16
03:08:31','2023-06-16 03:08:31',NULL,'1258',NULL,NULL),
(2910,1258,'TOR','applicants_certifications/
U1258T1686884926.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_007.jpg','U1258T1686884926.jpg','2023-06-16 03:08:46','2023-06-16
03:08:46',NULL,'1258',NULL,NULL),(2915,1159,'PDS','applicants_certifications/
U1159T1686885034.xlsx','applicants_certifications','CS Form No.
212.xlsx','U1159T1686885034.xlsx','2023-06-16 03:10:34','2023-06-16
03:10:34',NULL,'1159',NULL,NULL),
(2916,1258,'ELIGIBILITY','applicants_certifications/
U1258T1686885049.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_008.jpg','U1258T1686885049.jpg','2023-06-16 03:10:49','2023-06-16
03:10:49',NULL,'1258',NULL,NULL),
(2918,1258,'ELIGIBILITY','applicants_certifications/
U1258T1686885065.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_009.jpg','U1258T1686885065.jpg','2023-06-16 03:11:05','2023-06-16
03:11:05',NULL,'1258',NULL,NULL),(2919,1258,'PDS','applicants_certifications/
U1258T1686885094.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_001.jpg','U1258T1686885094.jpg','2023-06-16 03:11:34','2023-06-16
03:11:34',NULL,'1258',NULL,NULL),(2920,1258,'PDS','applicants_certifications/
U1258T1686885111.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_002.jpg','U1258T1686885111.jpg','2023-06-16 03:11:51','2023-06-16
03:11:51',NULL,'1258',NULL,NULL),(2921,1258,'PDS','applicants_certifications/
U1258T1686885128.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_003.jpg','U1258T1686885128.jpg','2023-06-16 03:12:08','2023-06-16
03:12:08',NULL,'1258',NULL,NULL),(2923,1258,'PDS','applicants_certifications/
U1258T1686885143.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_004.jpg','U1258T1686885143.jpg','2023-06-16 03:12:23','2023-06-16
03:12:23',NULL,'1258',NULL,NULL),(2925,1258,'SWT','applicants_certifications/
U1258T1686885177.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_020.jpg','U1258T1686885177.jpg','2023-06-16 03:12:57','2023-06-16
03:12:57',NULL,'1258',NULL,NULL),
(2928,1159,'ELIGIBILITY','applicants_certifications/
U1159T1686885221.jpg','applicants_certifications','inbound5169125022391431959.jpg',
'U1159T1686885221.jpg','2023-06-16 03:13:41','2023-06-16
03:13:41',NULL,'1159',NULL,NULL),(2930,1258,'SWT','applicants_certifications/
U1258T1686885237.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_021.jpg','U1258T1686885237.jpg','2023-06-16 03:13:57','2023-06-16
03:13:57',NULL,'1258',NULL,NULL),(2932,1258,'SWT','applicants_certifications/
U1258T1686885252.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_022.jpg','U1258T1686885252.jpg','2023-06-16 03:14:12','2023-06-16
03:14:12',NULL,'1258',NULL,NULL),(2934,1258,'SWT','applicants_certifications/
U1258T1686885266.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_023.jpg','U1258T1686885266.jpg','2023-06-16 03:14:26','2023-06-16
03:14:26',NULL,'1258',NULL,NULL),(2936,1258,'SWT','applicants_certifications/
U1258T1686885279.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_024.jpg','U1258T1686885279.jpg','2023-06-16 03:14:39','2023-06-16
03:14:39',NULL,'1258',NULL,NULL),(2938,1258,'SWT','applicants_certifications/
U1258T1686885292.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_025.jpg','U1258T1686885292.jpg','2023-06-16 03:14:52','2023-06-16
03:14:52',NULL,'1258',NULL,NULL),(2939,1258,'SWT','applicants_certifications/
U1258T1686885313.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_026.jpg','U1258T1686885313.jpg','2023-06-16 03:15:13','2023-06-16
03:15:13',NULL,'1258',NULL,NULL),(2940,1258,'SWT','applicants_certifications/
U1258T1686885335.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_027.jpg','U1258T1686885335.jpg','2023-06-16 03:15:35','2023-06-16
03:15:35',NULL,'1258',NULL,NULL),(2941,1258,'SWT','applicants_certifications/
U1258T1686885349.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_028.jpg','U1258T1686885349.jpg','2023-06-16 03:15:49','2023-06-16
03:15:49',NULL,'1258',NULL,NULL),(2942,1258,'SWT','applicants_certifications/
U1258T1686885362.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_029.jpg','U1258T1686885362.jpg','2023-06-16 03:16:02','2023-06-16
03:16:02',NULL,'1258',NULL,NULL),(2943,1258,'SWT','applicants_certifications/
U1258T1686885381.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_030.jpg','U1258T1686885381.jpg','2023-06-16 03:16:21','2023-06-16
03:16:21',NULL,'1258',NULL,NULL),(2944,1258,'SWT','applicants_certifications/
U1258T1686885397.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_031.jpg','U1258T1686885397.jpg','2023-06-16 03:16:37','2023-06-16
03:16:37',NULL,'1258',NULL,NULL),(2945,1258,'SWT','applicants_certifications/
U1258T1686885417.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_032.jpg','U1258T1686885417.jpg','2023-06-16 03:16:57','2023-06-16
03:16:57',NULL,'1258',NULL,NULL),(2948,1258,'SWT','applicants_certifications/
U1258T1686885459.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_033.jpg','U1258T1686885459.jpg','2023-06-16 03:17:39','2023-06-16
03:17:39',NULL,'1258',NULL,NULL),(2949,1258,'SWT','applicants_certifications/
U1258T1686885472.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_034.jpg','U1258T1686885472.jpg','2023-06-16 03:17:52','2023-06-16
03:17:52',NULL,'1258',NULL,NULL),(2950,1258,'SWT','applicants_certifications/
U1258T1686885488.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_035.jpg','U1258T1686885488.jpg','2023-06-16 03:18:08','2023-06-16
03:18:08',NULL,'1258',NULL,NULL),(2951,1258,'SWT','applicants_certifications/
U1258T1686885510.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_036.jpg','U1258T1686885510.jpg','2023-06-16 03:18:30','2023-06-16
03:18:30',NULL,'1258',NULL,NULL),(2952,1258,'SWT','applicants_certifications/
U1258T1686885525.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_037.jpg','U1258T1686885525.jpg','2023-06-16 03:18:45','2023-06-16
03:18:45',NULL,'1258',NULL,NULL),(2953,1258,'SWT','applicants_certifications/
U1258T1686885545.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_038.jpg','U1258T1686885545.jpg','2023-06-16 03:19:05','2023-06-16
03:19:05',NULL,'1258',NULL,NULL),(2954,1258,'SWT','applicants_certifications/
U1258T1686885564.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_039.jpg','U1258T1686885564.jpg','2023-06-16 03:19:24','2023-06-16
03:19:24',NULL,'1258',NULL,NULL),(2955,1258,'SWT','applicants_certifications/
U1258T1686885577.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_040.jpg','U1258T1686885577.jpg','2023-06-16 03:19:37','2023-06-16
03:19:37',NULL,'1258',NULL,NULL),(2956,45,'COE','applicants_certifications/
U45T1686885580.docx','applicants_certifications','Verse
1.docx','U45T1686885580.docx','2023-06-16 03:19:40','2023-06-16
03:19:40',NULL,'45',NULL,NULL),(2957,1258,'SWT','applicants_certifications/
U1258T1686885592.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_041.jpg','U1258T1686885592.jpg','2023-06-16 03:19:52','2023-06-16
03:19:52',NULL,'1258',NULL,NULL),(2958,1258,'TOR','applicants_certifications/
U1258T1686885604.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_042.jpg','U1258T1686885604.jpg','2023-06-16 03:20:04','2023-06-16
03:20:04',NULL,'1258',NULL,NULL),(2959,1258,'SWT','applicants_certifications/
U1258T1686885620.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_043.jpg','U1258T1686885620.jpg','2023-06-16 03:20:20','2023-06-16
03:20:20',NULL,'1258',NULL,NULL),(2960,1258,'SWT','applicants_certifications/
U1258T1686885643.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_042.jpg','U1258T1686885643.jpg','2023-06-16 03:20:43','2023-06-16
03:20:43',NULL,'1258',NULL,NULL),(2963,1258,'SWT','applicants_certifications/
U1258T1686885688.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_044.jpg','U1258T1686885688.jpg','2023-06-16 03:21:28','2023-06-16
03:21:28',NULL,'1258',NULL,NULL),(2964,1258,'SWT','applicants_certifications/
U1258T1686885737.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_045.jpg','U1258T1686885737.jpg','2023-06-16 03:22:17','2023-06-16
03:22:17',NULL,'1258',NULL,NULL),(2965,1258,'SWT','applicants_certifications/
U1258T1686885755.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_046.jpg','U1258T1686885755.jpg','2023-06-16 03:22:35','2023-06-16
03:22:35',NULL,'1258',NULL,NULL),(2966,1258,'SWT','applicants_certifications/
U1258T1686885777.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_047.jpg','U1258T1686885777.jpg','2023-06-16 03:22:57','2023-06-16
03:22:57',NULL,'1258',NULL,NULL),(2967,1258,'SWT','applicants_certifications/
U1258T1686885790.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_048.jpg','U1258T1686885790.jpg','2023-06-16 03:23:10','2023-06-16
03:23:10',NULL,'1258',NULL,NULL),(2969,1258,'SWT','applicants_certifications/
U1258T1686885811.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_049.jpg','U1258T1686885811.jpg','2023-06-16 03:23:31','2023-06-16
03:23:31',NULL,'1258',NULL,NULL),(2970,1258,'SWT','applicants_certifications/
U1258T1686885826.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_050.jpg','U1258T1686885826.jpg','2023-06-16 03:23:46','2023-06-16
03:23:46',NULL,'1258',NULL,NULL),(2973,1258,'COE','applicants_certifications/
U1258T1686886058.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_010.jpg','U1258T1686886058.jpg','2023-06-16 03:27:38','2023-06-16
03:27:38',NULL,'1258',NULL,NULL),(2977,1263,'TOR','applicants_certifications/
U1263T1686886378.pdf','applicants_certifications','TOR- SANTOS, JENNIFER
B..pdf','U1263T1686886378.pdf','2023-06-16 03:32:58','2023-06-16
03:32:58',NULL,'1263',NULL,NULL),(2978,1263,'COE','applicants_certifications/
U1263T1686886396.pdf','applicants_certifications','CERT. OF EMPLOYMENT-SANTOS,
JENNIFER.pdf','U1263T1686886396.pdf','2023-06-16 03:33:16','2023-06-16
03:33:16',NULL,'1263',NULL,NULL),(2979,1263,'SWT','applicants_certifications/
U1263T1686886419.pdf','applicants_certifications','CER
TIFICATE OF TRAININGS-SANTOS, JENNIFER B..pdf','U1263T1686886419.pdf','2023-06-16
03:33:39','2023-06-16 03:33:39',NULL,'1263',NULL,NULL),
(2981,1263,'ELIGIBILITY','applicants_certifications/
U1263T1686886458.pdf','applicants_certifications','COE-SANTOS, JENNIFER B.
(2).pdf','U1263T1686886458.pdf','2023-06-16 03:34:18','2023-06-16
03:34:18',NULL,'1263',NULL,NULL),(2982,1263,'PDS','applicants_certifications/
U1263T1686886477.pdf','applicants_certifications','Personal Data Sheet- SANTOS,
JENNIFER B. (2).pdf','U1263T1686886477.pdf','2023-06-16 03:34:37','2023-06-16
03:34:37',NULL,'1263',NULL,NULL),(2983,1225,'TOR','applicants_certifications/
U1225T1686888842.jpg','applicants_certifications','inbound5265393174185878678.jpg',
'U1225T1686888842.jpg','2023-06-16 04:14:02','2023-06-16
04:14:02',NULL,'1225',NULL,NULL),(2984,1225,'TOR','applicants_certifications/
U1225T1686888858.jpg','applicants_certifications','inbound3578129473474300736.jpg',
'U1225T1686888858.jpg','2023-06-16 04:14:18','2023-06-16
04:14:18',NULL,'1225',NULL,NULL),
(2985,1225,'ELIGIBILITY','applicants_certifications/
U1225T1686888875.jpg','applicants_certifications','inbound8532747944253792649.jpg',
'U1225T1686888875.jpg','2023-06-16 04:14:35','2023-06-16
04:14:35',NULL,'1225',NULL,NULL),(2987,1195,'TOR','applicants_certifications/
U1195T1686889366.pdf','applicants_certifications','OTR JC -
Grayscale_1.pdf','U1195T1686889366.pdf','2023-06-16 04:22:46','2023-06-16
04:22:46',NULL,'1195',NULL,NULL),(2989,1195,'COE','applicants_certifications/
U1195T1686889582.pdf','applicants_certifications','Certificate of
Employment.pdf','U1195T1686889582.pdf','2023-06-16 04:26:22','2023-06-16
04:26:22',NULL,'1195',NULL,NULL),(2990,1268,'TOR','applicants_certifications/
U1268T1686889767.pdf','applicants_certifications','Binha-on, Jessica -
TOR.pdf','U1268T1686889767.pdf','2023-06-16 04:29:28','2023-06-16
04:29:28',NULL,'1268',NULL,NULL),(2991,1195,'SWT','applicants_certifications/
U1195T1686889925.pdf','applicants_certifications','Computer Hardware Servicing
Training_1.pdf','U1195T1686889925.pdf','2023-06-16 04:32:05','2023-06-16
04:32:05',NULL,'1195',NULL,NULL),(2992,1195,'SWT','applicants_certifications/
U1195T1686889951.pdf','applicants_certifications','Mountain Province_2022
Philippine Identification System Task Force
Training.pdf','U1195T1686889951.pdf','2023-06-16 04:32:31','2023-06-16
04:32:31',NULL,'1195',NULL,NULL),(2993,1268,'COE','applicants_certifications/
U1268T1686889972.pdf','applicants_certifications','Service
Record.pdf','U1268T1686889972.pdf','2023-06-16 04:32:52','2023-06-16
04:32:52',NULL,'1268',NULL,NULL),
(2994,1268,'ELIGIBILITY','applicants_certifications/
U1268T1686890003.pdf','applicants_certifications','PRC
Rating.pdf','U1268T1686890003.pdf','2023-06-16 04:33:23','2023-06-16
04:33:23',NULL,'1268',NULL,NULL),(2995,1268,'SWT','applicants_certifications/
U1268T1686890040.pdf','applicants_certifications','NC
II.pdf','U1268T1686890040.pdf','2023-06-16 04:34:00','2023-06-16
04:34:00',NULL,'1268',NULL,NULL),(2996,1268,'PDS','applicants_certifications/
U1268T1686890196.xlsx','applicants_certifications','Jessica
PDS.xlsx','U1268T1686890196.xlsx','2023-06-16 04:36:36','2023-06-16
04:36:36',NULL,'1268',NULL,NULL),(2997,374,'COE','applicants_certifications/
U374T1686890623.pdf','applicants_certifications','CERTIFICATE OF
EMPLOYMENT.pdf','U374T1686890623.pdf','2023-06-16 04:43:43','2023-06-16
04:43:43',NULL,'374',NULL,NULL),(2998,1251,'TOR','applicants_certifications/
U1251T1686891524.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_005.jpg','U1251T1686891524.jpg','2023-06-16 04:58:44','2023-06-16
04:58:44',NULL,'1251',NULL,NULL),(2999,1251,'TOR','applicants_certifications/
U1251T1686891557.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_006.jpg','U1251T1686891557.jpg','2023-06-16 04:59:17','2023-06-16
04:59:17',NULL,'1251',NULL,NULL),(3000,1251,'TOR','applicants_certifications/
U1251T1686891632.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_007.jpg','U1251T1686891632.jpg','2023-06-16 05:00:32','2023-06-16
05:00:32',NULL,'1251',NULL,NULL),
(3001,374,'ELIGIBILITY','applicants_certifications/
U374T1686892086.pdf','applicants_certifications','BOARD
RATING.pdf','U374T1686892086.pdf','2023-06-16 05:08:06','2023-06-16
05:08:06',NULL,'374',NULL,NULL),
(3002,374,'ELIGIBILITY','applicants_certifications/
U374T1686892151.pdf','applicants_certifications','CSC PROF.
ELIGIBILITY.pdf','U374T1686892151.pdf','2023-06-16 05:09:11','2023-06-16
05:09:11',NULL,'374',NULL,NULL),
(3003,374,'ELIGIBILITY','applicants_certifications/
U374T1686892204.pdf','applicants_certifications','CSC ELIGIBILITY PD
907.pdf','U374T1686892204.pdf','2023-06-16 05:10:04','2023-06-16
05:10:04',NULL,'374',NULL,NULL),(3004,1274,'SWT','applicants_certifications/
U1274T1686892510.pdf','applicants_certifications','img20221016_08470961.pdf','U1274
T1686892510.pdf','2023-06-16 05:15:10','2023-06-16
05:15:10',NULL,'1274',NULL,NULL),(3005,1199,'TOR','applicants_certifications/
U1199T1686892552.pdf','applicants_certifications','1.
TOR20230615_16245265.pdf','U1199T1686892552.pdf','2023-06-16 05:15:52','2023-06-16
05:15:52',NULL,'1199',NULL,NULL),(3006,799,'TOR','applicants_certifications/
U799T1686892600.pdf','applicants_certifications','LUCANTI,
SUSETH_TOR.pdf','U799T1686892600.pdf','2023-06-16 05:16:40','2023-06-16
05:16:40',NULL,'799',NULL,NULL),(3007,1199,'COE','applicants_certifications/
U1199T1686892614.pdf','applicants_certifications','2. SERVICE RECORD AND
CERTIFICATE OF EMPLOYMENT.pdf','U1199T1686892614.pdf','2023-06-16 05:16:54','2023-
06-16 05:16:54',NULL,'1199',NULL,NULL),
(3008,1199,'SWT','applicants_certifications/
U1199T1686892634.pdf','applicants_certifications','1.
TRAININGS20230615_16353322.pdf','U1199T1686892634.pdf','2023-06-16 05:17:14','2023-
06-16 05:17:14',NULL,'1199',NULL,NULL),
(3009,1199,'ELIGIBILITY','applicants_certifications/
U1199T1686892665.pdf','applicants_certifications','2. PRC
ID20230615_16272883.pdf','U1199T1686892665.pdf','2023-06-16 05:17:45','2023-06-16
05:17:45',NULL,'1199',NULL,NULL),(3010,799,'SWT','applicants_certifications/
U799T1686892671.pdf','applicants_certifications','CPFA-02-067-SUSETH
LUCANTI.pdf','U799T1686892671.pdf','2023-06-16 05:17:51','2023-06-16
05:17:51',NULL,'799',NULL,NULL),(3011,1199,'PDS','applicants_certifications/
U1199T1686892701.pdf','applicants_certifications','PDS.pdf','U1199T1686892701.pdf',
'2023-06-16 05:18:21','2023-06-16 05:18:21',NULL,'1199',NULL,NULL),
(3012,799,'SWT','applicants_certifications/
U799T1686892729.pdf','applicants_certifications','SUSETH
LUCANTI.pdf','U799T1686892729.pdf','2023-06-16 05:18:49','2023-06-16
05:18:49',NULL,'799',NULL,NULL),(3013,374,'SWT','applicants_certifications/
U374T1686892893.pdf','applicants_certifications','PCAP Regional Convention
Certificate on Data Privacy.pdf','U374T1686892893.pdf','2023-06-16 05:21:33','2023-
06-16 05:21:33',NULL,'374',NULL,NULL),(3014,374,'SWT','applicants_certifications/
U374T1686892947.pdf','applicants_certifications','PIFSA Fraud Prevention and
Investigation Certificate.pdf','U374T1686892947.pdf','2023-06-16 05:22:27','2023-
06-16 05:22:27',NULL,'374',NULL,NULL),(3015,374,'SWT','applicants_certifications/
U374T1686893083.pdf','applicants_certifications','Training Certificate on Cognitive
Interviewing Techniques.pdf','U374T1686893083.pdf','2023-06-16 05:24:43','2023-06-
16 05:24:43',NULL,'374',NULL,NULL),(3016,374,'SWT','applicants_certifications/
U374T1686893114.pdf','applicants_certifications','Training Certificate on
Correctional Administration.pdf','U374T1686893114.pdf','2023-06-16 05:25:14','2023-
06-16 05:25:14',NULL,'374',NULL,NULL),(3017,374,'SWT','applicants_certifications/
U374T1686893146.pdf','applicants_certifications','Training Certificate on Criminal
Law Book 1 &2.pdf','U374T1686893146.pdf','2023-06-16 05:25:46','2023-06-16
05:25:46',NULL,'374',NULL,NULL),(3018,374,'SWT','applicants_certifications/
U374T1686893313.pdf','applicants_certifications','Training Certificate on Data
Privacy and Safety Issues.pdf','U374T1686893313.pdf','2023-06-16 05:28:33','2023-
06-16 05:28:33',NULL,'374',NULL,NULL),(3019,374,'SWT','applicants_certifications/
U374T1686893344.pdf','applicants_certifications','Training Certificate on Mental
Health Awareness.pdf','U374T1686893344.pdf','2023-06-16 05:29:04','2023-06-16
05:29:04',NULL,'374',NULL,NULL),(3020,374,'SWT','applicants_certifications/
U374T1686893372.pdf','applicants_certifications','Training Certificate on Protocols
of Investigation and Intelligence.pdf','U374T1686893372.pdf','2023-06-16
05:29:32','2023-06-16 05:29:32',NULL,'374',NULL,NULL),
(3021,374,'SWT','applicants_certifications/
U374T1686893444.pdf','applicants_certifications','Training Certificate on Skills
Enhancement.pdf','U374T1686893444.pdf','2023-06-16 05:30:44','2023-06-16
05:30:44',NULL,'374',NULL,NULL),(3022,374,'SWT','applicants_certifications/
U374T1686893535.pdf','applicants_certifications','Training List on Data Privacy and
safety Issues 1.1.pdf','U374T1686893535.pdf','2023-06-16 05:32:15','2023-06-16
05:32:15',NULL,'374',NULL,NULL),(3023,374,'SWT','applicants_certifications/
U374T1686893649.pdf','applicants_certifications','WEBINAR CERT INTRO TO CYBERCRIME
SECURITY.pdf','U374T1686893649.pdf','2023-06-16 05:34:09','2023-06-16
05:34:09',NULL,'374',NULL,NULL),(3024,374,'SWT','applicants_certifications/
U374T1686893807.pdf','applicants_certifications','WEBINAR CERT ON INDUSTRIAL
SECURITY CONCEPTS.pdf','U374T1686893807.pdf','2023-06-16 05:36:47','2023-06-16
05:36:47',NULL,'374',NULL,NULL),(3025,1251,'COE','applicants_certifications/
U1251T1686894392.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_010.jpg','U1251T1686894392.jpg','2023-06-16 05:46:32','2023-06-16
05:46:32',NULL,'1251',NULL,NULL),
(3027,1251,'ELIGIBILITY','applicants_certifications/
U1251T1686894427.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_008.jpg','U1251T1686894427.jpg','2023-06-16 05:47:07','2023-06-16
05:47:07',NULL,'1251',NULL,NULL),
(3028,1251,'ELIGIBILITY','applicants_certifications/U1251T16868944
48.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_009.jpg','U1251T1686894448.jpg','2023-06-16 05:47:28','2023-06-16
05:47:28',NULL,'1251',NULL,NULL),(3029,1251,'PDS','applicants_certifications/
U1251T1686894479.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_001.jpg','U1251T1686894479.jpg','2023-06-16 05:47:59','2023-06-16
05:47:59',NULL,'1251',NULL,NULL),(3030,1251,'PDS','applicants_certifications/
U1251T1686894492.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_002.jpg','U1251T1686894492.jpg','2023-06-16 05:48:12','2023-06-16
05:48:12',NULL,'1251',NULL,NULL),(3031,1251,'PDS','applicants_certifications/
U1251T1686894513.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_003.jpg','U1251T1686894513.jpg','2023-06-16 05:48:33','2023-06-16
05:48:33',NULL,'1251',NULL,NULL),(3032,1251,'PDS','applicants_certifications/
U1251T1686894540.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_004.jpg','U1251T1686894540.jpg','2023-06-16 05:49:00','2023-06-16
05:49:00',NULL,'1251',NULL,NULL),
(3034,1275,'ELIGIBILITY','applicants_certifications/
U1275T1686894711.png','applicants_certifications','CSC
PROF.png','U1275T1686894711.png','2023-06-16 05:51:51','2023-06-16
05:51:51',NULL,'1275',NULL,NULL),(3035,1251,'SWT','applicants_certifications/
U1251T1686894881.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_020.jpg','U1251T1686894881.jpg','2023-06-16 05:54:41','2023-06-16
05:54:41',NULL,'1251',NULL,NULL),(3036,1251,'SWT','applicants_certifications/
U1251T1686894914.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_021.jpg','U1251T1686894914.jpg','2023-06-16 05:55:14','2023-06-16
05:55:14',NULL,'1251',NULL,NULL),(3037,1251,'SWT','applicants_certifications/
U1251T1686894939.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_022.jpg','U1251T1686894939.jpg','2023-06-16 05:55:39','2023-06-16
05:55:39',NULL,'1251',NULL,NULL),(3038,1251,'SWT','applicants_certifications/
U1251T1686894965.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_023.jpg','U1251T1686894965.jpg','2023-06-16 05:56:05','2023-06-16
05:56:05',NULL,'1251',NULL,NULL),(3039,1251,'SWT','applicants_certifications/
U1251T1686894995.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_024.jpg','U1251T1686894995.jpg','2023-06-16 05:56:35','2023-06-16
05:56:35',NULL,'1251',NULL,NULL),(3040,1251,'SWT','applicants_certifications/
U1251T1686895011.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_025.jpg','U1251T1686895011.jpg','2023-06-16 05:56:51','2023-06-16
05:56:51',NULL,'1251',NULL,NULL),(3041,1251,'SWT','applicants_certifications/
U1251T1686895027.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_026.jpg','U1251T1686895027.jpg','2023-06-16 05:57:07','2023-06-16
05:57:07',NULL,'1251',NULL,NULL),(3042,1251,'SWT','applicants_certifications/
U1251T1686895041.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_027.jpg','U1251T1686895041.jpg','2023-06-16 05:57:21','2023-06-16
05:57:21',NULL,'1251',NULL,NULL),(3043,1251,'SWT','applicants_certifications/
U1251T1686895056.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_028.jpg','U1251T1686895056.jpg','2023-06-16 05:57:36','2023-06-16
05:57:36',NULL,'1251',NULL,NULL),(3044,1251,'SWT','applicants_certifications/
U1251T1686895077.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_029.jpg','U1251T1686895077.jpg','2023-06-16 05:57:57','2023-06-16
05:57:57',NULL,'1251',NULL,NULL),(3045,1251,'SWT','applicants_certifications/
U1251T1686895103.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_030.jpg','U1251T1686895103.jpg','2023-06-16 05:58:23','2023-06-16
05:58:23',NULL,'1251',NULL,NULL),(3046,1251,'SWT','applicants_certifications/
U1251T1686895123.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_031.jpg','U1251T1686895123.jpg','2023-06-16 05:58:43','2023-06-16
05:58:43',NULL,'1251',NULL,NULL),(3047,1251,'SWT','applicants_certifications/
U1251T1686895155.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_032.jpg','U1251T1686895155.jpg','2023-06-16 05:59:15','2023-06-16
05:59:15',NULL,'1251',NULL,NULL),(3048,1251,'SWT','applicants_certifications/
U1251T1686895176.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_033.jpg','U1251T1686895176.jpg','2023-06-16 05:59:36','2023-06-16
05:59:36',NULL,'1251',NULL,NULL),(3049,1251,'SWT','applicants_certifications/
U1251T1686895199.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_034.jpg','U1251T1686895199.jpg','2023-06-16 05:59:59','2023-06-16
05:59:59',NULL,'1251',NULL,NULL),(3050,1251,'SWT','applicants_certifications/
U1251T1686895202.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_034.jpg','U1251T1686895202.jpg','2023-06-16 06:00:02','2023-06-16
06:00:02',NULL,'1251',NULL,NULL),(3051,1251,'SWT','applicants_certifications/
U1251T1686895216.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_035.jpg','U1251T1686895216.jpg','2023-06-16 06:00:16','2023-06-16
06:00:16',NULL,'1251',NULL,NULL),(3052,1251,'SWT','applicants_certifications/
U1251T1686895233.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_036.jpg','U1251T1686895233.jpg','2023-06-16 06:00:33','2023-06-16
06:00:33',NULL,'1251',NULL,NULL),(3053,1251,'SWT','applicants_certifications/
U1251T1686895248.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_037.jpg','U1251T1686895248.jpg','2023-06-16 06:00:48','2023-06-16
06:00:48',NULL,'1251',NULL,NULL),(3054,1251,'SWT','applicants_certifications/
U1251T1686895265.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_038.jpg','U1251T1686895265.jpg','2023-06-16 06:01:05','2023-06-16
06:01:05',NULL,'1251',NULL,NULL),(3055,1251,'SWT','applicants_certifications/
U1251T1686895277.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_039.jpg','U1251T1686895277.jpg','2023-06-16 06:01:17','2023-06-16
06:01:17',NULL,'1251',NULL,NULL),(3056,1251,'SWT','applicants_certifications/
U1251T1686895304.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_040.jpg','U1251T1686895304.jpg','2023-06-16 06:01:44','2023-06-16
06:01:44',NULL,'1251',NULL,NULL),(3057,1251,'SWT','applicants_certifications/
U1251T1686895318.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_041.jpg','U1251T1686895318.jpg','2023-06-16 06:01:58','2023-06-16
06:01:58',NULL,'1251',NULL,NULL),(3058,1251,'SWT','applicants_certifications/
U1251T1686895332.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_042.jpg','U1251T1686895332.jpg','2023-06-16 06:02:12','2023-06-16
06:02:12',NULL,'1251',NULL,NULL),(3059,1251,'SWT','applicants_certifications/
U1251T1686895344.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_043.jpg','U1251T1686895344.jpg','2023-06-16 06:02:24','2023-06-16
06:02:24',NULL,'1251',NULL,NULL),(3060,1251,'SWT','applicants_certifications/
U1251T1686895362.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_044.jpg','U1251T1686895362.jpg','2023-06-16 06:02:42','2023-06-16
06:02:42',NULL,'1251',NULL,NULL),(3061,1251,'SWT','applicants_certifications/
U1251T1686895383.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_045.jpg','U1251T1686895383.jpg','2023-06-16 06:03:03','2023-06-16
06:03:03',NULL,'1251',NULL,NULL),(3062,1251,'SWT','applicants_certifications/
U1251T1686895400.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_046.jpg','U1251T1686895400.jpg','2023-06-16 06:03:20','2023-06-16
06:03:20',NULL,'1251',NULL,NULL),(3063,1251,'SWT','applicants_certifications/
U1251T1686895412.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_047.jpg','U1251T1686895412.jpg','2023-06-16 06:03:32','2023-06-16
06:03:32',NULL,'1251',NULL,NULL),(3064,1251,'SWT','applicants_certifications/
U1251T1686895432.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_048.jpg','U1251T1686895432.jpg','2023-06-16 06:03:52','2023-06-16
06:03:52',NULL,'1251',NULL,NULL),(3065,1251,'SWT','applicants_certifications/
U1251T1686895449.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_049.jpg','U1251T1686895449.jpg','2023-06-16 06:04:09','2023-06-16
06:04:09',NULL,'1251',NULL,NULL),(3066,1251,'SWT','applicants_certifications/
U1251T1686895464.jpg','applicants_certifications','EMILYNE DOMINGO PDF
FILE_050.jpg','U1251T1686895464.jpg','2023-06-16 06:04:24','2023-06-16
06:04:24',NULL,'1251',NULL,NULL),(3068,1232,'TOR','applicants_certifications/
U1232T1686896601.pdf','applicants_certifications','inbound4126201207150557528.pdf',
'U1232T1686896601.pdf','2023-06-16 06:23:21','2023-06-16
06:23:21',NULL,'1232',NULL,NULL),
(3072,1232,'ELIGIBILITY','applicants_certifications/
U1232T1686896765.jpg','applicants_certifications','inbound2459819967746642179.jpg',
'U1232T1686896765.jpg','2023-06-16 06:26:05','2023-06-16
06:26:05',NULL,'1232',NULL,NULL),
(3074,1232,'ELIGIBILITY','applicants_certifications/
U1232T1686896796.jpg','applicants_certifications','inbound1679751066712298644.jpg',
'U1232T1686896796.jpg','2023-06-16 06:26:36','2023-06-16
06:26:36',NULL,'1232',NULL,NULL),(3076,1232,'PDS','applicants_certifications/
U1232T1686896851.pdf','applicants_certifications','inbound4285051735995396370.pdf',
'U1232T1686896851.pdf','2023-06-16 06:27:31','2023-06-16
06:27:31',NULL,'1232',NULL,NULL),(3081,1275,'TOR','applicants_certifications/
U1275T1686897348.png','applicants_certifications','TOR
MPA.png','U1275T1686897348.png','2023-06-16 06:35:48','2023-06-16
06:35:48',NULL,'1275',NULL,NULL),
(3085,1275,'ELIGIBILITY','applicants_certifications/
U1275T1686897436.jpg','applicants_certifications','NLE
RATING.jpg','U1275T1686897436.jpg','2023-06-16 06:37:16','2023-06-16
06:37:16',NULL,'1275',NULL,NULL),(3087,1278,'TOR','applicants_certifications/
U1278T1686898310.pdf','applicants_certifications','TOR.pdf','U1278T1686898310.pdf',
'2023-06-16 06:51:50','2023-06-16 06:51:50',NULL,'1278',NULL,NULL),
(3089,1278,'COE','applicants_certifications/
U1278T1686898332.pdf','applicants_certifications','Certificate of
Employment.pdf','U1278T1686898332.pdf','2023-06-16 06:52:12','2023-06-16
06:52:12',NULL,'1278',NULL,NULL),
(3092,1278,'ELIGIBILITY','applicants_certifications/
U1278T1686898365.pdf','applicants_certifications','eligibility.pdf','U1278T16868983
65.pdf','2023-06-16 06:52:45','2023-06-16 06:52:45',NULL,'1278',NULL,NULL),
(3094,1278,'PDS','applicants_certifications/
U1278T1686898706.pdf','applicants_certifications','Personal Data
Sheet.pdf','U1278T1686898706.pdf','2023-06-16 06:58:26','2023-06-16
06:58:26',NULL,'1278',NULL,NULL),
(3098,1278,'ELIGIBILITY','applicants_certifications/
U1278T1686900280.pdf','applicants_certifications','CamScanner 06-16-2023
15.09.pdf','U1278T1686900280.pdf','2023-06-16 07:24:40','2023-06-16
07:24:40',NULL,'1278',NULL,NULL),
(3099,1278,'ELIGIBILITY','applicants_certifications/
U1278T1686900282.pdf','applicants_certifications','CamScanner 06-16-2023
15.09.pdf','U1278T1686900282.pdf','2023-06-16 07:24:42','2023-06-16
07:24:42',NULL,'1278',NULL,NULL),(3103,1157,'PDS','applicants_certifications/
U1157T1686901585.pdf','applicants_certifications','PDS.pdf','U1157T1686901585.pdf',
'2023-06-16 07:46:25','2023-06-16 07:46:25',NULL,'1157',NULL,NULL),
(3104,1275,'TOR','applicants_certifications/
U1275T1686901697.jpg','applicants_certifications','TOR BS
ACCOUNTANCY.jpg','U1275T1686901697.jpg','2023-06-16 07:48:17','2023-06-16
07:48:17',NULL,'1275',NULL,NULL),(3107,1283,'TOR','applicants_certifications/
U1283T1686902148.pdf','applicants_certifications','transcript of
records.pdf','U1283T1686902148.pdf','2023-06-16 07:55:48','2023-06-16
07:55:48',NULL,'1283',NULL,NULL),(3108,910,'TOR','applicants_certifications/
U910T1686902882.pdf','applicants_certifications','TOR pg.
1.pdf','U910T1686902882.pdf','2023-06-16 08:08:02','2023-06-16
08:08:02',NULL,'910',NULL,NULL),(3109,910,'TOR','applicants_certifications/
U910T1686902941.pdf','applicants_certifications','TOR pg.
2.pdf','U910T1686902941.pdf','2023-06-16 08:09:01','2023-06-16
08:09:01',NULL,'910',NULL,NULL),(3110,910,'TOR','applicants_certifications/
U910T1686903010.pdf','applicants_certifications','TOR pg.
3.pdf','U910T1686903010.pdf','2023-06-16 08:10:10','2023-06-16
08:10:10',NULL,'910',NULL,NULL),(3111,1283,'COE','applicants_certifications/
U1283T1686903064.pdf','applicants_certifications','CERTIFICATE OF
EMPLOYMENT.pdf','U1283T1686903064.pdf','2023-06-16 08:11:04','2023-06-16
08:11:04',NULL,'1283',NULL,NULL),(3112,374,'SWT','applicants_certifications/
U374T1686903269.pdf','applicants_certifications','WEBINAR CERT ON QUESTIONED
DOCUMENTS.pdf','U374T1686903269.pdf','2023-06-16 08:14:29','2023-06-16
08:14:29',NULL,'374',NULL,NULL),(3113,374,'SWT','applicants_certifications/
U374T1686903365.pdf','applicants_certifications','WEBINAR CERT
POLYGRAPHY.pdf','U374T1686903365.pdf','2023-06-16 08:16:05','2023-06-16
08:16:05',NULL,'374',NULL,NULL),(3120,1275,'TOR','applicants_certifications/
U1275T1686903521.jpg','applicants_certifications','TOR BS
NURSING.jpg','U1275T1686903521.jpg','2023-06-16 08:18:41','2023-06-16
08:18:41',NULL,'1275',NULL,NULL),(3121,374,'SWT','applicants_certifications/
U374T1686903556.pdf','applicants_certifications','Human Rights Speaker
Certificate.pdf','U374T1686903556.pdf','2023-06-16 08:19:16','2023-06-16
08:19:16',NULL,'374',NULL,NULL),
(3122,1283,'ELIGIBILITY','applicants_certifications/
U1283T1686903594.pdf','applicants_certifications','ELIGIBILITY.pdf','U1283T16869035
94.pdf','2023-06-16 08:19:54','2023-06-16 08:19:54',NULL,'1283',NULL,NULL),
(3123,374,'SWT','applicants_certifications/
U374T1686903626.pdf','applicants_certifications','DSWD Brangay Appreciation
Certitficate.pdf','U374T1686903626.pdf','2023-06-16 08:20:26','2023-06-16
08:20:26',NULL,'374',NULL,NULL),(3125,1283,'PDS','applicants_certifications/
U1283T1686903984.pdf','applicants_certifications','PDS FINAL
2.pdf','U1283T1686903984.pdf','2023-06-16 08:26:24','2023-06-16
08:26:24',NULL,'1283',NULL,NULL),(3126,1283,'SWT','applicants_certifications/
U1283T1686904178.pdf','applicants_certifications','CERTIFICATES AND
TRAININGS.pdf','U1283T1686904178.pdf','2023-06-16 08:29:38','2023-06-16
08:29:38',NULL,'1283',NULL,NULL),(3127,1157,'TOR','applicants_certifications/
U1157T1686904599.pdf','applicants_certifications','TOR.pdf','U1157T1686904599.pdf',
'2023-06-16 08:36:39','2023-06-16 08:36:39',NULL,'1157',NULL,NULL),
(3128,1157,'SWT','applicants_certifications/
U1157T1686905381.pdf','applicants_certifications','Training
Certificates.pdf','U1157T1686905381.pdf','2023-06-16 08:49:41','2023-06-16
08:49:41',NULL,'1157',NULL,NULL),(3131,1281,'TOR','applicants_certifications/
U1281T1686909829.jpg','applicants_certifications','inbound6460940306777366804.jpg',
'U1281T1686909829.jpg','2023-06-16 10:03:49','2023-06-16
10:03:49',NULL,'1281',NULL,NULL),(3132,1281,'TOR','applicants_certifications/
U1281T1686909860.jpg','applicants_certifications','inbound8668730244667870590.jpg',
'U1281T1686909860.jpg','2023-06-16 10:04:20','2023-06-16
10:04:20',NULL,'1281',NULL,NULL),(3134,1256,'COE','applicants_certifications/
U1256T1686914634.pdf','applicants_certifications','CERTIFICATE OF
EMPLOYMENT.pdf','U1256T1686914634.pdf','2023-06-16 11:23:54','2023-06-16
11:23:54',NULL,'1256',NULL,NULL),(3135,1256,'COE','applicants_certifications/
U1256T1686914667.pdf','applicants_certifications','PERFORMANCE
RATING.pdf','U1256T1686914667.pdf','2023-06-16 11:24:27','2023-06-16
11:24:27',NULL,'1256',NULL,NULL),(3137,1256,'SWT','applicants_certifications/
U1256T1686914722.pdf','applicants_certifications','SEMINARS.pdf','U1256T1686914722.
pdf','2023-06-16 11:25:22','2023-06-16 11:25:22',NULL,'1256',NULL,NULL),
(3138,1256,'ELIGIBILITY','applicants_certifications/
U1256T1686914744.pdf','applicants_certifications','PRC ID AND
RATING.pdf','U1256T1686914744.pdf','2023-06-16 11:25:44','2023-06-16
11:25:44',NULL,'1256',NULL,NULL),(3139,1247,'PDS','applicants_certifications/
U1247T1686915466.pdf','applicants_certifications','PDS2.pdf','U1247T1686915466.pdf'
,'2023-06-16 11:37:46','2023-06-16 11:37:46',NULL,'1247',NULL,NULL),
(3140,1256,'TOR','applicants_certifications/
U1256T1686915570.pdf','applicants_certifications','APPLICATION
LETTER.pdf','U1256T1686915570.pdf','2023-06-16 11:39:30','2023-06-16
11:39:30',NULL,'1256',NULL,NULL),(3141,1256,'TOR','applicants_certifications/
U1256T1686915584.pdf','applicants_certifications','TRANSCRIPT OF
RECORD.pdf','U1256T1686915584.pdf','2023-06-16 11:39:44','2023-06-16
11:39:44',NULL,'1256',NULL,NULL),(3142,1256,'PDS','applicants_certifications/
U1256T1686915870.pdf','applicants_certifications','PDS-1
(1).pdf','U1256T1686915870.pdf','2023-06-16 11:44:30','2023-06-16
11:44:30',NULL,'1256',NULL,NULL),
(3143,1240,'ELIGIBILITY','applicants_certifications/
U1240T1686916302.pdf','applicants_certifications','Civil Service
Certificate.pdf','U1240T1686916302.pdf','2023-06-16 11:51:42','2023-06-16
11:51:42',NULL,'1240',NULL,NULL),(3144,1240,'PDS','applicants_certifications/
U1240T1686916331.pdf','applicants_certifications','Personal Data
Sheet.pdf','U1240T1686916331.pdf','2023-06-16 11:52:11','2023-06-16
11:52:11',NULL,'1240',NULL,NULL),(3145,1285,'TOR','applicants_certifications/
U1285T1686917035.pdf','applicants_certifications','TOR.pdf','U1285T1686917035.pdf',
'2023-06-16 12:03:55','2023-06-16 12:03:55',NULL,'1285',NULL,NULL),
(3146,1285,'COE','applicants_certifications/
U1285T1686917129.pdf','applicants_certifications','COE.pdf','U1285T1686917129.pdf',
'2023-06-16 12:05:29','2023-06-16 12:05:29',NULL,'1285',NULL,NULL),
(3147,1256,'PDS','applicants_certifications/
U1256T1686917456.pdf','applicants_certifications','PDS-
2.pdf','U1256T1686917456.pdf','2023-06-16 12:10:56','2023-06-16
12:10:56',NULL,'1256',NULL,NULL),(3148,105,'PDS','applicants_certifications/
U105T1686917674.pdf','applicants_certifications','inbound4225426724994851369.pdf','
U105T1686917674.pdf','2023-06-16 12:14:34','2023-06-16
12:14:34',NULL,'105',NULL,NULL),(3149,105,'PDS','applicants_certifications/
U105T1686917745.pdf','applicants_certifications','inbound1833594331970933451.pdf','
U105T1686917745.pdf','2023-06-16 12:15:45','2023-06-16
12:15:45',NULL,'105',NULL,NULL),(3150,105,'PDS','applicants_certifications/
U105T1686917775.pdf','applicants_certifications','inbound2461248719446222455.pdf','
U105T1686917775.pdf','2023-06-16 12:16:15','2023-06-16
12:16:15',NULL,'105',NULL,NULL),(3151,105,'PDS','applicants_certifications/
U105T1686917810.pdf','applicants_certifications','inbound5986496031914547026.pdf','
U105T1686917810.pdf','2023-06-16 12:16:50','2023-06-16
12:16:50',NULL,'105',NULL,NULL),(3152,105,'PDS','applicants_certifications/
U105T1686917842.pdf','applicants_certifications','inbound890756531395985787.pdf','U
105T1686917842.pdf','2023-06-16 12:17:22','2023-06-16
12:17:22',NULL,'105',NULL,NULL),(3153,105,'PDS','applicants_certifications/
U105T1686917883.pdf','applicants_certifications','inbound1689541952241767243.pdf','
U105T1686917883.pdf','2023-06-16 12:18:03','2023-06-16
12:18:03',NULL,'105',NULL,NULL),
(3154,105,'ELIGIBILITY','applicants_certifications/
U105T1686918031.jpg','applicants_certifications','inbound3299328171761598845.jpg','
U105T1686918031.jpg','2023-06-16 12:20:31','2023-06-16
12:20:31',NULL,'105',NULL,NULL),
(3156,1285,'ELIGIBILITY','applicants_certifications/
U1285T1686918089.pdf','applicants_certifications','ID.pdf','U1285T1686918089.pdf','
2023-06-16 12:21:29','2023-06-16 12:21:29',NULL,'1285',NULL,NULL),
(3157,105,'SWT','applicants_certifications/
U105T1686918100.pdf','applicants_certifications','inbound3540868385893347660.pdf','
U105T1686918100.pdf','2023-06-16 12:21:40','2023-06-16
12:21:40',NULL,'105',NULL,NULL),(3158,1285,'SWT','applicants_certifications/
U1285T1686918124.pdf','applicants_certifications','CERTIFICATE OF
TRAINING.pdf','U1285T1686918124.pdf','2023-06-16 12:22:04','2023-06-16
12:22:04',NULL,'1285',NULL,NULL),(3159,105,'COE','applicants_certifications/
U105T1686918167.pdf','applicants_certifications','inbound110590210414711821.pdf','U
105T1686918167.pdf','2023-06-16 12:22:47','2023-06-16
12:22:47',NULL,'105',NULL,NULL),(3160,105,'COE','applicants_certifications/
U105T1686918192.pdf','applicants_certifications','inbound687692108196
6732060.pdf','U105T1686918192.pdf','2023-06-16 12:23:12','2023-06-16
12:23:12',NULL,'105',NULL,NULL),(3161,105,'COE','applicants_certifications/
U105T1686918214.pdf','applicants_certifications','inbound3216560716910664048.pdf','
U105T1686918214.pdf','2023-06-16 12:23:34','2023-06-16
12:23:34',NULL,'105',NULL,NULL),(3162,105,'TOR','applicants_certifications/
U105T1686918257.pdf','applicants_certifications','inbound4518383173646944583.pdf','
U105T1686918257.pdf','2023-06-16 12:24:17','2023-06-16
12:24:17',NULL,'105',NULL,NULL),(3163,105,'TOR','applicants_certifications/
U105T1686918276.pdf','applicants_certifications','inbound1925243240955372083.pdf','
U105T1686918276.pdf','2023-06-16 12:24:36','2023-06-16
12:24:36',NULL,'105',NULL,NULL),(3164,105,'TOR','applicants_certifications/
U105T1686918309.pdf','applicants_certifications','inbound7507522241284985951.pdf','
U105T1686918309.pdf','2023-06-16 12:25:09','2023-06-16
12:25:09',NULL,'105',NULL,NULL),(3165,105,'TOR','applicants_certifications/
U105T1686918326.pdf','applicants_certifications','inbound5687123813363944931.pdf','
U105T1686918326.pdf','2023-06-16 12:25:26','2023-06-16
12:25:26',NULL,'105',NULL,NULL),(3169,1209,'COE','applicants_certifications/
U1209T1686922188.jpg','applicants_certifications','011.jpg','U1209T1686922188.jpg',
'2023-06-16 13:29:48','2023-06-16 13:29:48',NULL,'1209',NULL,NULL),
(3170,1209,'COE','applicants_certifications/
U1209T1686922223.jpg','applicants_certifications','012.jpg','U1209T1686922223.jpg',
'2023-06-16 13:30:23','2023-06-16 13:30:23',NULL,'1209',NULL,NULL),
(3172,1209,'SWT','applicants_certifications/
U1209T1686922337.jpg','applicants_certifications','sat.jpg','U1209T1686922337.jpg',
'2023-06-16 13:32:17','2023-06-16 13:32:17',NULL,'1209',NULL,NULL),
(3175,1209,'SWT','applicants_certifications/
U1209T1686922416.jpg','applicants_certifications','005.jpg','U1209T1686922416.jpg',
'2023-06-16 13:33:36','2023-06-16 13:33:36',NULL,'1209',NULL,NULL),
(3176,1209,'SWT','applicants_certifications/
U1209T1686922572.jpg','applicants_certifications','006.jpg','U1209T1686922572.jpg',
'2023-06-16 13:36:12','2023-06-16 13:36:12',NULL,'1209',NULL,NULL),
(3181,1244,'ELIGIBILITY','applicants_certifications/
U1244T1686924774.pdf','applicants_certifications','CERT OF
ELIGIBILITY.pdf','U1244T1686924774.pdf','2023-06-16 14:12:54','2023-06-16
14:12:54',NULL,'1244',NULL,NULL),(3182,1244,'TOR','applicants_certifications/
U1244T1686924847.pdf','applicants_certifications','TOR
PLT.pdf','U1244T1686924847.pdf','2023-06-16 14:14:07','2023-06-16
14:14:07',NULL,'1244',NULL,NULL),(3183,1244,'TOR','applicants_certifications/
U1244T1686924894.pdf','applicants_certifications','TOR
IFSU.pdf','U1244T1686924894.pdf','2023-06-16 14:14:54','2023-06-16
14:14:54',NULL,'1244',NULL,NULL),(3184,1259,'TOR','applicants_certifications/
U1259T1686930197.pdf','applicants_certifications','Transcript of Records - Daniel
T. Madamba.pdf','U1259T1686930197.pdf','2023-06-16 15:43:17','2023-06-16
15:43:17',NULL,'1259',NULL,NULL),(3185,1259,'SWT','applicants_certifications/
U1259T1686931565.pdf','applicants_certifications','Nanotechnology.pdf','U1259T16869
31565.pdf','2023-06-16 16:06:05','2023-06-16 16:06:05',NULL,'1259',NULL,NULL),
(3186,1259,'SWT','applicants_certifications/
U1259T1686931618.pdf','applicants_certifications','Cisco
Administration.pdf','U1259T1686931618.pdf','2023-06-16 16:06:58','2023-06-16
16:06:58',NULL,'1259',NULL,NULL),(3187,1259,'SWT','applicants_certifications/
U1259T1686931645.pdf','applicants_certifications','Seminar on
Robotics.pdf','U1259T1686931645.pdf','2023-06-16 16:07:25','2023-06-16
16:07:25',NULL,'1259',NULL,NULL),(3188,1259,'SWT','applicants_certifications/
U1259T1686931726.pdf','applicants_certifications','Work as a trainee at the West
GMM Core Network of PLDT.pdf','U1259T1686931726.pdf','2023-06-16 16:08:46','2023-
06-16 16:08:46',NULL,'1259',NULL,NULL),
(3189,1259,'SWT','applicants_certifications/
U1259T1686931750.pdf','applicants_certifications','Money Laundering & Terrorist
Financing Prevention Program.pdf','U1259T1686931750.pdf','2023-06-16
16:09:10','2023-06-16 16:09:10',NULL,'1259',NULL,NULL),
(3190,1259,'SWT','applicants_certifications/
U1259T1686931769.pdf','applicants_certifications','Updated AMLA Rules and
Regulations (UARR) Seminar.pdf','U1259T1686931769.pdf','2023-06-16 16:09:29','2023-
06-16 16:09:29',NULL,'1259',NULL,NULL),
(3191,1259,'SWT','applicants_certifications/
U1259T1686931792.pdf','applicants_certifications','Web Content Management Course
using WordPress.pdf','U1259T1686931792.pdf','2023-06-16 16:09:52','2023-06-16
16:09:52',NULL,'1259',NULL,NULL),(3192,1259,'SWT','applicants_certifications/
U1259T1686931805.pdf','applicants_certifications','Data Driven Governance
Training.pdf','U1259T1686931805.pdf','2023-06-16 16:10:05','2023-06-16
16:10:05',NULL,'1259',NULL,NULL),
(3197,1312,'ELIGIBILITY','applicants_certifications/
U1312T1686934737.pdf','applicants_certifications','inbound592961208094847773.pdf','
U1312T1686934737.pdf','2023-06-16 16:58:57','2023-06-16
16:58:57',NULL,'1312',NULL,NULL),(3198,1312,'SWT','applicants_certifications/
U1312T1686934765.pdf','applicants_certifications','inbound6856469402743598408.pdf',
'U1312T1686934765.pdf','2023-06-16 16:59:25','2023-06-16
16:59:25',NULL,'1312',NULL,NULL),(3199,1312,'SWT','applicants_certifications/
U1312T1686934829.pdf','applicants_certifications','inbound9114301646675850674.pdf',
'U1312T1686934829.pdf','2023-06-16 17:00:29','2023-06-16
17:00:29',NULL,'1312',NULL,NULL),(3200,1312,'SWT','applicants_certifications/
U1312T1686934862.pdf','applicants_certifications','inbound5774488438662093995.pdf',
'U1312T1686934862.pdf','2023-06-16 17:01:02','2023-06-16
17:01:02',NULL,'1312',NULL,NULL),
(3201,1209,'ELIGIBILITY','applicants_certifications/
U1209T1686954134.jpg','applicants_certifications','010.jpg','U1209T1686954134.jpg',
'2023-06-16 22:22:14','2023-06-16 22:22:14',NULL,'1209',NULL,NULL),
(3202,1209,'PDS','applicants_certifications/
U1209T1686954184.pdf','applicants_certifications','pg
1.pdf','U1209T1686954184.pdf','2023-06-16 22:23:04','2023-06-16
22:23:04',NULL,'1209',NULL,NULL),(3203,1209,'PDS','applicants_certifications/
U1209T1686954211.jpg','applicants_certifications','pg
2.jpg','U1209T1686954211.jpg','2023-06-16 22:23:31','2023-06-16
22:23:31',NULL,'1209',NULL,NULL),(3204,1209,'PDS','applicants_certifications/
U1209T1686954244.jpg','applicants_certifications','pg
3.jpg','U1209T1686954244.jpg','2023-06-16 22:24:04','2023-06-16
22:24:04',NULL,'1209',NULL,NULL),(3205,1209,'PDS','applicants_certifications/
U1209T1686954277.jpg','applicants_certifications','pg
4.jpg','U1209T1686954277.jpg','2023-06-16 22:24:37','2023-06-16
22:24:37',NULL,'1209',NULL,NULL),(3206,1209,'PDS','applicants_certifications/
U1209T1686954305.jpg','applicants_certifications','worksheet pg
1.jpg','U1209T1686954305.jpg','2023-06-16 22:25:05','2023-06-16
22:25:05',NULL,'1209',NULL,NULL),(3207,1209,'PDS','applicants_certifications/
U1209T1686954340.jpg','applicants_certifications','worksheet pg
2.jpg','U1209T1686954340.jpg','2023-06-16 22:25:40','2023-06-16
22:25:40',NULL,'1209',NULL,NULL),(3208,1318,'TOR','applicants_certifications/
U1318T1686962769.jpg','applicants_certifications','inbound8083452587603887611.jpg',
'U1318T1686962769.jpg','2023-06-17 00:46:09','2023-06-17
00:46:09',NULL,'1318',NULL,NULL),(3209,1318,'COE','applicants_certifications/
U1318T1686962832.jpg','applicants_certifications','inbound6378121408293268586.jpg',
'U1318T1686962832.jpg','2023-06-17 00:47:12','2023-06-17
00:47:12',NULL,'1318',NULL,NULL),
(3210,1318,'ELIGIBILITY','applicants_certifications/
U1318T1686962862.jpg','applicants_certifications','inbound3967098007754023113.jpg',
'U1318T1686962862.jpg','2023-06-17 00:47:42','2023-06-17
00:47:42',NULL,'1318',NULL,NULL),
(3211,1318,'ELIGIBILITY','applicants_certifications/
U1318T1686962904.jpg','applicants_certifications','inbound7424862889346518545.jpg',
'U1318T1686962904.jpg','2023-06-17 00:48:24','2023-06-17
00:48:24',NULL,'1318',NULL,NULL),(3212,1318,'PDS','applicants_certifications/
U1318T1686962994.xlsx','applicants_certifications','inbound6093764022940256769.xlsx
','U1318T1686962994.xlsx','2023-06-17 00:49:54','2023-06-17
00:49:54',NULL,'1318',NULL,NULL),(3213,1319,'COE','applicants_certifications/
U1319T1686966513.jpg','applicants_certifications','cert.records
office.jpg','U1319T1686966513.jpg','2023-06-17 01:48:33','2023-06-17
01:48:33',NULL,'1319',NULL,NULL),(3214,1319,'COE','applicants_certifications/
U1319T1686966551.jpg','applicants_certifications','cert.dilg.jpg','U1319T1686966551
.jpg','2023-06-17 01:49:11','2023-06-17 01:49:11',NULL,'1319',NULL,NULL),
(3215,1319,'COE','applicants_certifications/
U1319T1686966586.jpg','applicants_certifications','cert.lib.jpg','U1319T1686966586.
jpg','2023-06-17 01:49:46','2023-06-17 01:49:46',NULL,'1319',NULL,NULL),
(3216,1319,'COE','applicants_certifications/
U1319T1686966615.jpg','applicants_certifications','cert.treasurers
office.jpg','U1319T1686966615.jpg','2023-06-17 01:50:15','2023-06-17
01:50:15',NULL,'1319',NULL,NULL),(3217,1319,'SWT','applicants_certifications/
U1319T1686966662.jpg','applicants_certifications','img20230613_15325183.jpg','U1319
T1686966662.jpg','2023-06-17 01:51:02','2023-06-17
01:51:02',NULL,'1319',NULL,NULL),(3218,1319,'SWT','applicants_certifications/
U1319T1686966714.jpg','applicants_certifications','img20230613_15354951.jpg','U1319
T1686966714.jpg','2023-06-17 01:51:54','2023-06-17
01:51:54',NULL,'1319',NULL,NULL),(3219,1319,'SWT','applicants_certifications/
U1319T1686966744.jpg','applicants_certifications','img20230613_15384457.jpg','U1319
T1686966744.jpg','2023-06-17 01:52:24','2023-06-17
01:52:24',NULL,'1319',NULL,NULL),(3220,1319,'SWT','applicants_certifications/
U1319T1686966768.jpg','applicants_certifications','img20230613_15372987.jpg','U1319
T1686966768.jpg','2023-06-17 01:52:48','2023-06-17
01:52:48',NULL,'1319',NULL,NULL),
(3221,1319,'ELIGIBILITY','applicants_certifications/
U1319T1686966796.jpg','applicants_certifications','LPT
cert of passing.jpg','U1319T1686966796.jpg','2023-06-17 01:53:16','2023-06-17
01:53:16',NULL,'1319',NULL,NULL),
(3222,1319,'ELIGIBILITY','applicants_certifications/
U1319T1686966833.jpg','applicants_certifications','LPT Cert of
Rating.jpg','U1319T1686966833.jpg','2023-06-17 01:53:53','2023-06-17
01:53:53',NULL,'1319',NULL,NULL),(3223,1319,'PDS','applicants_certifications/
U1319T1686967059.xlsx','applicants_certifications','TOMAS,Jo
PDS.xlsx','U1319T1686967059.xlsx','2023-06-17 01:57:39','2023-06-17
01:57:39',NULL,'1319',NULL,NULL),(3224,1319,'TOR','applicants_certifications/
U1319T1686967751.jpg','applicants_certifications','355041533_199047549770986_426539
9992869600659_n.jpg','U1319T1686967751.jpg','2023-06-17 02:09:11','2023-06-17
02:09:11',NULL,'1319',NULL,NULL),(3225,1319,'TOR','applicants_certifications/
U1319T1686967768.jpg','applicants_certifications','353404357_153852587700230_397726
975607396259_n.jpg','U1319T1686967768.jpg','2023-06-17 02:09:28','2023-06-17
02:09:28',NULL,'1319',NULL,NULL),(3226,1320,'TOR','applicants_certifications/
U1320T1686968498.jpg','applicants_certifications','inbound4557234975620047107.jpg',
'U1320T1686968498.jpg','2023-06-17 02:21:38','2023-06-17
02:21:38',NULL,'1320',NULL,NULL),(3227,1320,'TOR','applicants_certifications/
U1320T1686968520.jpg','applicants_certifications','inbound5191715269344078968.jpg',
'U1320T1686968520.jpg','2023-06-17 02:22:00','2023-06-17
02:22:00',NULL,'1320',NULL,NULL),(3228,1320,'SWT','applicants_certifications/
U1320T1686968642.jpg','applicants_certifications','inbound7711669324271480659.jpg',
'U1320T1686968642.jpg','2023-06-17 02:24:02','2023-06-17
02:24:02',NULL,'1320',NULL,NULL),(3230,1320,'SWT','applicants_certifications/
U1320T1686968763.jpg','applicants_certifications','inbound2086933890409733110.jpg',
'U1320T1686968763.jpg','2023-06-17 02:26:03','2023-06-17
02:26:03',NULL,'1320',NULL,NULL),(3231,1320,'SWT','applicants_certifications/
U1320T1686968791.jpg','applicants_certifications','inbound3855755556324028015.jpg',
'U1320T1686968791.jpg','2023-06-17 02:26:31','2023-06-17
02:26:31',NULL,'1320',NULL,NULL),(3232,1320,'SWT','applicants_certifications/
U1320T1686968813.jpg','applicants_certifications','inbound6797711239428528102.jpg',
'U1320T1686968813.jpg','2023-06-17 02:26:53','2023-06-17
02:26:53',NULL,'1320',NULL,NULL),(3233,1320,'SWT','applicants_certifications/
U1320T1686968915.jpg','applicants_certifications','inbound5991621201389114057.jpg',
'U1320T1686968915.jpg','2023-06-17 02:28:35','2023-06-17
02:28:35',NULL,'1320',NULL,NULL),
(3234,1320,'ELIGIBILITY','applicants_certifications/
U1320T1686969163.jpg','applicants_certifications','inbound6276930533988548172.jpg',
'U1320T1686969163.jpg','2023-06-17 02:32:43','2023-06-17
02:32:43',NULL,'1320',NULL,NULL),(3237,1312,'TOR','applicants_certifications/
U1312T1686971924.pdf','applicants_certifications','inbound5474358332670334918.pdf',
'U1312T1686971924.pdf','2023-06-17 03:18:44','2023-06-17
03:18:44',NULL,'1312',NULL,NULL),(3238,1312,'SWT','applicants_certifications/
U1312T1686971986.pdf','applicants_certifications','inbound4916681094004012709.pdf',
'U1312T1686971986.pdf','2023-06-17 03:19:46','2023-06-17
03:19:46',NULL,'1312',NULL,NULL),
(3240,1320,'ELIGIBILITY','applicants_certifications/
U1320T1686972118.jpg','applicants_certifications','inbound5105049912395361039.jpg',
'U1320T1686972118.jpg','2023-06-17 03:21:58','2023-06-17
03:21:58',NULL,'1320',NULL,NULL),(3241,1293,'TOR','applicants_certifications/
U1293T1686972127.pdf','applicants_certifications','VANESSA JANE RALA-
TOR.pdf','U1293T1686972127.pdf','2023-06-17 03:22:07','2023-06-17
03:22:07',NULL,'1293',NULL,NULL),(3242,1293,'COE','applicants_certifications/
U1293T1686972160.pdf','applicants_certifications','Vanessa Jane Rala_Certificate of
Employm.pdf','U1293T1686972160.pdf','2023-06-17 03:22:40','2023-06-17
03:22:40',NULL,'1293',NULL,NULL),
(3243,1293,'ELIGIBILITY','applicants_certifications/
U1293T1686972224.pdf','applicants_certifications','VANESSA JANE RALA-
ELIGIBILITY.pdf','U1293T1686972224.pdf','2023-06-17 03:23:44','2023-06-17
03:23:44',NULL,'1293',NULL,NULL),(3245,1293,'SWT','applicants_certifications/
U1293T1686972273.pdf','applicants_certifications','VANESSA JANE RALA-
CERTIFICATE.pdf','U1293T1686972273.pdf','2023-06-17 03:24:33','2023-06-17
03:24:33',NULL,'1293',NULL,NULL),(3246,1293,'PDS','applicants_certifications/
U1293T1686972555.pdf','applicants_certifications','VANESSA JANE RALA-
PDS.pdf','U1293T1686972555.pdf','2023-06-17 03:29:15','2023-06-17
03:29:15',NULL,'1293',NULL,NULL),
(3247,1326,'ELIGIBILITY','applicants_certifications/
U1326T1686973525.jpg','applicants_certifications','PRC LICENSE
0144076.jpg','U1326T1686973525.jpg','2023-06-17 03:45:25','2023-06-17
03:45:25',NULL,'1326',NULL,NULL),(3249,1324,'PDS','applicants_certifications/
U1324T1686974070.pdf','applicants_certifications','PERSONAL DATA SHEET & WORK
EXPERIENCE SHEET.pdf','U1324T1686974070.pdf','2023-06-17 03:54:30','2023-06-17
03:54:30',NULL,'1324',NULL,NULL),(3250,1324,'TOR','applicants_certifications/
U1324T1686974343.pdf','applicants_certifications','TRANSCRIPT OF RECORDS &
DIPLOMA.pdf','U1324T1686974343.pdf','2023-06-17 03:59:03','2023-06-17
03:59:03',NULL,'1324',NULL,NULL),(3251,1324,'COE','applicants_certifications/
U1324T1686974362.pdf','applicants_certifications','EMPLOYMENT
CERTIFICATE.pdf','U1324T1686974362.pdf','2023-06-17 03:59:22','2023-06-17
03:59:22',NULL,'1324',NULL,NULL),
(3252,1324,'ELIGIBILITY','applicants_certifications/
U1324T1686974391.pdf','applicants_certifications','CERTIFICATE OF ELIGIBILITY,
LICENSE AND BOARD RATINGS.pdf','U1324T1686974391.pdf','2023-06-17 03:59:51','2023-
06-17 03:59:51',NULL,'1324',NULL,NULL),
(3253,1324,'SWT','applicants_certifications/
U1324T1686974422.pdf','applicants_certifications','Certificate of Trainings
Attended.pdf','U1324T1686974422.pdf','2023-06-17 04:00:22','2023-06-17
04:00:22',NULL,'1324',NULL,NULL),(3255,1324,'SWT','applicants_certifications/
U1324T1686974537.pdf','applicants_certifications','Certificates of Recognition &
Appreciation.pdf','U1324T1686974537.pdf','2023-06-17 04:02:17','2023-06-17
04:02:17',NULL,'1324',NULL,NULL),(3258,1300,'TOR','applicants_certifications/
U1300T1686976161.pdf','applicants_certifications','inbound7016451995912160450.pdf',
'U1300T1686976161.pdf','2023-06-17 04:29:21','2023-06-17
04:29:21',NULL,'1300',NULL,NULL),(3260,1300,'SWT','applicants_certifications/
U1300T1686976439.pdf','applicants_certifications','inbound1471476410861358990.pdf',
'U1300T1686976439.pdf','2023-06-17 04:33:59','2023-06-17
04:33:59',NULL,'1300',NULL,NULL),(3261,1300,'SWT','applicants_certifications/
U1300T1686976479.pdf','applicants_certifications','inbound4817663922905731901.pdf',
'U1300T1686976479.pdf','2023-06-17 04:34:39','2023-06-17
04:34:39',NULL,'1300',NULL,NULL),(3265,1302,'TOR','applicants_certifications/
U1302T1686977680.pdf','applicants_certifications','TOR.pdf','U1302T1686977680.pdf',
'2023-06-17 04:54:40','2023-06-17 04:54:40',NULL,'1302',NULL,NULL),
(3266,1330,'ELIGIBILITY','applicants_certifications/
U1330T1686982381.docx','applicants_certifications','Doc5.docx','U1330T1686982381.do
cx','2023-06-17 06:13:01','2023-06-17 06:13:01',NULL,'1330',NULL,NULL),
(3267,1330,'SWT','applicants_certifications/
U1330T1686982455.docx','applicants_certifications','Doc1.docx','U1330T1686982455.do
cx','2023-06-17 06:14:15','2023-06-17 06:14:15',NULL,'1330',NULL,NULL),
(3268,1330,'SWT','applicants_certifications/
U1330T1686982487.docx','applicants_certifications','Doc3.docx','U1330T1686982487.do
cx','2023-06-17 06:14:47','2023-06-17 06:14:47',NULL,'1330',NULL,NULL),
(3269,1330,'SWT','applicants_certifications/
U1330T1686982502.docx','applicants_certifications','Doc2.docx','U1330T1686982502.do
cx','2023-06-17 06:15:02','2023-06-17 06:15:02',NULL,'1330',NULL,NULL),
(3270,1330,'SWT','applicants_certifications/
U1330T1686982523.docx','applicants_certifications','Doc4.docx','U1330T1686982523.do
cx','2023-06-17 06:15:23','2023-06-17 06:15:23',NULL,'1330',NULL,NULL),
(3271,1330,'COE','applicants_certifications/
U1330T1686982587.pdf','applicants_certifications','COE_Norvin Amiao
Cachin.pdf','U1330T1686982587.pdf','2023-06-17 06:16:27','2023-06-17
06:16:27',NULL,'1330',NULL,NULL),(3272,1330,'COE','applicants_certifications/
U1330T1686982601.pdf','applicants_certifications','COE
concentrix.pdf','U1330T1686982601.pdf','2023-06-17 06:16:41','2023-06-17
06:16:41',NULL,'1330',NULL,NULL),(3273,1330,'TOR','applicants_certifications/
U1330T1686984093.pdf','applicants_certifications','OTR - Norvin Cachin
(1).pdf','U1330T1686984093.pdf','2023-06-17 06:41:33','2023-06-17
06:41:33',NULL,'1330',NULL,NULL),(3274,1330,'TOR','applicants_certifications/
U1330T1686984106.pdf','applicants_certifications','OTR - Norvin Cachin
(2).pdf','U1330T1686984106.pdf','2023-06-17 06:41:46','2023-06-17
06:41:46',NULL,'1330',NULL,NULL),(3275,1060,'COE','applicants_certifications/
U1060T1686985558.pdf','applicants_certifications','Service
record.pdf','U1060T1686985558.pdf','2023-06-17 07:05:58','2023-06-17
07:05:58',NULL,'1060',NULL,NULL),(3276,1060,'PDS','applicants_certifications/
U1060T1686986213.pdf','applicants_certifications','PDS1.pdf','U1060T1686986213.pdf'
,'2023-06-17 07:16:53','2023-06-17 07:16:53',NULL,'1060',NULL,NULL),
(3277,1060,'PDS','applicants_certifications/
U1060T1686986254.pdf','applicants_certifications','PDS2.pdf','U1060T1686986254.pdf'
,'2023-06-17 07:17:34','2023-06-17 07:17:34',NULL,'1060',NULL,NULL),
(3278,1060,'PDS','applicants_certifications/
U1060T1686986292.pdf','applicants_certifications','PDS3.pdf','U1060T1686986292.pdf'
,'2023-06-17 07:18:12','2023-06-17 07:18:12',NULL,'1060',NULL,NULL),
(3279,1060,'PDS','applicants_certifications/
U1060T1686986334.pdf','applicants_certifications','PDS4.pdf','U1060T1686986334.pdf'
,'2023-06-17 07:18:54','2023-06-17 07:18:54',NULL,'1060',NULL,NULL),
(3280,1060,'PDS','applicants_certifications/
U1060T1686986365.pdf','applicants_certifications','WES.pdf','U1060T1686986365.pdf',
'2023-06-17
07:19:25','2023-06-17 07:19:25',NULL,'1060',NULL,NULL),
(3281,1039,'COE','applicants_certifications/
U1039T1686986641.jpg','applicants_certifications','Image_20230615_0001.jpg','U1039T
1686986641.jpg','2023-06-17 07:24:01','2023-06-17 07:24:01',NULL,'1039',NULL,NULL),
(3282,1302,'PDS','applicants_certifications/
U1302T1686987609.xlsx','applicants_certifications','PDS
MW.CARABBACAN.xlsx','U1302T1686987609.xlsx','2023-06-17 07:40:09','2023-06-17
07:40:09',NULL,'1302',NULL,NULL),(3283,1332,'TOR','applicants_certifications/
U1332T1686988114.pdf','applicants_certifications','inbound3522506077836722278.pdf',
'U1332T1686988114.pdf','2023-06-17 07:48:34','2023-06-17
07:48:34',NULL,'1332',NULL,NULL),(3285,1334,'TOR','applicants_certifications/
U1334T1686990655.jpg','applicants_certifications','inbound4125521714994962484.jpg',
'U1334T1686990655.jpg','2023-06-17 08:30:55','2023-06-17
08:30:55',NULL,'1334',NULL,NULL),(3286,1334,'TOR','applicants_certifications/
U1334T1686990698.jpg','applicants_certifications','inbound3125702766458094571.jpg',
'U1334T1686990698.jpg','2023-06-17 08:31:38','2023-06-17
08:31:38',NULL,'1334',NULL,NULL),(3287,1334,'TOR','applicants_certifications/
U1334T1686990736.jpg','applicants_certifications','inbound8926983149608721684.jpg',
'U1334T1686990736.jpg','2023-06-17 08:32:16','2023-06-17
08:32:16',NULL,'1334',NULL,NULL),(3288,1334,'COE','applicants_certifications/
U1334T1686990921.jpg','applicants_certifications','inbound3823070923201563673.jpg',
'U1334T1686990921.jpg','2023-06-17 08:35:21','2023-06-17
08:35:21',NULL,'1334',NULL,NULL),(3289,1334,'COE','applicants_certifications/
U1334T1686990958.jpg','applicants_certifications','inbound5381039405375494633.jpg',
'U1334T1686990958.jpg','2023-06-17 08:35:58','2023-06-17
08:35:58',NULL,'1334',NULL,NULL),(3291,929,'TOR','applicants_certifications/
U929T1686991061.pdf','applicants_certifications','TOR Joanna Erica
Pakid.pdf','U929T1686991061.pdf','2023-06-17 08:37:41','2023-06-17
08:37:41',NULL,'929',NULL,NULL),(3292,929,'PDS','applicants_certifications/
U929T1686991106.xlsx','applicants_certifications','CS-Form-No.-212-Personal-Data-
Sheet-PAKID.xlsx','U929T1686991106.xlsx','2023-06-17 08:38:26','2023-06-17
08:38:26',NULL,'929',NULL,NULL),(3293,1334,'SWT','applicants_certifications/
U1334T1686991158.jpg','applicants_certifications','inbound2966360093713494596.jpg',
'U1334T1686991158.jpg','2023-06-17 08:39:18','2023-06-17
08:39:18',NULL,'1334',NULL,NULL),(3294,1334,'SWT','applicants_certifications/
U1334T1686991184.jpg','applicants_certifications','inbound4397357218629163447.jpg',
'U1334T1686991184.jpg','2023-06-17 08:39:44','2023-06-17
08:39:44',NULL,'1334',NULL,NULL),
(3295,1334,'ELIGIBILITY','applicants_certifications/
U1334T1686991307.jpg','applicants_certifications','inbound5829373447010154453.jpg',
'U1334T1686991307.jpg','2023-06-17 08:41:47','2023-06-17
08:41:47',NULL,'1334',NULL,NULL),(3296,1334,'PDS','applicants_certifications/
U1334T1686991350.jpg','applicants_certifications','inbound4273761632725150328.jpg',
'U1334T1686991350.jpg','2023-06-17 08:42:30','2023-06-17
08:42:30',NULL,'1334',NULL,NULL),(3297,1334,'PDS','applicants_certifications/
U1334T1686991385.jpg','applicants_certifications','inbound2057831318918943381.jpg',
'U1334T1686991385.jpg','2023-06-17 08:43:05','2023-06-17
08:43:05',NULL,'1334',NULL,NULL),(3298,1334,'PDS','applicants_certifications/
U1334T1686991436.jpg','applicants_certifications','inbound4714423213568996101.jpg',
'U1334T1686991436.jpg','2023-06-17 08:43:56','2023-06-17
08:43:56',NULL,'1334',NULL,NULL),(3299,1334,'PDS','applicants_certifications/
U1334T1686991462.jpg','applicants_certifications','inbound6981070661421892519.jpg',
'U1334T1686991462.jpg','2023-06-17 08:44:22','2023-06-17
08:44:22',NULL,'1334',NULL,NULL),(3300,1334,'PDS','applicants_certifications/
U1334T1686991495.jpg','applicants_certifications','inbound7039196284638424747.jpg',
'U1334T1686991495.jpg','2023-06-17 08:44:55','2023-06-17
08:44:55',NULL,'1334',NULL,NULL),(3308,1333,'TOR','applicants_certifications/
U1333T1686992796.pdf','applicants_certifications','TOR.pdf','U1333T1686992796.pdf',
'2023-06-17 09:06:36','2023-06-17 09:06:36',NULL,'1333',NULL,NULL),
(3310,1333,'COE','applicants_certifications/
U1333T1686992885.jpg','applicants_certifications','CamScanner 06-17-2023
16.00_13.jpg','U1333T1686992885.jpg','2023-06-17 09:08:05','2023-06-17
09:08:05',NULL,'1333',NULL,NULL),(3311,1333,'SWT','applicants_certifications/
U1333T1686993130.pdf','applicants_certifications','certs.pdf','U1333T1686993130.pdf
','2023-06-17 09:12:10','2023-06-17 09:12:10',NULL,'1333',NULL,NULL),
(3312,1333,'ELIGIBILITY','applicants_certifications/
U1333T1686993222.jpg','applicants_certifications','CamScanner 06-17-2023
16.00_7.jpg','U1333T1686993222.jpg','2023-06-17 09:13:42','2023-06-17
09:13:42',NULL,'1333',NULL,NULL),(3315,1173,'TOR','applicants_certifications/
U1173T1686993892.jpg','applicants_certifications','TOR
1.jpg','U1173T1686993892.jpg','2023-06-17 09:24:52','2023-06-17
09:24:52',NULL,'1173',NULL,NULL),(3316,1173,'TOR','applicants_certifications/
U1173T1686993905.jpg','applicants_certifications','TOR
2.jpg','U1173T1686993905.jpg','2023-06-17 09:25:05','2023-06-17
09:25:05',NULL,'1173',NULL,NULL),
(3319,1173,'ELIGIBILITY','applicants_certifications/
U1173T1686994050.jpg','applicants_certifications','LPT
Rating.jpg','U1173T1686994050.jpg','2023-06-17 09:27:30','2023-06-17
09:27:30',NULL,'1173',NULL,NULL),(3321,1336,'PDS','applicants_certifications/
U1336T1686994454.pdf','applicants_certifications','Silvestre_Maceda_CS-Form-No.-
212-Personal-Data-Sheet-revised-2017.pdf','U1336T1686994454.pdf','2023-06-17
09:34:14','2023-06-17 09:34:14',NULL,'1336',NULL,NULL),
(3324,1340,'SWT','applicants_certifications/
U1340T1687002027.pdf','applicants_certifications','certificate-of-participation-
for-international-training-series-safeguarding-
education.pdf','U1340T1687002027.pdf','2023-06-17 11:40:27','2023-06-17
11:40:27',NULL,'1340',NULL,NULL),
(3327,1173,'ELIGIBILITY','applicants_certifications/
U1173T1687002380.jpg','applicants_certifications','Psychometrician
Rating.jpg','U1173T1687002380.jpg','2023-06-17 11:46:20','2023-06-17
11:46:20',NULL,'1173',NULL,NULL),(3328,1336,'COE','applicants_certifications/
U1336T1687002587.pdf','applicants_certifications','Silvestre_Maceda_COE & Service
Record.pdf','U1336T1687002587.pdf','2023-06-17 11:49:47','2023-06-17
11:49:47',NULL,'1336',NULL,NULL),
(3329,1336,'ELIGIBILITY','applicants_certifications/
U1336T1687003082.pdf','applicants_certifications','Silvestre_Maceda_Certificate of
Eligibility & License.pdf','U1336T1687003082.pdf','2023-06-17 11:58:03','2023-06-17
11:58:03',NULL,'1336',NULL,NULL),(3331,1336,'SWT','applicants_certifications/
U1336T1687004879.pdf','applicants_certifications','Maceda_Shaping the Way We Teach
English.pdf','U1336T1687004879.pdf','2023-06-17 12:27:59','2023-06-17
12:27:59',NULL,'1336',NULL,NULL),(3332,1336,'SWT','applicants_certifications/
U1336T1687004963.pdf','applicants_certifications','Maceda_BASIC RESEARCH AND ACTION
RESEARCH.pdf','U1336T1687004963.pdf','2023-06-17 12:29:23','2023-06-17
12:29:23',NULL,'1336',NULL,NULL),(3333,1336,'SWT','applicants_certifications/
U1336T1687005019.pdf','applicants_certifications','Maceda_The Magna Carta For
Public School Teachers.pdf','U1336T1687005019.pdf','2023-06-17 12:30:19','2023-06-
17 12:30:19',NULL,'1336',NULL,NULL),(3334,1336,'SWT','applicants_certifications/
U1336T1687005056.pdf','applicants_certifications','Maceda_PROJECTING MEETING MINDS
-CONNECTING ACROSS SUBJECTS.pdf','U1336T1687005056.pdf','2023-06-17
12:30:56','2023-06-17 12:30:56',NULL,'1336',NULL,NULL),
(3335,1336,'SWT','applicants_certifications/
U1336T1687005086.pdf','applicants_certifications','Maceda_ORIENTATION ON LEARNING
DELIVERY MODALITIES COURSE 2....pdf','U1336T1687005086.pdf','2023-06-17
12:31:26','2023-06-17 12:31:26',NULL,'1336',NULL,NULL),
(3336,378,'PDS','applicants_certifications/
U378T1687005097.pdf','applicants_certifications','inbound6743247184708779973.pdf','
U378T1687005097.pdf','2023-06-17 12:31:37','2023-06-17
12:31:37',NULL,'378',NULL,NULL),(3337,1336,'SWT','applicants_certifications/
U1336T1687005116.pdf','applicants_certifications','Maceda_FOSTERING MENTAL
WELLNESS.pdf','U1336T1687005116.pdf','2023-06-17 12:31:56','2023-06-17
12:31:56',NULL,'1336',NULL,NULL),(3338,1336,'SWT','applicants_certifications/
U1336T1687005147.pdf','applicants_certifications','Maceda_Capability Building for
Teachers and School Leaders....pdf','U1336T1687005147.pdf','2023-06-17
12:32:27','2023-06-17 12:32:27',NULL,'1336',NULL,NULL),
(3339,1336,'SWT','applicants_certifications/
U1336T1687005295.pdf','applicants_certifications','Maceda_Financial
Literacy.pdf','U1336T1687005295.pdf','2023-06-17 12:34:55','2023-06-17
12:34:55',NULL,'1336',NULL,NULL),(3340,1336,'SWT','applicants_certifications/
U1336T1687005578.pdf','applicants_certifications','Maceda_Teaching as an
Intellectual Act.pdf','U1336T1687005578.pdf','2023-06-17 12:39:38','2023-06-17
12:39:38',NULL,'1336',NULL,NULL),(3341,1336,'SWT','applicants_certifications/
U1336T1687005875.pdf','applicants_certifications','Maceda_Training on Disaster Risk
Reduction and Management Roll-out.pdf','U1336T1687005875.pdf','2023-06-17
12:44:35','2023-06-17 12:44:35',NULL,'1336',NULL,NULL),
(3342,1336,'TOR','applicants_certifications/
U1336T1687006553.pdf','applicants_certifications','Silvestre_Maceda-Transcript of
Records.pdf','U1336T1687006553.pdf','2023-06-17 12:55:53','2023-06-17
12:55:53',NULL,'1336',NULL,NULL),(3343,985,'COE','applicants_certifications/
U985T1687012837.pdf','applicants_certifications','COE.pdf','U985T1687012837.pdf','2
023-06-17 14:40:37','2023-06-17 14:40:37',NULL,'985',NULL,NULL),
(3344,985,'ELIGIBILITY','applicants_certifications/
U985T1687014316.pdf','applicants_certifications','PRC.LET.pdf','U985T1687014316.pdf
','2023-06-17 15:05:16','2023-06-17 15:05:16',NULL,'985',NULL,NULL),
(3345,985,'ELIGIBILITY','applicants_certifications/
U985T1687014374.pdf','applicants_certifications','CSP.pdf','U985T1687014374.pdf','2
023-06-17
15:06:14','2023-06-17 15:06:14',NULL,'985',NULL,NULL),
(3347,985,'SWT','applicants_certifications/
U985T1687015214.pdf','applicants_certifications','certificates-.pdf','U985T16870152
14.pdf','2023-06-17 15:20:14','2023-06-17 15:20:14',NULL,'985',NULL,NULL),
(3349,985,'SWT','applicants_certifications/
U985T1687015468.pdf','applicants_certifications','certificates--.pdf','U985T1687015
468.pdf','2023-06-17 15:24:28','2023-06-17 15:24:28',NULL,'985',NULL,NULL),
(3351,985,'SWT','applicants_certifications/
U985T1687015761.pdf','applicants_certifications','certificates-
3.pdf','U985T1687015761.pdf','2023-06-17 15:29:21','2023-06-17
15:29:21',NULL,'985',NULL,NULL),(3353,985,'SWT','applicants_certifications/
U985T1687015918.pdf','applicants_certifications','certificates-
4.pdf','U985T1687015918.pdf','2023-06-17 15:31:58','2023-06-17
15:31:58',NULL,'985',NULL,NULL),(3354,1342,'TOR','applicants_certifications/
U1342T1687017738.pdf','applicants_certifications','BUCCAT-RIA-TRANSCRIPT OF RECORDS
AND CERTIFICATE OF MASTER UNITS.pdf','U1342T1687017738.pdf','2023-06-17
16:02:18','2023-06-17 16:02:18',NULL,'1342',NULL,NULL),
(3355,1342,'PDS','applicants_certifications/
U1342T1687017855.xlsx','applicants_certifications','BUCCAT-RIA-PERSONAL DATA
SHEET.xlsx','U1342T1687017855.xlsx','2023-06-17 16:04:15','2023-06-17
16:04:15',NULL,'1342',NULL,NULL),
(3356,1342,'ELIGIBILITY','applicants_certifications/
U1342T1687017882.pdf','applicants_certifications','BUCCAT-RIA-BOARD RATING AND
LICENSE.pdf','U1342T1687017882.pdf','2023-06-17 16:04:42','2023-06-17
16:04:42',NULL,'1342',NULL,NULL),
(3357,1094,'ELIGIBILITY','applicants_certifications/
U1094T1687099201.pdf','applicants_certifications','Authenticated PRC
License.pdf','U1094T1687099201.pdf','2023-06-18 14:40:01','2023-06-18
14:40:01',NULL,'1094',NULL,NULL),(3358,1094,'COE','applicants_certifications/
U1094T1687099283.pdf','applicants_certifications','Certificate of
Employment.pdf','U1094T1687099283.pdf','2023-06-18 14:41:23','2023-06-18
14:41:23',NULL,'1094',NULL,NULL),(3359,1094,'TOR','applicants_certifications/
U1094T1687099635.pdf','applicants_certifications','Transcript of Records and Units
Earned.pdf','U1094T1687099635.pdf','2023-06-18 14:47:15','2023-06-18
14:47:15',NULL,'1094',NULL,NULL),(3360,1094,'SWT','applicants_certifications/
U1094T1687100256.pdf','applicants_certifications','Certificate of Trainings &
Seminars.pdf','U1094T1687100256.pdf','2023-06-18 14:57:36','2023-06-18
14:57:36',NULL,'1094',NULL,NULL),(3362,113,'TOR','applicants_certifications/
U113T1687103461.pdf','applicants_certifications','tor.pdf','U113T1687103461.pdf','2
023-06-18 15:51:01','2023-06-18 15:51:01',NULL,'113',NULL,NULL),
(3364,113,'COE','applicants_certifications/
U113T1687103514.pdf','applicants_certifications','coe.pdf','U113T1687103514.pdf','2
023-06-18 15:51:54','2023-06-18 15:51:54',NULL,'113',NULL,NULL),
(3366,113,'ELIGIBILITY','applicants_certifications/
U113T1687103654.pdf','applicants_certifications','eligibilitylicense.pdf','U113T168
7103654.pdf','2023-06-18 15:54:14','2023-06-18 15:54:14',NULL,'113',NULL,NULL),
(3367,1094,'PDS','applicants_certifications/
U1094T1687106631.pdf','applicants_certifications','Notarized Personal Data Sheet
with Worksheet.pdf','U1094T1687106631.pdf','2023-06-18 16:43:51','2023-06-18
16:43:51',NULL,'1094',NULL,NULL),(3368,1349,'TOR','applicants_certifications/
U1349T1687114340.pdf','applicants_certifications','Transcript of Records_Jocelyn P.
Bumahit.pdf','U1349T1687114340.pdf','2023-06-18 18:52:20','2023-06-18
18:52:20',NULL,'1349',NULL,NULL),(3369,1349,'COE','applicants_certifications/
U1349T1687114370.pdf','applicants_certifications','Certificate of
Employment_Jocelyn P. Bumahit.pdf','U1349T1687114370.pdf','2023-06-18
18:52:50','2023-06-18 18:52:50',NULL,'1349',NULL,NULL),
(3370,1349,'SWT','applicants_certifications/
U1349T1687114395.pdf','applicants_certifications','Seminar Workshop and Training
Certificates_Jocelyn P. Bumahit.pdf','U1349T1687114395.pdf','2023-06-18
18:53:15','2023-06-18 18:53:15',NULL,'1349',NULL,NULL),
(3371,1349,'ELIGIBILITY','applicants_certifications/
U1349T1687114418.pdf','applicants_certifications','Certificate of Eligibility,
License_Jocelyn P. Bumahit.pdf','U1349T1687114418.pdf','2023-06-18 18:53:38','2023-
06-18 18:53:38',NULL,'1349',NULL,NULL),
(3372,1349,'PDS','applicants_certifications/
U1349T1687114438.pdf','applicants_certifications','Personal Data Sheet_Jocelyn P.
Bumahit.pdf','U1349T1687114438.pdf','2023-06-18 18:53:58','2023-06-18
18:53:58',NULL,'1349',NULL,NULL),(3374,1351,'TOR','applicants_certifications/
U1351T1687128776.pdf','applicants_certifications','inbound3858804587238664317.pdf',
'U1351T1687128776.pdf','2023-06-18 22:52:56','2023-06-18
22:52:56',NULL,'1351',NULL,NULL),(3375,1351,'COE','applicants_certifications/
U1351T1687128838.pdf','applicants_certifications','inbound1644121835547752417.pdf',
'U1351T1687128838.pdf','2023-06-18 22:53:58','2023-06-18
22:53:58',NULL,'1351',NULL,NULL),(3376,1351,'SWT','applicants_certifications/
U1351T1687128887.pdf','applicants_certifications','inbound3465453703913764486.pdf',
'U1351T1687128887.pdf','2023-06-18 22:54:47','2023-06-18
22:54:47',NULL,'1351',NULL,NULL),
(3377,1351,'ELIGIBILITY','applicants_certifications/
U1351T1687128921.pdf','applicants_certifications','inbound7830179627486252252.pdf',
'U1351T1687128921.pdf','2023-06-18 22:55:21','2023-06-18
22:55:21',NULL,'1351',NULL,NULL),
(3380,1351,'ELIGIBILITY','applicants_certifications/
U1351T1687129012.pdf','applicants_certifications','inbound2794551950719523646.pdf',
'U1351T1687129012.pdf','2023-06-18 22:56:52','2023-06-18
22:56:52',NULL,'1351',NULL,NULL),(3381,978,'TOR','applicants_certifications/
U978T1687129111.docx','applicants_certifications','inbound3968261926754895491.docx'
,'U978T1687129111.docx','2023-06-18 22:58:31','2023-06-18
22:58:31',NULL,'978',NULL,NULL),(3382,978,'COE','applicants_certifications/
U978T1687129171.pdf','applicants_certifications','inbound9075584481346107595.pdf','
U978T1687129171.pdf','2023-06-18 22:59:31','2023-06-18
22:59:31',NULL,'978',NULL,NULL),(3384,978,'SWT','applicants_certifications/
U978T1687129279.pdf','applicants_certifications','inbound5672967181820609497.pdf','
U978T1687129279.pdf','2023-06-18 23:01:19','2023-06-18
23:01:19',NULL,'978',NULL,NULL),
(3385,978,'ELIGIBILITY','applicants_certifications/
U978T1687129376.pdf','applicants_certifications','inbound1862345736548817560.pdf','
U978T1687129376.pdf','2023-06-18 23:02:56','2023-06-18
23:02:56',NULL,'978',NULL,NULL),(3386,1308,'TOR','applicants_certifications/
U1308T1687129927.jpg','applicants_certifications','AnyScanner_06_19_2023
0.jpg','U1308T1687129927.jpg','2023-06-18 23:12:07','2023-06-18
23:12:07',NULL,'1308',NULL,NULL),(3387,1308,'SWT','applicants_certifications/
U1308T1687129979.jpg','applicants_certifications','AnyScanner_06_19_2023
1.jpg','U1308T1687129979.jpg','2023-06-18 23:12:59','2023-06-18
23:12:59',NULL,'1308',NULL,NULL),(3388,1308,'SWT','applicants_certifications/
U1308T1687130008.jpg','applicants_certifications','AnyScanner_06_19_2023
2.jpg','U1308T1687130008.jpg','2023-06-18 23:13:28','2023-06-18
23:13:28',NULL,'1308',NULL,NULL),(3389,1308,'SWT','applicants_certifications/
U1308T1687130036.jpg','applicants_certifications','AnyScanner_06_19_2023
3.jpg','U1308T1687130036.jpg','2023-06-18 23:13:56','2023-06-18
23:13:56',NULL,'1308',NULL,NULL),(3390,1308,'SWT','applicants_certifications/
U1308T1687130061.jpg','applicants_certifications','AnyScanner_06_19_2023
4.jpg','U1308T1687130061.jpg','2023-06-18 23:14:21','2023-06-18
23:14:21',NULL,'1308',NULL,NULL),(3391,1308,'SWT','applicants_certifications/
U1308T1687130069.jpg','applicants_certifications','AnyScanner_06_19_2023
4.jpg','U1308T1687130069.jpg','2023-06-18 23:14:29','2023-06-18
23:14:29',NULL,'1308',NULL,NULL),(3392,1353,'TOR','applicants_certifications/
U1353T1687130096.jpg','applicants_certifications','inbound5057728523547191220.jpg',
'U1353T1687130096.jpg','2023-06-18 23:14:56','2023-06-18
23:14:56',NULL,'1353',NULL,NULL),
(3393,1308,'ELIGIBILITY','applicants_certifications/
U1308T1687130110.jpg','applicants_certifications','AnyScanner_06_19_2023
5.jpg','U1308T1687130110.jpg','2023-06-18 23:15:10','2023-06-18
23:15:10',NULL,'1308',NULL,NULL),(3394,1353,'TOR','applicants_certifications/
U1353T1687130132.jpg','applicants_certifications','inbound3739233802955422324.jpg',
'U1353T1687130132.jpg','2023-06-18 23:15:32','2023-06-18
23:15:32',NULL,'1353',NULL,NULL),
(3395,1308,'ELIGIBILITY','applicants_certifications/
U1308T1687130136.jpg','applicants_certifications','AnyScanner_06_19_2023
6.jpg','U1308T1687130136.jpg','2023-06-18 23:15:36','2023-06-18
23:15:36',NULL,'1308',NULL,NULL),(3396,1353,'TOR','applicants_certifications/
U1353T1687130149.jpg','applicants_certifications','inbound870365318211473715.jpg','
U1353T1687130149.jpg','2023-06-18 23:15:49','2023-06-18
23:15:49',NULL,'1353',NULL,NULL),(3398,1353,'COE','applicants_certifications/
U1353T1687130610.jpg','applicants_certifications','inbound8117882124653220756.jpg',
'U1353T1687130610.jpg','2023-06-18 23:23:30','2023-06-18
23:23:30',NULL,'1353',NULL,NULL),(3399,1308,'PDS','applicants_certifications/
U1308T1687130851.jpg','applicants_certifications','AnyScanner_06_19_2023
7.jpg','U1308T1687130851.jpg','2023-06-18 23:27:31','2023-06-18
23:27:31',NULL,'1308',NULL,NULL),(3400,1308,'PDS','applicants_certifications/
U1308T1687130875.jpg','applicants_certifications','AnyScanner_06_19_2023
8.jpg','U1308T1687130875.jpg','2023-06-18 23:27:55','2023-06-18
23:27:55',NULL,'1308',NULL,NULL),(3402,1308,'PDS','applicants_certifications/
U1308T1687130901.jpg','applicants_certifications','AnyScanner_06_19_2023
10.jpg','U1308T1687130901.jpg','2023-06-18 23:28:21','2023-06-18
23:28:21',NULL,'1308',NULL,NULL),(3403,1308,'PDS','applicants_certifications/
U1308T1687130927.jpg','applicants_certifications','AnyScanner_06_19_2023
9.jpg','U1308T1687130927.jpg','2023-06-18 23:28:47','2023-06-18
23:28:47',NULL,'1308',NULL,NULL),(3404,1353,'SWT','applicants_certifications/
U1353T1687130942.jpg','applicants_certificati
ons','inbound4007485626154131656.jpg','U1353T1687130942.jpg','2023-06-18
23:29:02','2023-06-18 23:29:02',NULL,'1353',NULL,NULL),
(3405,1353,'SWT','applicants_certifications/
U1353T1687130960.jpg','applicants_certifications','inbound3247262321457025819.jpg',
'U1353T1687130960.jpg','2023-06-18 23:29:20','2023-06-18
23:29:20',NULL,'1353',NULL,NULL),(3406,1353,'SWT','applicants_certifications/
U1353T1687130979.jpg','applicants_certifications','inbound4177686500396365728.jpg',
'U1353T1687130979.jpg','2023-06-18 23:29:39','2023-06-18
23:29:39',NULL,'1353',NULL,NULL),
(3407,1353,'ELIGIBILITY','applicants_certifications/
U1353T1687131137.jpg','applicants_certifications','inbound8274261755611743157.jpg',
'U1353T1687131137.jpg','2023-06-18 23:32:17','2023-06-18
23:32:17',NULL,'1353',NULL,NULL),(3409,1353,'PDS','applicants_certifications/
U1353T1687136292.xlsx','applicants_certifications','CS FORM
JOSEPH.xlsx','U1353T1687136292.xlsx','2023-06-19 00:58:12','2023-06-19
00:58:12',NULL,'1353',NULL,NULL),(3410,1353,'PDS','applicants_certifications/
U1353T1687136334.docx','applicants_certifications','cs
form.docx','U1353T1687136334.docx','2023-06-19 00:58:54','2023-06-19
00:58:54',NULL,'1353',NULL,NULL),(3413,1048,'TOR','applicants_certifications/
U1048T1687139289.pdf','applicants_certifications','MASTERS DEGREE EARNED
UNITS.pdf','U1048T1687139289.pdf','2023-06-19 01:48:09','2023-06-19
01:48:09',NULL,'1048',NULL,NULL),(3414,1237,'TOR','applicants_certifications/
U1237T1687139420.jpg','applicants_certifications','TOR.jpg','U1237T1687139420.jpg',
'2023-06-19 01:50:20','2023-06-19 01:50:20',NULL,'1237',NULL,NULL),
(3415,1048,'ELIGIBILITY','applicants_certifications/
U1048T1687139501.pdf','applicants_certifications','CSC CERTIFICATE OF
ELIGIBILITY.pdf','U1048T1687139501.pdf','2023-06-19 01:51:41','2023-06-19
01:51:41',NULL,'1048',NULL,NULL),(3417,1237,'TOR','applicants_certifications/
U1237T1687139512.jpg','applicants_certifications','TOR1.jpg','U1237T1687139512.jpg'
,'2023-06-19 01:51:52','2023-06-19 01:51:52',NULL,'1237',NULL,NULL),
(3419,1354,'SWT','applicants_certifications/
U1354T1687139586.jpeg','applicants_certifications','received_1413570662754507.jpeg'
,'U1354T1687139586.jpeg','2023-06-19 01:53:06','2023-06-19
01:53:06',NULL,'1354',NULL,NULL),(3420,1237,'TOR','applicants_certifications/
U1237T1687139624.jpg','applicants_certifications','TOR2.jpg','U1237T1687139624.jpg'
,'2023-06-19 01:53:44','2023-06-19 01:53:44',NULL,'1237',NULL,NULL),
(3421,1354,'SWT','applicants_certifications/
U1354T1687139639.jpeg','applicants_certifications','received_219389570986844.jpeg',
'U1354T1687139639.jpeg','2023-06-19 01:53:59','2023-06-19
01:53:59',NULL,'1354',NULL,NULL),(3422,1338,'TOR','applicants_certifications/
U1338T1687139657.pdf','applicants_certifications','TOR.pdf','U1338T1687139657.pdf',
'2023-06-19 01:54:17','2023-06-19 01:54:17',NULL,'1338',NULL,NULL),
(3423,1237,'COE','applicants_certifications/
U1237T1687139675.jpg','applicants_certifications','COE
DENR.jpg','U1237T1687139675.jpg','2023-06-19 01:54:35','2023-06-19
01:54:35',NULL,'1237',NULL,NULL),(3424,1237,'COE','applicants_certifications/
U1237T1687139712.jpg','applicants_certifications','SERVICE RECORD
DEPED.jpg','U1237T1687139712.jpg','2023-06-19 01:55:12','2023-06-19
01:55:12',NULL,'1237',NULL,NULL),(3425,1270,'TOR','applicants_certifications/
U1270T1687139751.pdf','applicants_certifications','inbound7801230815432605235.pdf',
'U1270T1687139751.pdf','2023-06-19 01:55:51','2023-06-19
01:55:51',NULL,'1270',NULL,NULL),(3426,1354,'SWT','applicants_certifications/
U1354T1687139752.jpeg','applicants_certifications','received_272854245316387.jpeg',
'U1354T1687139752.jpeg','2023-06-19 01:55:52','2023-06-19
01:55:52',NULL,'1354',NULL,NULL),(3427,1237,'SWT','applicants_certifications/
U1237T1687139756.jpg','applicants_certifications','CamScanner 06-18-2023
15.52_17.jpg','U1237T1687139756.jpg','2023-06-19 01:55:56','2023-06-19
01:55:56',NULL,'1237',NULL,NULL),(3428,1270,'TOR','applicants_certifications/
U1270T1687139780.pdf','applicants_certifications','inbound6795740091456439747.pdf',
'U1270T1687139780.pdf','2023-06-19 01:56:20','2023-06-19
01:56:20',NULL,'1270',NULL,NULL),(3429,1354,'SWT','applicants_certifications/
U1354T1687139802.jpeg','applicants_certifications','received_566197402351166.jpeg',
'U1354T1687139802.jpeg','2023-06-19 01:56:42','2023-06-19
01:56:42',NULL,'1354',NULL,NULL),(3430,1270,'TOR','applicants_certifications/
U1270T1687139809.pdf','applicants_certifications','inbound6613278558891519132.pdf',
'U1270T1687139809.pdf','2023-06-19 01:56:49','2023-06-19
01:56:49',NULL,'1270',NULL,NULL),(3431,1270,'SWT','applicants_certifications/
U1270T1687139836.pdf','applicants_certifications','inbound5560912724041680274.pdf',
'U1270T1687139836.pdf','2023-06-19 01:57:16','2023-06-19
01:57:16',NULL,'1270',NULL,NULL),(3432,1270,'SWT','applicants_certifications/
U1270T1687139852.pdf','applicants_certifications','inbound5701272864628900493.pdf',
'U1270T1687139852.pdf','2023-06-19 01:57:32','2023-06-19
01:57:32',NULL,'1270',NULL,NULL),(3433,1237,'SWT','applicants_certifications/
U1237T1687139864.jpg','applicants_certifications','CamScanner 06-18-2023
15.52_18.jpg','U1237T1687139864.jpg','2023-06-19 01:57:44','2023-06-19
01:57:44',NULL,'1237',NULL,NULL),
(3434,1270,'ELIGIBILITY','applicants_certifications/
U1270T1687139875.pdf','applicants_certifications','inbound885161202002203736.pdf','
U1270T1687139875.pdf','2023-06-19 01:57:55','2023-06-19
01:57:55',NULL,'1270',NULL,NULL),
(3436,1270,'ELIGIBILITY','applicants_certifications/
U1270T1687139900.pdf','applicants_certifications','inbound1141068913281921879.pdf',
'U1270T1687139900.pdf','2023-06-19 01:58:20','2023-06-19
01:58:20',NULL,'1270',NULL,NULL),(3437,1237,'SWT','applicants_certifications/
U1237T1687139904.jpg','applicants_certifications','CamScanner 06-18-2023
15.52_19.jpg','U1237T1687139904.jpg','2023-06-19 01:58:24','2023-06-19
01:58:24',NULL,'1237',NULL,NULL),
(3438,1270,'ELIGIBILITY','applicants_certifications/
U1270T1687139917.pdf','applicants_certifications','inbound3650776261136700910.pdf',
'U1270T1687139917.pdf','2023-06-19 01:58:37','2023-06-19
01:58:37',NULL,'1270',NULL,NULL),(3439,1237,'SWT','applicants_certifications/
U1237T1687139946.jpg','applicants_certifications','CamScanner 06-18-2023
15.52_20.jpg','U1237T1687139946.jpg','2023-06-19 01:59:06','2023-06-19
01:59:06',NULL,'1237',NULL,NULL),(3440,1237,'SWT','applicants_certifications/
U1237T1687140024.jpg','applicants_certifications','CamScanner 06-18-2023
15.52_21.jpg','U1237T1687140024.jpg','2023-06-19 02:00:24','2023-06-19
02:00:24',NULL,'1237',NULL,NULL),
(3441,1237,'ELIGIBILITY','applicants_certifications/
U1237T1687140073.jpg','applicants_certifications','AUTHENTICATE
LICENSE.jpg','U1237T1687140073.jpg','2023-06-19 02:01:13','2023-06-19
02:01:13',NULL,'1237',NULL,NULL),(3442,1237,'PDS','applicants_certifications/
U1237T1687140106.jpg','applicants_certifications','PDS1.jpg','U1237T1687140106.jpg'
,'2023-06-19 02:01:46','2023-06-19 02:01:46',NULL,'1237',NULL,NULL),
(3443,1237,'PDS','applicants_certifications/
U1237T1687140157.jpg','applicants_certifications','PDS2.jpg','U1237T1687140157.jpg'
,'2023-06-19 02:02:37','2023-06-19 02:02:37',NULL,'1237',NULL,NULL),
(3444,1214,'TOR','applicants_certifications/
U1214T1687140193.pdf','applicants_certifications','TOR -
Ester.pdf','U1214T1687140193.pdf','2023-06-19 02:03:13','2023-06-19
02:03:13',NULL,'1214',NULL,NULL),(3445,1354,'TOR','applicants_certifications/
U1354T1687140326.jpeg','applicants_certifications','received_955668812221694.jpeg',
'U1354T1687140326.jpeg','2023-06-19 02:05:26','2023-06-19
02:05:26',NULL,'1354',NULL,NULL),(3446,1237,'PDS','applicants_certifications/
U1237T1687140330.jpg','applicants_certifications','PDS3.jpg','U1237T1687140330.jpg'
,'2023-06-19 02:05:30','2023-06-19 02:05:30',NULL,'1237',NULL,NULL),
(3447,1354,'TOR','applicants_certifications/
U1354T1687140360.jpeg','applicants_certifications','received_893109521950727.jpeg',
'U1354T1687140360.jpeg','2023-06-19 02:06:00','2023-06-19
02:06:00',NULL,'1354',NULL,NULL),(3448,1354,'TOR','applicants_certifications/
U1354T1687140379.jpeg','applicants_certifications','received_274062045177568.jpeg',
'U1354T1687140379.jpeg','2023-06-19 02:06:19','2023-06-19
02:06:19',NULL,'1354',NULL,NULL),(3450,1237,'PDS','applicants_certifications/
U1237T1687140407.jpg','applicants_certifications','PDS4.jpg','U1237T1687140407.jpg'
,'2023-06-19 02:06:47','2023-06-19 02:06:47',NULL,'1237',NULL,NULL),
(3451,1237,'SWT','applicants_certifications/
U1237T1687140440.jpg','applicants_certifications','CamScanner 06-18-2023
15.52_22.jpg','U1237T1687140440.jpg','2023-06-19 02:07:20','2023-06-19
02:07:20',NULL,'1237',NULL,NULL),(3452,1237,'SWT','applicants_certifications/
U1237T1687140476.jpg','applicants_certifications','CamScanner 06-18-2023
15.52_23.jpg','U1237T1687140476.jpg','2023-06-19 02:07:56','2023-06-19
02:07:56',NULL,'1237',NULL,NULL),(3453,1361,'TOR','applicants_certifications/
U1361T1687140483.jpeg','applicants_certifications','received_770699264556607.jpeg',
'U1361T1687140483.jpeg','2023-06-19 02:08:03','2023-06-19
02:08:03',NULL,'1361',NULL,NULL),(3454,1237,'SWT','applicants_certifications/
U1237T1687140512.jpg','applicants_certifications','CamScanner 06-18-2023
15.52_24.jpg','U1237T1687140512.jpg','2023-06-19 02:08:32','2023-06-19
02:08:32',NULL,'1237',NULL,NULL),(3455,1237,'SWT','applicants_certifications/
U1237T1687140574.jpg','applicants_certifications','CamScanner 06-18-2023
15.52_25.jpg','U1237T1687140574.jpg','2023-06-19 02:09:34','2023-06-19
02:09:34',NULL,'1237',NULL,NULL),(3458,1354,'TOR','applicants_certifications/
U1354T1687140725.jpeg','applicants_certifications','received_7173657209316375.jpeg'
,'U1354T1687140725.jpeg','2023-06-19 02:12:05','2023-06-19
02:12:05',NULL,'1354',NULL,NULL),(3460,1354,'SWT','applicants_certifications/
U1354T1687140780.jpeg','applicants_certifications','received_6278619342253685.jpeg'
,'U1354T1687140780.jpeg','2023-06-19
02:13:00','2023-06-19 02:13:00',NULL,'1354',NULL,NULL),
(3461,1354,'SWT','applicants_certifications/
U1354T1687140807.jpeg','applicants_certifications','received_216017404648637.jpeg',
'U1354T1687140807.jpeg','2023-06-19 02:13:27','2023-06-19
02:13:27',NULL,'1354',NULL,NULL),(3463,1354,'SWT','applicants_certifications/
U1354T1687140939.jpeg','applicants_certifications','received_659137815551194.jpeg',
'U1354T1687140939.jpeg','2023-06-19 02:15:39','2023-06-19
02:15:39',NULL,'1354',NULL,NULL),(3464,1354,'SWT','applicants_certifications/
U1354T1687141015.jpeg','applicants_certifications','received_606858007900734.jpeg',
'U1354T1687141015.jpeg','2023-06-19 02:16:55','2023-06-19
02:16:55',NULL,'1354',NULL,NULL),(3465,1354,'SWT','applicants_certifications/
U1354T1687141043.jpeg','applicants_certifications','received_101844216291549.jpeg',
'U1354T1687141043.jpeg','2023-06-19 02:17:23','2023-06-19
02:17:23',NULL,'1354',NULL,NULL),(3466,1354,'SWT','applicants_certifications/
U1354T1687141090.jpeg','applicants_certifications','received_202497426087484.jpeg',
'U1354T1687141090.jpeg','2023-06-19 02:18:10','2023-06-19
02:18:10',NULL,'1354',NULL,NULL),(3467,1354,'SWT','applicants_certifications/
U1354T1687141139.jpeg','applicants_certifications','received_201685665712702.jpeg',
'U1354T1687141139.jpeg','2023-06-19 02:18:59','2023-06-19
02:18:59',NULL,'1354',NULL,NULL),(3468,1354,'SWT','applicants_certifications/
U1354T1687141312.jpeg','applicants_certifications','received_1914097898965765.jpeg'
,'U1354T1687141312.jpeg','2023-06-19 02:21:52','2023-06-19
02:21:52',NULL,'1354',NULL,NULL),(3469,1354,'SWT','applicants_certifications/
U1354T1687141327.jpeg','applicants_certifications','received_637166848328940.jpeg',
'U1354T1687141327.jpeg','2023-06-19 02:22:07','2023-06-19
02:22:07',NULL,'1354',NULL,NULL),(3470,1354,'SWT','applicants_certifications/
U1354T1687141356.jpeg','applicants_certifications','received_163798200012061.jpeg',
'U1354T1687141356.jpeg','2023-06-19 02:22:36','2023-06-19
02:22:36',NULL,'1354',NULL,NULL),(3471,1354,'SWT','applicants_certifications/
U1354T1687141450.jpeg','applicants_certifications','received_6216188655164366.jpeg'
,'U1354T1687141450.jpeg','2023-06-19 02:24:10','2023-06-19
02:24:10',NULL,'1354',NULL,NULL),(3472,1354,'SWT','applicants_certifications/
U1354T1687141482.jpeg','applicants_certifications','received_637845335030162.jpeg',
'U1354T1687141482.jpeg','2023-06-19 02:24:42','2023-06-19
02:24:42',NULL,'1354',NULL,NULL),(3473,1354,'SWT','applicants_certifications/
U1354T1687141517.jpeg','applicants_certifications','received_1602347433575267.jpeg'
,'U1354T1687141517.jpeg','2023-06-19 02:25:17','2023-06-19
02:25:17',NULL,'1354',NULL,NULL),(3474,1354,'SWT','applicants_certifications/
U1354T1687141535.jpeg','applicants_certifications','received_6621036884584224.jpeg'
,'U1354T1687141535.jpeg','2023-06-19 02:25:35','2023-06-19
02:25:35',NULL,'1354',NULL,NULL),(3475,1354,'SWT','applicants_certifications/
U1354T1687141609.jpeg','applicants_certifications','received_3126232754344506.jpeg'
,'U1354T1687141609.jpeg','2023-06-19 02:26:49','2023-06-19
02:26:49',NULL,'1354',NULL,NULL),
(3478,1362,'ELIGIBILITY','applicants_certifications/
U1362T1687142205.pdf','applicants_certifications','CSC
Eligibility.pdf','U1362T1687142205.pdf','2023-06-19 02:36:45','2023-06-19
02:36:45',NULL,'1362',NULL,NULL),(3480,1288,'COE','applicants_certifications/
U1288T1687142710.jpeg','applicants_certifications','IMG_1610.jpeg','U1288T168714271
0.jpeg','2023-06-19 02:45:10','2023-06-19 02:45:10',NULL,'1288',NULL,NULL),
(3482,1288,'SWT','applicants_certifications/
U1288T1687142846.jpeg','applicants_certifications','IMG_1613.jpeg','U1288T168714284
6.jpeg','2023-06-19 02:47:26','2023-06-19 02:47:26',NULL,'1288',NULL,NULL),
(3485,1288,'ELIGIBILITY','applicants_certifications/
U1288T1687143128.jpeg','applicants_certifications','IMG_1614.jpeg','U1288T168714312
8.jpeg','2023-06-19 02:52:08','2023-06-19 02:52:08',NULL,'1288',NULL,NULL),
(3486,1340,'COE','applicants_certifications/
U1340T1687143387.jpg','applicants_certifications','img044.jpg','U1340T1687143387.jp
g','2023-06-19 02:56:27','2023-06-19 02:56:27',NULL,'1340',NULL,NULL),
(3487,1325,'TOR','applicants_certifications/
U1325T1687143420.pdf','applicants_certifications','TOR.pdf','U1325T1687143420.pdf',
'2023-06-19 02:57:00','2023-06-19 02:57:00',NULL,'1325',NULL,NULL),
(3488,1340,'COE','applicants_certifications/
U1340T1687143483.jpg','applicants_certifications','img026.jpg','U1340T1687143483.jp
g','2023-06-19 02:58:03','2023-06-19 02:58:03',NULL,'1340',NULL,NULL),
(3490,1340,'COE','applicants_certifications/
U1340T1687143524.jpg','applicants_certifications','img027.jpg','U1340T1687143524.jp
g','2023-06-19 02:58:44','2023-06-19 02:58:44',NULL,'1340',NULL,NULL),
(3491,1325,'COE','applicants_certifications/
U1325T1687143529.pdf','applicants_certifications','DILG.pdf','U1325T1687143529.pdf'
,'2023-06-19 02:58:49','2023-06-19 02:58:49',NULL,'1325',NULL,NULL),
(3492,1340,'ELIGIBILITY','applicants_certifications/
U1340T1687143602.jpg','applicants_certifications','img033.jpg','U1340T1687143602.jp
g','2023-06-19 03:00:02','2023-06-19 03:00:02',NULL,'1340',NULL,NULL),
(3493,1340,'TOR','applicants_certifications/
U1340T1687143733.jpg','applicants_certifications','img040.jpg','U1340T1687143733.jp
g','2023-06-19 03:02:13','2023-06-19 03:02:13',NULL,'1340',NULL,NULL),
(3494,1340,'TOR','applicants_certifications/
U1340T1687143783.jpg','applicants_certifications','img038.jpg','U1340T1687143783.jp
g','2023-06-19 03:03:03','2023-06-19 03:03:03',NULL,'1340',NULL,NULL),
(3495,1340,'TOR','applicants_certifications/
U1340T1687143835.jpg','applicants_certifications','img043.jpg','U1340T1687143835.jp
g','2023-06-19 03:03:55','2023-06-19 03:03:55',NULL,'1340',NULL,NULL),
(3496,1325,'SWT','applicants_certifications/
U1325T1687143855.pdf','applicants_certifications','CERTIFICATE OF TRAINING-
PRC.pdf','U1325T1687143855.pdf','2023-06-19 03:04:15','2023-06-19
03:04:15',NULL,'1325',NULL,NULL),
(3497,1325,'ELIGIBILITY','applicants_certifications/
U1325T1687143941.pdf','applicants_certifications','PRC (report of
rating).pdf','U1325T1687143941.pdf','2023-06-19 03:05:41','2023-06-19
03:05:41',NULL,'1325',NULL,NULL),(3498,1104,'TOR','applicants_certifications/
U1104T1687144864.pdf','applicants_certifications','Official Transcript of
Record.pdf','U1104T1687144864.pdf','2023-06-19 03:21:04','2023-06-19
03:21:04',NULL,'1104',NULL,NULL),(3499,1354,'COE','applicants_certifications/
U1354T1687144874.jpeg','applicants_certifications','received_792272769260193.jpeg',
'U1354T1687144874.jpeg','2023-06-19 03:21:14','2023-06-19
03:21:14',NULL,'1354',NULL,NULL),(3500,1104,'COE','applicants_certifications/
U1104T1687144884.pdf','applicants_certifications','Employment
Certification.pdf','U1104T1687144884.pdf','2023-06-19 03:21:24','2023-06-19
03:21:24',NULL,'1104',NULL,NULL),(3501,1104,'SWT','applicants_certifications/
U1104T1687144917.pdf','applicants_certifications','certificate of
training.pdf','U1104T1687144917.pdf','2023-06-19 03:21:57','2023-06-19
03:21:57',NULL,'1104',NULL,NULL),
(3502,1104,'ELIGIBILITY','applicants_certifications/
U1104T1687144948.pdf','applicants_certifications','Certification of
passing.pdf','U1104T1687144948.pdf','2023-06-19 03:22:28','2023-06-19
03:22:28',NULL,'1104',NULL,NULL),
(3503,1354,'ELIGIBILITY','applicants_certifications/
U1354T1687144990.jpeg','applicants_certifications','received_256321537003195.jpeg',
'U1354T1687144990.jpeg','2023-06-19 03:23:10','2023-06-19
03:23:10',NULL,'1354',NULL,NULL),(3504,1104,'PDS','applicants_certifications/
U1104T1687144996.pdf','applicants_certifications','Personal Data
Sheet.pdf','U1104T1687144996.pdf','2023-06-19 03:23:16','2023-06-19
03:23:16',NULL,'1104',NULL,NULL),(3506,1337,'TOR','applicants_certifications/
U1337T1687145607.pdf','applicants_certifications','inbound7313184430145931702.pdf',
'U1337T1687145607.pdf','2023-06-19 03:33:27','2023-06-19
03:33:27',NULL,'1337',NULL,NULL),(3507,1337,'TOR','applicants_certifications/
U1337T1687145623.pdf','applicants_certifications','inbound4177037193623040022.pdf',
'U1337T1687145623.pdf','2023-06-19 03:33:43','2023-06-19
03:33:43',NULL,'1337',NULL,NULL),(3508,1337,'TOR','applicants_certifications/
U1337T1687145635.pdf','applicants_certifications','inbound1525096679971918117.pdf',
'U1337T1687145635.pdf','2023-06-19 03:33:55','2023-06-19
03:33:55',NULL,'1337',NULL,NULL),(3509,1337,'TOR','applicants_certifications/
U1337T1687145646.pdf','applicants_certifications','inbound1122608420714528202.pdf',
'U1337T1687145646.pdf','2023-06-19 03:34:06','2023-06-19
03:34:06',NULL,'1337',NULL,NULL),(3511,1270,'PDS','applicants_certifications/
U1270T1687145742.pdf','applicants_certifications','inbound5171180141756580449.pdf',
'U1270T1687145742.pdf','2023-06-19 03:35:42','2023-06-19
03:35:42',NULL,'1270',NULL,NULL),(3512,1270,'PDS','applicants_certifications/
U1270T1687145755.pdf','applicants_certifications','inbound3181427188296452086.pdf',
'U1270T1687145755.pdf','2023-06-19 03:35:55','2023-06-19
03:35:55',NULL,'1270',NULL,NULL),(3513,1270,'PDS','applicants_certifications/
U1270T1687145769.pdf','applicants_certifications','inbound6567871041723297636.pdf',
'U1270T1687145769.pdf','2023-06-19 03:36:09','2023-06-19
03:36:09',NULL,'1270',NULL,NULL),(3514,1270,'PDS','applicants_certifications/
U1270T1687145782.pdf','applicants_certifications','inbound2135304046124192931.pdf',
'U1270T1687145782.pdf','2023-06-19 03:36:22','2023-06-19
03:36:22',NULL,'1270',NULL,NULL),(3515,1337,'SWT','applicants_certifications/
U1337T1687145790.pdf','applicants_certifications','inbound7071346819656011867.pdf',
'U1337T1687145790.pdf','2023-06-19 03:36:30','2023-06-19
03:36:30',NULL,'1337',NULL,NULL),(3516,1337,'SWT','applicants_certifications/
U1337T1687145809.pdf','applicants_certifications','inbound5308685723907312600.pdf',
'U1337T1687145809.pdf','2023-06-19 03:36:49','2023-06-19
03:36:49',NULL,'1337',NULL,NULL),(3517,1337,'SWT','applicants_certifications/
U1337T1687145829.pdf','applicants_certifications','inbound4831914254954969632.pdf',
'U1337T1687145829
.pdf','2023-06-19 03:37:09','2023-06-19 03:37:09',NULL,'1337',NULL,NULL),
(3518,1337,'SWT','applicants_certifications/
U1337T1687145850.pdf','applicants_certifications','inbound5354685112064560799.pdf',
'U1337T1687145850.pdf','2023-06-19 03:37:30','2023-06-19
03:37:30',NULL,'1337',NULL,NULL),(3519,1337,'SWT','applicants_certifications/
U1337T1687145872.pdf','applicants_certifications','inbound2108633627724620633.pdf',
'U1337T1687145872.pdf','2023-06-19 03:37:52','2023-06-19
03:37:52',NULL,'1337',NULL,NULL),(3520,1337,'SWT','applicants_certifications/
U1337T1687145907.pdf','applicants_certifications','inbound1091257094399890927.pdf',
'U1337T1687145907.pdf','2023-06-19 03:38:27','2023-06-19
03:38:27',NULL,'1337',NULL,NULL),(3521,1337,'SWT','applicants_certifications/
U1337T1687145951.pdf','applicants_certifications','inbound5637720361725962386.pdf',
'U1337T1687145951.pdf','2023-06-19 03:39:11','2023-06-19
03:39:11',NULL,'1337',NULL,NULL),(3522,1337,'SWT','applicants_certifications/
U1337T1687145974.pdf','applicants_certifications','inbound292959594032406305.pdf','
U1337T1687145974.pdf','2023-06-19 03:39:34','2023-06-19
03:39:34',NULL,'1337',NULL,NULL),(3523,1337,'SWT','applicants_certifications/
U1337T1687145991.pdf','applicants_certifications','inbound586805210548306485.pdf','
U1337T1687145991.pdf','2023-06-19 03:39:51','2023-06-19
03:39:51',NULL,'1337',NULL,NULL),
(3524,1337,'ELIGIBILITY','applicants_certifications/
U1337T1687146027.pdf','applicants_certifications','inbound2342909600939699427.pdf',
'U1337T1687146027.pdf','2023-06-19 03:40:27','2023-06-19
03:40:27',NULL,'1337',NULL,NULL),
(3525,1337,'ELIGIBILITY','applicants_certifications/
U1337T1687146046.pdf','applicants_certifications','inbound279402979688187078.pdf','
U1337T1687146046.pdf','2023-06-19 03:40:46','2023-06-19
03:40:46',NULL,'1337',NULL,NULL),
(3526,1337,'ELIGIBILITY','applicants_certifications/
U1337T1687146077.pdf','applicants_certifications','inbound3681272563864973396.pdf',
'U1337T1687146077.pdf','2023-06-19 03:41:17','2023-06-19
03:41:17',NULL,'1337',NULL,NULL),(3527,1354,'PDS','applicants_certifications/
U1354T1687146104.jpeg','applicants_certifications','received_247252684671650.jpeg',
'U1354T1687146104.jpeg','2023-06-19 03:41:44','2023-06-19
03:41:44',NULL,'1354',NULL,NULL),(3528,1337,'PDS','applicants_certifications/
U1337T1687146113.pdf','applicants_certifications','inbound4491870988579531719.pdf',
'U1337T1687146113.pdf','2023-06-19 03:41:53','2023-06-19
03:41:53',NULL,'1337',NULL,NULL),(3529,1337,'PDS','applicants_certifications/
U1337T1687146129.pdf','applicants_certifications','inbound349471992743946891.pdf','
U1337T1687146129.pdf','2023-06-19 03:42:09','2023-06-19
03:42:09',NULL,'1337',NULL,NULL),(3530,1337,'PDS','applicants_certifications/
U1337T1687146150.pdf','applicants_certifications','inbound4339081888674834882.pdf',
'U1337T1687146150.pdf','2023-06-19 03:42:30','2023-06-19
03:42:30',NULL,'1337',NULL,NULL),(3531,1337,'PDS','applicants_certifications/
U1337T1687146179.pdf','applicants_certifications','inbound4579940305025857988.pdf',
'U1337T1687146179.pdf','2023-06-19 03:42:59','2023-06-19
03:42:59',NULL,'1337',NULL,NULL),(3532,1354,'PDS','applicants_certifications/
U1354T1687146212.jpeg','applicants_certifications','received_1409771746487163.jpeg'
,'U1354T1687146212.jpeg','2023-06-19 03:43:32','2023-06-19
03:43:32',NULL,'1354',NULL,NULL),(3533,1354,'PDS','applicants_certifications/
U1354T1687146284.jpeg','applicants_certifications','received_569892511981215.jpeg',
'U1354T1687146284.jpeg','2023-06-19 03:44:44','2023-06-19
03:44:44',NULL,'1354',NULL,NULL),(3534,1354,'PDS','applicants_certifications/
U1354T1687146303.jpeg','applicants_certifications','received_1017138002611167.jpeg'
,'U1354T1687146303.jpeg','2023-06-19 03:45:03','2023-06-19
03:45:03',NULL,'1354',NULL,NULL),
(3545,1365,'ELIGIBILITY','applicants_certifications/
U1365T1687146813.pdf','applicants_certifications','inbound3485676135604277334.pdf',
'U1365T1687146813.pdf','2023-06-19 03:53:33','2023-06-19
03:53:33',NULL,'1365',NULL,NULL),(3549,1147,'TOR','applicants_certifications/
U1147T1687147115.pdf','applicants_certifications','Official Transcript of
Record.pdf','U1147T1687147115.pdf','2023-06-19 03:58:35','2023-06-19
03:58:35',NULL,'1147',NULL,NULL),
(3550,1147,'ELIGIBILITY','applicants_certifications/
U1147T1687147195.jpg','applicants_certifications','PRC
License.jpg','U1147T1687147195.jpg','2023-06-19 03:59:55','2023-06-19
03:59:55',NULL,'1147',NULL,NULL),(3552,1147,'PDS','applicants_certifications/
U1147T1687147332.xlsx','applicants_certifications','Personal Data
Sheet.xlsx','U1147T1687147332.xlsx','2023-06-19 04:02:12','2023-06-19
04:02:12',NULL,'1147',NULL,NULL),(3553,1147,'PDS','applicants_certifications/
U1147T1687147385.pdf','applicants_certifications','WORK EXPERIENCE SHEET
UPDATED.pdf','U1147T1687147385.pdf','2023-06-19 04:03:05','2023-06-19
04:03:05',NULL,'1147',NULL,NULL),(3554,1288,'SWT','applicants_certifications/
U1288T1687147388.jpeg','applicants_certifications','IMG_1628.jpeg','U1288T168714738
8.jpeg','2023-06-19 04:03:08','2023-06-19 04:03:08',NULL,'1288',NULL,NULL),
(3555,1288,'SWT','applicants_certifications/
U1288T1687147440.jpeg','applicants_certifications','IMG_1627.jpeg','U1288T168714744
0.jpeg','2023-06-19 04:04:00','2023-06-19 04:04:00',NULL,'1288',NULL,NULL),
(3556,1288,'SWT','applicants_certifications/
U1288T1687147457.jpeg','applicants_certifications','IMG_1626.jpeg','U1288T168714745
7.jpeg','2023-06-19 04:04:17','2023-06-19 04:04:17',NULL,'1288',NULL,NULL),
(3557,1288,'SWT','applicants_certifications/
U1288T1687147473.jpeg','applicants_certifications','IMG_1625.jpeg','U1288T168714747
3.jpeg','2023-06-19 04:04:33','2023-06-19 04:04:33',NULL,'1288',NULL,NULL),
(3558,1288,'SWT','applicants_certifications/
U1288T1687147495.jpeg','applicants_certifications','IMG_1624.jpeg','U1288T168714749
5.jpeg','2023-06-19 04:04:55','2023-06-19 04:04:55',NULL,'1288',NULL,NULL),
(3560,1288,'SWT','applicants_certifications/
U1288T1687147515.jpeg','applicants_certifications','IMG_1623.jpeg','U1288T168714751
5.jpeg','2023-06-19 04:05:15','2023-06-19 04:05:15',NULL,'1288',NULL,NULL),
(3561,1288,'SWT','applicants_certifications/
U1288T1687147536.jpeg','applicants_certifications','IMG_1622.jpeg','U1288T168714753
6.jpeg','2023-06-19 04:05:36','2023-06-19 04:05:36',NULL,'1288',NULL,NULL),
(3562,1288,'SWT','applicants_certifications/
U1288T1687147555.jpeg','applicants_certifications','IMG_1620.jpeg','U1288T168714755
5.jpeg','2023-06-19 04:05:55','2023-06-19 04:05:55',NULL,'1288',NULL,NULL),
(3563,1288,'SWT','applicants_certifications/
U1288T1687147575.jpeg','applicants_certifications','IMG_1619.jpeg','U1288T168714757
5.jpeg','2023-06-19 04:06:15','2023-06-19 04:06:15',NULL,'1288',NULL,NULL),
(3564,1288,'SWT','applicants_certifications/
U1288T1687147601.jpeg','applicants_certifications','IMG_1618.jpeg','U1288T168714760
1.jpeg','2023-06-19 04:06:41','2023-06-19 04:06:41',NULL,'1288',NULL,NULL),
(3565,1288,'SWT','applicants_certifications/
U1288T1687147623.jpeg','applicants_certifications','IMG_1616.jpeg','U1288T168714762
3.jpeg','2023-06-19 04:07:03','2023-06-19 04:07:03',NULL,'1288',NULL,NULL),
(3566,1288,'SWT','applicants_certifications/
U1288T1687147636.jpeg','applicants_certifications','IMG_1629.jpeg','U1288T168714763
6.jpeg','2023-06-19 04:07:16','2023-06-19 04:07:16',NULL,'1288',NULL,NULL),
(3567,1161,'COE','applicants_certifications/
U1161T1687147730.pdf','applicants_certifications','inbound3498169027241687667.pdf',
'U1161T1687147730.pdf','2023-06-19 04:08:50','2023-06-19
04:08:50',NULL,'1161',NULL,NULL),(3568,1288,'TOR','applicants_certifications/
U1288T1687147767.jpeg','applicants_certifications','IMG_0997.jpeg','U1288T168714776
7.jpeg','2023-06-19 04:09:27','2023-06-19 04:09:27',NULL,'1288',NULL,NULL),
(3571,1161,'ELIGIBILITY','applicants_certifications/
U1161T1687147787.pdf','applicants_certifications','inbound5587204303284837432.pdf',
'U1161T1687147787.pdf','2023-06-19 04:09:47','2023-06-19
04:09:47',NULL,'1161',NULL,NULL),(3572,1288,'TOR','applicants_certifications/
U1288T1687147843.jpeg','applicants_certifications','IMG_0998.jpeg','U1288T168714784
3.jpeg','2023-06-19 04:10:43','2023-06-19 04:10:43',NULL,'1288',NULL,NULL),
(3578,1337,'COE','applicants_certifications/
U1337T1687147925.pdf','applicants_certifications','inbound4214044775024563379.pdf',
'U1337T1687147925.pdf','2023-06-19 04:12:05','2023-06-19
04:12:05',NULL,'1337',NULL,NULL),(3579,1363,'TOR','applicants_certifications/
U1363T1687147994.jpg','applicants_certifications','inbound2408312169620685741.jpg',
'U1363T1687147994.jpg','2023-06-19 04:13:14','2023-06-19
04:13:14',NULL,'1363',NULL,NULL),(3580,1355,'COE','applicants_certifications/
U1355T1687148031.pdf','applicants_certifications','Cert. of
Employment.pdf','U1355T1687148031.pdf','2023-06-19 04:13:51','2023-06-19
04:13:51',NULL,'1355',NULL,NULL),(3582,910,'COE','applicants_certifications/
U910T1687148349.pdf','applicants_certifications','Certificate of
Employment.pdf','U910T1687148349.pdf','2023-06-19 04:19:09','2023-06-19
04:19:09',NULL,'910',NULL,NULL),(3583,1161,'TOR','applicants_certifications/
U1161T1687148389.pdf','applicants_certifications','inbound2419717994413974835.pdf',
'U1161T1687148389.pdf','2023-06-19 04:19:49','2023-06-19
04:19:49',NULL,'1161',NULL,NULL),(3586,866,'COE','applicants_certifications/
U866T1687149276.pdf','applicants_certifications','COE.pdf','U866T1687149276.pdf','2
023-06-19 04:34:36','2023-06-19 04:34:36',NULL,'866',NULL,NULL),
(3588,1365,'COE','applicants_certifications/
U1365T1687149646.pdf','applicants_certifications','inbound1825948994813918991.pdf',
'U1365T1687149646.pdf','2023-06-19 04:40:46','2023-06-19
04:40:46',NULL,'1365',NULL,NULL),(3591,1366,'COE','applicants_certifications/
U1366T1687150046.jpeg','applicants_certifications','certificate of
employment.jpeg','U1366T1687150046.jpeg','2023-06-19 04:47:26','2023-06-19
04:47:26',NULL,'1366',NULL,NULL),(3596,1363,'COE','applicants_certifications/
U1363T1687150329.jpg','applicants_certifications','inbound5916426346594247346.jpg',
'U1363T1687150329.jpg','202
3-06-19 04:52:09','2023-06-19 04:52:09',NULL,'1363',NULL,NULL),
(3597,1365,'SWT','applicants_certifications/
U1365T1687150401.pdf','applicants_certifications','inbound4979243574169045830.pdf',
'U1365T1687150401.pdf','2023-06-19 04:53:21','2023-06-19
04:53:21',NULL,'1365',NULL,NULL),(3598,1363,'COE','applicants_certifications/
U1363T1687150437.jpg','applicants_certifications','inbound3915637872239029575.jpg',
'U1363T1687150437.jpg','2023-06-19 04:53:57','2023-06-19
04:53:57',NULL,'1363',NULL,NULL),
(3599,1363,'ELIGIBILITY','applicants_certifications/
U1363T1687150572.jpg','applicants_certifications','inbound1333899217607938237.jpg',
'U1363T1687150572.jpg','2023-06-19 04:56:12','2023-06-19
04:56:12',NULL,'1363',NULL,NULL),
(3600,1363,'ELIGIBILITY','applicants_certifications/
U1363T1687150779.jpg','applicants_certifications','inbound3707819091957456319.jpg',
'U1363T1687150779.jpg','2023-06-19 04:59:39','2023-06-19
04:59:39',NULL,'1363',NULL,NULL),(3602,1363,'SWT','applicants_certifications/
U1363T1687150878.jpg','applicants_certifications','inbound2690385250676719170.jpg',
'U1363T1687150878.jpg','2023-06-19 05:01:18','2023-06-19
05:01:18',NULL,'1363',NULL,NULL),(3604,1275,'COE','applicants_certifications/
U1275T1687150980.jpg','applicants_certifications','CERTIFICATE OF
EMPLOYMENT.jpg','U1275T1687150980.jpg','2023-06-19 05:03:00','2023-06-19
05:03:00',NULL,'1275',NULL,NULL),(3605,1363,'SWT','applicants_certifications/
U1363T1687151007.jpg','applicants_certifications','inbound9164836675541226449.jpg',
'U1363T1687151007.jpg','2023-06-19 05:03:27','2023-06-19
05:03:27',NULL,'1363',NULL,NULL),(3606,1363,'SWT','applicants_certifications/
U1363T1687151074.jpg','applicants_certifications','inbound419702676863207947.jpg','
U1363T1687151074.jpg','2023-06-19 05:04:34','2023-06-19
05:04:34',NULL,'1363',NULL,NULL),(3607,1363,'SWT','applicants_certifications/
U1363T1687151152.jpg','applicants_certifications','inbound4222208705281399716.jpg',
'U1363T1687151152.jpg','2023-06-19 05:05:52','2023-06-19
05:05:52',NULL,'1363',NULL,NULL),(3609,1363,'SWT','applicants_certifications/
U1363T1687151221.jpg','applicants_certifications','inbound8125324864955161065.jpg',
'U1363T1687151221.jpg','2023-06-19 05:07:01','2023-06-19
05:07:01',NULL,'1363',NULL,NULL),(3610,1363,'SWT','applicants_certifications/
U1363T1687151297.jpg','applicants_certifications','inbound6829540192464635978.jpg',
'U1363T1687151297.jpg','2023-06-19 05:08:17','2023-06-19
05:08:17',NULL,'1363',NULL,NULL),(3611,1363,'SWT','applicants_certifications/
U1363T1687151388.jpg','applicants_certifications','inbound315578731554991733.jpg','
U1363T1687151388.jpg','2023-06-19 05:09:48','2023-06-19
05:09:48',NULL,'1363',NULL,NULL),(3612,1362,'PDS','applicants_certifications/
U1362T1687151439.pdf','applicants_certifications','PDS.pdf','U1362T1687151439.pdf',
'2023-06-19 05:10:39','2023-06-19 05:10:39',NULL,'1362',NULL,NULL),
(3613,1363,'SWT','applicants_certifications/
U1363T1687151461.jpg','applicants_certifications','inbound2775894359968138326.jpg',
'U1363T1687151461.jpg','2023-06-19 05:11:01','2023-06-19
05:11:01',NULL,'1363',NULL,NULL),(3615,1378,'TOR','applicants_certifications/
U1378T1687151535.jpg','applicants_certifications','DulnuanCarenAyl_TOR-1st
page.jpg','U1378T1687151535.jpg','2023-06-19 05:12:15','2023-06-19
05:12:15',NULL,'1378',NULL,NULL),(3616,1363,'SWT','applicants_certifications/
U1363T1687151537.jpg','applicants_certifications','inbound107316929177373915.jpg','
U1363T1687151537.jpg','2023-06-19 05:12:17','2023-06-19
05:12:17',NULL,'1363',NULL,NULL),(3618,1378,'TOR','applicants_certifications/
U1378T1687151561.jpg','applicants_certifications','DulnuanCarenAyl_TOR-
2ndpage.jpg','U1378T1687151561.jpg','2023-06-19 05:12:41','2023-06-19
05:12:41',NULL,'1378',NULL,NULL),(3619,1363,'SWT','applicants_certifications/
U1363T1687151650.jpg','applicants_certifications','inbound6233443375111434428.jpg',
'U1363T1687151650.jpg','2023-06-19 05:14:10','2023-06-19
05:14:10',NULL,'1363',NULL,NULL),(3620,1365,'SWT','applicants_certifications/
U1365T1687151659.pdf','applicants_certifications','11. cert of training-
Acctg.pdf','U1365T1687151659.pdf','2023-06-19 05:14:19','2023-06-19
05:14:19',NULL,'1365',NULL,NULL),(3621,1378,'COE','applicants_certifications/
U1378T1687151691.jpg','applicants_certifications','DamonaCarenAyl_CertificateOfEmpl
oyment.jpg','U1378T1687151691.jpg','2023-06-19 05:14:51','2023-06-19
05:14:51',NULL,'1378',NULL,NULL),(3622,1363,'SWT','applicants_certifications/
U1363T1687151725.jpg','applicants_certifications','inbound2439777921273960915.jpg',
'U1363T1687151725.jpg','2023-06-19 05:15:25','2023-06-19
05:15:25',NULL,'1363',NULL,NULL),(3623,1362,'COE','applicants_certifications/
U1362T1687151781.pdf','applicants_certifications','Certificate of
Employment.pdf','U1362T1687151781.pdf','2023-06-19 05:16:21','2023-06-19
05:16:21',NULL,'1362',NULL,NULL),(3625,1380,'SWT','applicants_certifications/
U1380T1687151798.pdf','applicants_certifications','7. Certificates of training
attended.pdf','U1380T1687151798.pdf','2023-06-19 05:16:38','2023-06-19
05:16:38',NULL,'1380',NULL,NULL),(3626,1362,'PDS','applicants_certifications/
U1362T1687151805.pdf','applicants_certifications','Work Experience
Sheet.pdf','U1362T1687151805.pdf','2023-06-19 05:16:45','2023-06-19
05:16:45',NULL,'1362',NULL,NULL),(3627,1275,'SWT','applicants_certifications/
U1275T1687151809.jpg','applicants_certifications','SPECIAL
ORDERS.jpg','U1275T1687151809.jpg','2023-06-19 05:16:49','2023-06-19
05:16:49',NULL,'1275',NULL,NULL),
(3628,1380,'ELIGIBILITY','applicants_certifications/
U1380T1687151815.pdf','applicants_certifications','9. Certificate of Eligibility
(Bar).pdf','U1380T1687151815.pdf','2023-06-19 05:16:55','2023-06-19
05:16:55',NULL,'1380',NULL,NULL),
(3629,1380,'ELIGIBILITY','applicants_certifications/
U1380T1687151832.pdf','applicants_certifications','8. Certificate of Eligibility
(CPA).pdf','U1380T1687151832.pdf','2023-06-19 05:17:12','2023-06-19
05:17:12',NULL,'1380',NULL,NULL),(3630,1363,'SWT','applicants_certifications/
U1363T1687151840.jpg','applicants_certifications','inbound711334046745026540.jpg','
U1363T1687151840.jpg','2023-06-19 05:17:20','2023-06-19
05:17:20',NULL,'1363',NULL,NULL),(3631,910,'SWT','applicants_certifications/
U910T1687151844.pdf','applicants_certifications','Training
1.pdf','U910T1687151844.pdf','2023-06-19 05:17:24','2023-06-19
05:17:24',NULL,'910',NULL,NULL),(3632,910,'SWT','applicants_certifications/
U910T1687151894.pdf','applicants_certifications','Training
2.pdf','U910T1687151894.pdf','2023-06-19 05:18:14','2023-06-19
05:18:14',NULL,'910',NULL,NULL),(3633,1363,'SWT','applicants_certifications/
U1363T1687151915.jpg','applicants_certifications','inbound7486240637671983686.jpg',
'U1363T1687151915.jpg','2023-06-19 05:18:35','2023-06-19
05:18:35',NULL,'1363',NULL,NULL),(3634,1362,'TOR','applicants_certifications/
U1362T1687164015.PDF','applicants_certifications','TOR.PDF','U1362T1687164015.PDF',
'2023-06-19 08:40:15','2023-06-19 08:40:15',NULL,'1362',NULL,NULL),
(3635,1362,'TOR','applicants_certifications/
U1362T1687151941.PDF','applicants_certifications','BSOA
Diploma.PDF','U1362T1687151941.PDF','2023-06-19 05:19:01','2023-06-19
05:19:01',NULL,'1362',NULL,NULL),(3636,1362,'TOR','applicants_certifications/
U1362T1687151952.PDF','applicants_certifications','ACOA
Diploma.PDF','U1362T1687151952.PDF','2023-06-19 05:19:12','2023-06-19
05:19:12',NULL,'1362',NULL,NULL),(3637,1380,'TOR','applicants_certifications/
U1380T1687151964.pdf','applicants_certifications','Law TOR -
Salazar.pdf','U1380T1687151964.pdf','2023-06-19 05:19:24','2023-06-19
05:19:24',NULL,'1380',NULL,NULL),(3638,1363,'SWT','applicants_certifications/
U1363T1687151997.jpg','applicants_certifications','inbound1476078247056874952.jpg',
'U1363T1687151997.jpg','2023-06-19 05:19:57','2023-06-19
05:19:57',NULL,'1363',NULL,NULL),(3642,866,'SWT','applicants_certifications/
U866T1687152101.jpeg','applicants_certifications','received_1421830535246221.jpeg',
'U866T1687152101.jpeg','2023-06-19 05:21:41','2023-06-19
05:21:41',NULL,'866',NULL,NULL),(3643,1363,'SWT','applicants_certifications/
U1363T1687152131.jpg','applicants_certifications','inbound3065327337119938614.jpg',
'U1363T1687152131.jpg','2023-06-19 05:22:11','2023-06-19
05:22:11',NULL,'1363',NULL,NULL),(3644,1378,'SWT','applicants_certifications/
U1378T1687152149.jpg','applicants_certifications','Certificate
_TheEdukCircle.jpg','U1378T1687152149.jpg','2023-06-19 05:22:29','2023-06-19
05:22:29',NULL,'1378',NULL,NULL),(3645,1378,'SWT','applicants_certifications/
U1378T1687152173.jpg','applicants_certifications','Certificate_ZenHotel.jpg','U1378
T1687152173.jpg','2023-06-19 05:22:53','2023-06-19
05:22:53',NULL,'1378',NULL,NULL),(3646,1378,'SWT','applicants_certifications/
U1378T1687152192.jpg','applicants_certifications','Certificate_HospitalityConventio
nBaguio.jpg','U1378T1687152192.jpg','2023-06-19 05:23:12','2023-06-19
05:23:12',NULL,'1378',NULL,NULL),(3647,1363,'SWT','applicants_certifications/
U1363T1687152215.jpg','applicants_certifications','inbound8507224758781018343.jpg',
'U1363T1687152215.jpg','2023-06-19 05:23:35','2023-06-19
05:23:35',NULL,'1363',NULL,NULL),
(3648,1378,'ELIGIBILITY','applicants_certifications/
U1378T1687152215.jpg','applicants_certifications','DulnuanCarenAyl_CSC-
Eligibility.jpg','U1378T1687152215.jpg','2023-06-19 05:23:35','2023-06-19
05:23:35',NULL,'1378',NULL,NULL),(3649,1363,'SWT','applicants_certifications/
U1363T1687152293.jpg','applicants_certifications','inbound1033767309320874272.jpg',
'U1363T1687152293.jpg','2023-06-19 05:24:53','2023-06-19
05:24:53',NULL,'1363',NULL,NULL),(3650,1363,'SWT','applicants_certifications/
U1363T1687152396.jpg','applicants_certifications','inbound7308964523322658855.jpg',
'U1363T1687152396.jpg','2023-06-19 05:26:36','2023-06-19
05:26:36',NULL,'1363',NULL,NULL),(3651,1378,'PDS','applicants_certifications/
U1378T1687152476.jpg','applicants_certifications','DulnuanCA_PDSpage1.jpg','U1378T1
687152476.jpg','2023-06-19
05:27:56','2023-06-19 05:27:56',NULL,'1378',NULL,NULL),
(3652,1378,'PDS','applicants_certifications/
U1378T1687152493.jpg','applicants_certifications','DulnuanCA_PDSpage2.jpg','U1378T1
687152493.jpg','2023-06-19 05:28:13','2023-06-19 05:28:13',NULL,'1378',NULL,NULL),
(3653,1378,'PDS','applicants_certifications/
U1378T1687152510.jpg','applicants_certifications','DulnuanCA_PDSpage3.jpg','U1378T1
687152510.jpg','2023-06-19 05:28:30','2023-06-19 05:28:30',NULL,'1378',NULL,NULL),
(3654,1378,'PDS','applicants_certifications/
U1378T1687152533.jpg','applicants_certifications','DulnuanCA_PDSpage4.jpg','U1378T1
687152533.jpg','2023-06-19 05:28:53','2023-06-19 05:28:53',NULL,'1378',NULL,NULL),
(3655,1363,'SWT','applicants_certifications/
U1363T1687152582.jpg','applicants_certifications','inbound8580035400355743432.jpg',
'U1363T1687152582.jpg','2023-06-19 05:29:42','2023-06-19
05:29:42',NULL,'1363',NULL,NULL),(3656,1363,'SWT','applicants_certifications/
U1363T1687152643.jpg','applicants_certifications','inbound2650609421388490360.jpg',
'U1363T1687152643.jpg','2023-06-19 05:30:43','2023-06-19
05:30:43',NULL,'1363',NULL,NULL),(3657,1363,'SWT','applicants_certifications/
U1363T1687152832.jpg','applicants_certifications','inbound5639841494655554393.jpg',
'U1363T1687152832.jpg','2023-06-19 05:33:52','2023-06-19
05:33:52',NULL,'1363',NULL,NULL),(3658,799,'SWT','applicants_certifications/
U799T1687152941.pdf','applicants_certifications','One Call Away_ The Art and
Practice of Telecounseling Webinar Certificate.pdf','U799T1687152941.pdf','2023-06-
19 05:35:41','2023-06-19 05:35:41',NULL,'799',NULL,NULL),
(3659,1363,'SWT','applicants_certifications/
U1363T1687152950.jpg','applicants_certifications','inbound8001513371999456838.jpg',
'U1363T1687152950.jpg','2023-06-19 05:35:50','2023-06-19
05:35:50',NULL,'1363',NULL,NULL),(3660,1363,'SWT','applicants_certifications/
U1363T1687153037.jpg','applicants_certifications','inbound4005012591016725907.jpg',
'U1363T1687153037.jpg','2023-06-19 05:37:17','2023-06-19
05:37:17',NULL,'1363',NULL,NULL),(3661,910,'SWT','applicants_certifications/
U910T1687153116.pdf','applicants_certifications','Training
5.pdf','U910T1687153116.pdf','2023-06-19 05:38:36','2023-06-19
05:38:36',NULL,'910',NULL,NULL),(3662,910,'SWT','applicants_certifications/
U910T1687153150.pdf','applicants_certifications','Training
6.pdf','U910T1687153150.pdf','2023-06-19 05:39:10','2023-06-19
05:39:10',NULL,'910',NULL,NULL),(3663,1363,'SWT','applicants_certifications/
U1363T1687153169.jpg','applicants_certifications','inbound1440715952929549124.jpg',
'U1363T1687153169.jpg','2023-06-19 05:39:29','2023-06-19
05:39:29',NULL,'1363',NULL,NULL),(3664,910,'SWT','applicants_certifications/
U910T1687153185.jpg','applicants_certifications','Training
4.jpg','U910T1687153185.jpg','2023-06-19 05:39:45','2023-06-19
05:39:45',NULL,'910',NULL,NULL),(3665,1362,'SWT','applicants_certifications/
U1362T1687153241.pdf','applicants_certifications','PhilGEPS
Training.pdf','U1362T1687153241.pdf','2023-06-19 05:40:41','2023-06-19
05:40:41',NULL,'1362',NULL,NULL),(3666,1362,'SWT','applicants_certifications/
U1362T1687153258.pdf','applicants_certifications','Capacity Bldg for CAR DENR
Finance Personnel .pdf','U1362T1687153258.pdf','2023-06-19 05:40:58','2023-06-19
05:40:58',NULL,'1362',NULL,NULL),(3667,1363,'SWT','applicants_certifications/
U1363T1687153261.jpg','applicants_certifications','inbound4259643393178261320.jpg',
'U1363T1687153261.jpg','2023-06-19 05:41:01','2023-06-19
05:41:01',NULL,'1363',NULL,NULL),(3668,1362,'SWT','applicants_certifications/
U1362T1687153283.pdf','applicants_certifications','Webinar on ENR Frontline
Course.pdf','U1362T1687153283.pdf','2023-06-19 05:41:23','2023-06-19
05:41:23',NULL,'1362',NULL,NULL),(3669,1362,'SWT','applicants_certifications/
U1362T1687153304.jpg','applicants_certifications','Webinar on
Netiquettes.jpg','U1362T1687153304.jpg','2023-06-19 05:41:44','2023-06-19
05:41:44',NULL,'1362',NULL,NULL),(3670,1362,'SWT','applicants_certifications/
U1362T1687153324.jpg','applicants_certifications','Hard Copy No
More.jpg','U1362T1687153324.jpg','2023-06-19 05:42:04','2023-06-19
05:42:04',NULL,'1362',NULL,NULL),(3671,1356,'TOR','applicants_certifications/
U1356T1687153393.jpeg','applicants_certifications','EAC4A39B-949E-4952-844B-
4B239B1D6039.jpeg','U1356T1687153393.jpeg','2023-06-19 05:43:13','2023-06-19
05:43:13',NULL,'1356',NULL,NULL),(3672,1362,'SWT','applicants_certifications/
U1362T1687153398.jpg','applicants_certifications','Organizational Behavior Topic
2.jpg','U1362T1687153398.jpg','2023-06-19 05:43:18','2023-06-19
05:43:18',NULL,'1362',NULL,NULL),(3673,1363,'SWT','applicants_certifications/
U1363T1687153411.jpg','applicants_certifications','inbound56325486808117178.jpg','U
1363T1687153411.jpg','2023-06-19 05:43:31','2023-06-19
05:43:31',NULL,'1363',NULL,NULL),(3674,1362,'SWT','applicants_certifications/
U1362T1687153437.jpg','applicants_certifications','Organizational Behavior Topic
1.jpg','U1362T1687153437.jpg','2023-06-19 05:43:57','2023-06-19
05:43:57',NULL,'1362',NULL,NULL),(3676,1363,'SWT','applicants_certifications/
U1363T1687153490.jpg','applicants_certifications','inbound2580026936691029270.jpg',
'U1363T1687153490.jpg','2023-06-19 05:44:50','2023-06-19
05:44:50',NULL,'1363',NULL,NULL),(3677,1362,'SWT','applicants_certifications/
U1362T1687153498.PDF','applicants_certifications','PMIS
Training.PDF','U1362T1687153498.PDF','2023-06-19 05:44:58','2023-06-19
05:44:58',NULL,'1362',NULL,NULL),(3678,1362,'SWT','applicants_certifications/
U1362T1687153511.PDF','applicants_certifications','Livelihood Enterprise
Training.PDF','U1362T1687153511.PDF','2023-06-19 05:45:11','2023-06-19
05:45:11',NULL,'1362',NULL,NULL),(3679,1362,'SWT','applicants_certifications/
U1362T1687153577.PDF','applicants_certifications','tax update
seminar.PDF','U1362T1687153577.PDF','2023-06-19 05:46:17','2023-06-19
05:46:17',NULL,'1362',NULL,NULL),(3680,1362,'SWT','applicants_certifications/
U1362T1687153601.PDF','applicants_certifications','FMP Orientation & Levelling Off
Workshop.PDF','U1362T1687153601.PDF','2023-06-19 05:46:41','2023-06-19
05:46:41',NULL,'1362',NULL,NULL),(3682,1356,'COE','applicants_certifications/
U1356T1687153688.jpeg','applicants_certifications','53EA895C-163F-4414-8884-
445C01813828.jpeg','U1356T1687153688.jpeg','2023-06-19 05:48:08','2023-06-19
05:48:08',NULL,'1356',NULL,NULL),(3683,1362,'SWT','applicants_certifications/
U1362T1687153700.PDF','applicants_certifications','Staff Dev\'t Training on Org\'l
& Financial Mgmt.PDF','U1362T1687153700.PDF','2023-06-19 05:48:20','2023-06-19
05:48:20',NULL,'1362',NULL,NULL),(3684,1363,'SWT','applicants_certifications/
U1363T1687153705.jpg','applicants_certifications','inbound489812141677545770.jpg','
U1363T1687153705.jpg','2023-06-19 05:48:25','2023-06-19
05:48:25',NULL,'1363',NULL,NULL),(3685,1362,'SWT','applicants_certifications/
U1362T1687153780.PDF','applicants_certifications','facilitation skills
training.PDF','U1362T1687153780.PDF','2023-06-19 05:49:40','2023-06-19
05:49:40',NULL,'1362',NULL,NULL),(3686,1362,'SWT','applicants_certifications/
U1362T1687153791.PDF','applicants_certifications','Acivity Facilitation,
Documentation with Basic Computer Operations
Training.PDF','U1362T1687153791.PDF','2023-06-19 05:49:51','2023-06-19
05:49:51',NULL,'1362',NULL,NULL),(3687,1362,'SWT','applicants_certifications/
U1362T1687153815.PDF','applicants_certifications','UACS for Accounting & Budget
Personnel.PDF','U1362T1687153815.PDF','2023-06-19 05:50:15','2023-06-19
05:50:15',NULL,'1362',NULL,NULL),(3688,1362,'SWT','applicants_certifications/
U1362T1687153831.PDF','applicants_certifications','Simplified Bookkeeping & Report
Writing.PDF','U1362T1687153831.PDF','2023-06-19 05:50:31','2023-06-19
05:50:31',NULL,'1362',NULL,NULL),(3691,1362,'SWT','applicants_certifications/
U1362T1687153857.PDF','applicants_certifications','Training Reqt for Common Gov\'t
Transactions..PDF','U1362T1687153857.PDF','2023-06-19 05:50:57','2023-06-19
05:50:57',NULL,'1362',NULL,NULL),(3692,1363,'SWT','applicants_certifications/
U1363T1687153861.jpg','applicants_certifications','inbound1805291439421941638.jpg',
'U1363T1687153861.jpg','2023-06-19 05:51:01','2023-06-19
05:51:01',NULL,'1363',NULL,NULL),(3694,1362,'SWT','applicants_certifications/
U1362T1687153881.PDF','applicants_certifications','Leadership & Activity Proposal
Training.PDF','U1362T1687153881.PDF','2023-06-19 05:51:21','2023-06-19
05:51:21',NULL,'1362',NULL,NULL),(3695,1362,'SWT','applicants_certifications/
U1362T1687153901.PDF','applicants_certifications','Bookkeeping & Budget Preparation
Recording.PDF','U1362T1687153901.PDF','2023-06-19 05:51:41','2023-06-19
05:51:41',NULL,'1362',NULL,NULL),(3696,1363,'SWT','applicants_certifications/
U1363T1687153918.jpg','applicants_certifications','inbound8897086896789595725.jpg',
'U1363T1687153918.jpg','2023-06-19 05:51:58','2023-06-19
05:51:58',NULL,'1363',NULL,NULL),(3697,1362,'SWT','applicants_certifications/
U1362T1687153918.PDF','applicants_certifications','Wiwag Business
Week.PDF','U1362T1687153918.PDF','2023-06-19 05:51:58','2023-06-19
05:51:58',NULL,'1362',NULL,NULL),(3699,1362,'SWT','applicants_certifications/
U1362T1687153937.PDF','applicants_certifications','Business Process Outsourcing
Course - SITEL.PDF','U1362T1687153937.PDF','2023-06-19 05:52:17','2023-06-19
05:52:17',NULL,'1362',NULL,NULL),(3701,1356,'TOR','applicants_certifications/
U1356T1687153959.jpeg','applicants_certifications','13F2422B-E36D-4D6D-B574-
165145FDDA6D.jpeg','U1356T1687153959.jpeg','2023-06-19 05:52:39','2023-06-19
05:52:39',NULL,'1356',NULL,NULL),(3702,1363,'SWT','applicants_certifications/
U1363T1687153968.jpg','applicants_certifications','inbound2705769516530212286.jpg',
'U1363T1687153968.jpg','2023-06-19 05:52:48','2023-06-19
05:52:48',NULL,'1363',NULL,NULL),(3703,1356,'COE','applicants_certifications/
U1356T1687153987.jpeg','applicants_certifications','8E0B9F7E-E789-41D0-8786-
B97D65772AFF.jpeg','U1356T1687153987.jpeg','2023-06-19
05:53:07','2023-06-19 05:53:07',NULL,'1356',NULL,NULL),
(3704,1356,'COE','applicants_certifications/
U1356T1687154011.jpeg','applicants_certifications','A3F14330-3ABC-4162-9507-
99D3F0965C32.jpeg','U1356T1687154011.jpeg','2023-06-19 05:53:31','2023-06-19
05:53:31',NULL,'1356',NULL,NULL),(3705,1363,'SWT','applicants_certifications/
U1363T1687154015.jpg','applicants_certifications','inbound1916843474374043462.jpg',
'U1363T1687154015.jpg','2023-06-19 05:53:35','2023-06-19
05:53:35',NULL,'1363',NULL,NULL),(3706,1356,'SWT','applicants_certifications/
U1356T1687154037.jpeg','applicants_certifications','7D759646-C0AB-4523-B25A-
D4EE2C7D8B5D.jpeg','U1356T1687154037.jpeg','2023-06-19 05:53:58','2023-06-19
05:53:58',NULL,'1356',NULL,NULL),(3707,1356,'SWT','applicants_certifications/
U1356T1687154070.jpeg','applicants_certifications','E9D092D0-ECFB-4B2E-9AE2-
B3F9EAA2EA71.jpeg','U1356T1687154070.jpeg','2023-06-19 05:54:30','2023-06-19
05:54:30',NULL,'1356',NULL,NULL),(3708,1356,'SWT','applicants_certifications/
U1356T1687154104.jpeg','applicants_certifications','F31C0AD2-3265-4CDF-8B1C-
B1AD4322727F.jpeg','U1356T1687154104.jpeg','2023-06-19 05:55:04','2023-06-19
05:55:04',NULL,'1356',NULL,NULL),(3709,1356,'SWT','applicants_certifications/
U1356T1687154131.jpeg','applicants_certifications','4D6EE23B-1AB9-4BA9-88D2-
E814C3FC6638.jpeg','U1356T1687154131.jpeg','2023-06-19 05:55:31','2023-06-19
05:55:31',NULL,'1356',NULL,NULL),
(3710,1356,'ELIGIBILITY','applicants_certifications/
U1356T1687154158.jpeg','applicants_certifications','8FDAD03D-9769-417B-86EA-
774A06509913.jpeg','U1356T1687154158.jpeg','2023-06-19 05:55:58','2023-06-19
05:55:58',NULL,'1356',NULL,NULL),(3711,1356,'PDS','applicants_certifications/
U1356T1687154209.jpeg','applicants_certifications','2521364B-8C3A-4032-8F3B-
D0BA8503BD4C.jpeg','U1356T1687154209.jpeg','2023-06-19 05:56:49','2023-06-19
05:56:49',NULL,'1356',NULL,NULL),(3712,1356,'PDS','applicants_certifications/
U1356T1687154307.jpeg','applicants_certifications','6B88E52D-12E0-485E-B688-
5D794B12A19A.jpeg','U1356T1687154307.jpeg','2023-06-19 05:58:27','2023-06-19
05:58:27',NULL,'1356',NULL,NULL),(3713,1356,'PDS','applicants_certifications/
U1356T1687154409.jpeg','applicants_certifications','72250D8B-9A3D-48E8-8331-
D7F6DA95D829.jpeg','U1356T1687154409.jpeg','2023-06-19 06:00:09','2023-06-19
06:00:09',NULL,'1356',NULL,NULL),(3714,1356,'PDS','applicants_certifications/
U1356T1687154438.jpeg','applicants_certifications','3F07F93D-C27A-4653-B0FB-
DFA33EC9FC29.jpeg','U1356T1687154438.jpeg','2023-06-19 06:00:38','2023-06-19
06:00:38',NULL,'1356',NULL,NULL),(3715,1236,'COE','applicants_certifications/
U1236T1687154466.pdf','applicants_certifications','service
record.pdf','U1236T1687154466.pdf','2023-06-19 06:01:06','2023-06-19
06:01:06',NULL,'1236',NULL,NULL),
(3716,1236,'ELIGIBILITY','applicants_certifications/
U1236T1687154541.pdf','applicants_certifications','license.pdf','U1236T1687154541.p
df','2023-06-19 06:02:21','2023-06-19 06:02:21',NULL,'1236',NULL,NULL),
(3718,1366,'SWT','applicants_certifications/
U1366T1687154713.jpg','applicants_certifications','Image
(28).jpg','U1366T1687154713.jpg','2023-06-19 06:05:13','2023-06-19
06:05:13',NULL,'1366',NULL,NULL),(3719,1366,'SWT','applicants_certifications/
U1366T1687154769.jpg','applicants_certifications','Image
(29).jpg','U1366T1687154769.jpg','2023-06-19 06:06:09','2023-06-19
06:06:09',NULL,'1366',NULL,NULL),(3720,1362,'PDS','applicants_certifications/
U1362T1687155071.pdf','applicants_certifications','2021-2022
IPCR.pdf','U1362T1687155071.pdf','2023-06-19 06:11:11','2023-06-19
06:11:11',NULL,'1362',NULL,NULL),(3721,1236,'PDS','applicants_certifications/
U1236T1687155254.jpg','applicants_certifications','IMG20230619140912
b.jpg','U1236T1687155254.jpg','2023-06-19 06:14:14','2023-06-19
06:14:14',NULL,'1236',NULL,NULL),(3722,979,'TOR','applicants_certifications/
U979T1687155303.pdf','applicants_certifications','JPBuendia-
tor.pdf','U979T1687155303.pdf','2023-06-19 06:15:03','2023-06-19
06:15:03',NULL,'979',NULL,NULL),(3723,979,'COE','applicants_certifications/
U979T1687155330.pdf','applicants_certifications','JPBuendia-certificate of
employment, performance rating, awards.pdf','U979T1687155330.pdf','2023-06-19
06:15:30','2023-06-19 06:15:30',NULL,'979',NULL,NULL),
(3724,979,'SWT','applicants_certifications/
U979T1687155349.pdf','applicants_certifications','JPBuendia-certificate of
trainings and seminars.pdf','U979T1687155349.pdf','2023-06-19 06:15:49','2023-06-19
06:15:49',NULL,'979',NULL,NULL),
(3725,979,'ELIGIBILITY','applicants_certifications/
U979T1687155380.pdf','applicants_certifications','JPBuendia-certificate of
eligibility.pdf','U979T1687155380.pdf','2023-06-19 06:16:20','2023-06-19
06:16:20',NULL,'979',NULL,NULL),(3726,979,'PDS','applicants_certifications/
U979T1687155617.pdf','applicants_certifications','JPBuendia-Work Experience
Sheet.pdf','U979T1687155617.pdf','2023-06-19 06:20:17','2023-06-19
06:20:17',NULL,'979',NULL,NULL),(3727,979,'PDS','applicants_certifications/
U979T1687155657.pdf','applicants_certifications','JPBuendia-
PDS0001.pdf','U979T1687155657.pdf','2023-06-19 06:20:57','2023-06-19
06:20:57',NULL,'979',NULL,NULL),(3728,1236,'PDS','applicants_certifications/
U1236T1687156002.jpg','applicants_certifications','b.jpg','U1236T1687156002.jpg','2
023-06-19 06:26:42','2023-06-19 06:26:42',NULL,'1236',NULL,NULL),
(3729,1366,'ELIGIBILITY','applicants_certifications/
U1366T1687156026.jpg','applicants_certifications','Image
(30).jpg','U1366T1687156026.jpg','2023-06-19 06:27:06','2023-06-19
06:27:06',NULL,'1366',NULL,NULL),(3730,1236,'PDS','applicants_certifications/
U1236T1687156031.jpg','applicants_certifications','IMG20230619140929
b.jpg','U1236T1687156031.jpg','2023-06-19 06:27:11','2023-06-19
06:27:11',NULL,'1236',NULL,NULL),(3731,1366,'TOR','applicants_certifications/
U1366T1687156043.pdf','applicants_certifications','TOR.pdf','U1366T1687156043.pdf',
'2023-06-19 06:27:23','2023-06-19 06:27:23',NULL,'1366',NULL,NULL),
(3733,1236,'PDS','applicants_certifications/
U1236T1687156115.jpg','applicants_certifications','IMG20230619140950
b.jpg','U1236T1687156115.jpg','2023-06-19 06:28:35','2023-06-19
06:28:35',NULL,'1236',NULL,NULL),(3734,1236,'PDS','applicants_certifications/
U1236T1687156130.jpg','applicants_certifications','work
exp.jpg','U1236T1687156130.jpg','2023-06-19 06:28:50','2023-06-19
06:28:50',NULL,'1236',NULL,NULL),(3735,1236,'TOR','applicants_certifications/
U1236T1687156271.jpg','applicants_certifications','IMG_20230616_064711
(1).jpg','U1236T1687156271.jpg','2023-06-19 06:31:11','2023-06-19
06:31:11',NULL,'1236',NULL,NULL),(3736,1236,'TOR','applicants_certifications/
U1236T1687156286.jpg','applicants_certifications','IMG_20230619_141753
b.jpg','U1236T1687156286.jpg','2023-06-19 06:31:26','2023-06-19
06:31:26',NULL,'1236',NULL,NULL),(3737,1081,'TOR','applicants_certifications/
U1081T1687156491.pdf','applicants_certifications','OTR.pdf','U1081T1687156491.pdf',
'2023-06-19 06:34:51','2023-06-19 06:34:51',NULL,'1081',NULL,NULL),
(3738,1053,'TOR','applicants_certifications/
U1053T1687156564.jpg','applicants_certifications','TOR
1.jpg','U1053T1687156564.jpg','2023-06-19 06:36:04','2023-06-19
06:36:04',NULL,'1053',NULL,NULL),(3740,1053,'TOR','applicants_certifications/
U1053T1687156595.jpg','applicants_certifications','TOR
2.jpg','U1053T1687156595.jpg','2023-06-19 06:36:35','2023-06-19
06:36:35',NULL,'1053',NULL,NULL),(3741,1053,'COE','applicants_certifications/
U1053T1687156633.jpg','applicants_certifications','Service
Record.jpg','U1053T1687156633.jpg','2023-06-19 06:37:13','2023-06-19
06:37:13',NULL,'1053',NULL,NULL),
(3742,1081,'ELIGIBILITY','applicants_certifications/
U1081T1687156646.pdf','applicants_certifications','Scan 15 Jun 23
14·19·30.pdf','U1081T1687156646.pdf','2023-06-19 06:37:26','2023-06-19
06:37:26',NULL,'1081',NULL,NULL),(3743,1053,'SWT','applicants_certifications/
U1053T1687156661.jpg','applicants_certifications','Training
Certificate.jpg','U1053T1687156661.jpg','2023-06-19 06:37:41','2023-06-19
06:37:41',NULL,'1053',NULL,NULL),(3746,1082,'SWT','applicants_certifications/
U1082T1687156837.pdf','applicants_certifications','certificate.pdf','U1082T16871568
37.pdf','2023-06-19 06:40:37','2023-06-19 06:40:37',NULL,'1082',NULL,NULL),
(3747,1082,'ELIGIBILITY','applicants_certifications/
U1082T1687156864.pdf','applicants_certifications','license_compressed.pdf','U1082T1
687156864.pdf','2023-06-19 06:41:04','2023-06-19 06:41:04',NULL,'1082',NULL,NULL),
(3748,987,'PDS','applicants_certifications/
U987T1687156865.pdf','applicants_certifications','PDS 2023 with attached
Worksheet.pdf','U987T1687156865.pdf','2023-06-19 06:41:05','2023-06-19
06:41:05',NULL,'987',NULL,NULL),(3749,1082,'PDS','applicants_certifications/
U1082T1687156885.pdf','applicants_certifications','PDS
form.pdf','U1082T1687156885.pdf','2023-06-19 06:41:25','2023-06-19
06:41:25',NULL,'1082',NULL,NULL),
(3750,332,'ELIGIBILITY','applicants_certifications/
U332T1687156991.pdf','applicants_certifications','Certificate of
Eligibility.pdf','U332T1687156991.pdf','2023-06-19 06:43:11','2023-06-19
06:43:11',NULL,'332',NULL,NULL),(3751,332,'COE','applicants_certifications/
U332T1687157160.pdf','applicants_certifications','certificate of
employment.pdf','U332T1687157160.pdf','2023-06-19 06:46:00','2023-06-19
06:46:00',NULL,'332',NULL,NULL),(3752,1236,'SWT','applicants_certifications/
U1236T1687157201.jpg','applicants_certifications','cert.jpg','U1236T1687157201.jpg'
,'2023-06-19 06:46:41','2023-06-19 06:46:41',NULL,'1236',NULL,NULL),
(3753,1372,'TOR','applicants_certifications/
U1372T1687157575.pdf','applicants_certifications','TOR.pdf','U1372T1687157575.pdf',
'2023-06-19 06:52:55','2023-06-19 06:52:55',NULL,'1372',NULL,NULL),
(3754,332,'TOR','applicants_certifications/
U332T1687157665.pdf','applicants_certifications','Transcript- Vina-Vicente
ifsu_compressed.pdf','U332T1687157665.pdf','2023-06-19 06:54:25','2023-06-19
06:54:25',NULL,'332',NULL,NULL),(3757,1372,'COE','applicants_certifications/
U1372T1687157739.pdf','applicants_certifications','Employme
nt Certificate.pdf','U1372T1687157739.pdf','2023-06-19 06:55:39','2023-06-19
06:55:39',NULL,'1372',NULL,NULL),(3758,332,'SWT','applicants_certifications/
U332T1687157976.pdf','applicants_certifications','Certificate of
Trainings.pdf','U332T1687157976.pdf','2023-06-19 06:59:36','2023-06-19
06:59:36',NULL,'332',NULL,NULL),
(3760,1372,'ELIGIBILITY','applicants_certifications/
U1372T1687157994.pdf','applicants_certifications','PRC
ID.pdf','U1372T1687157994.pdf','2023-06-19 06:59:54','2023-06-19
06:59:54',NULL,'1372',NULL,NULL),(3762,1177,'PDS','applicants_certifications/
U1177T1687158284.xlsx','applicants_certifications','Personal Data
Sheet(PDS)_064747.xlsx','U1177T1687158284.xlsx','2023-06-19 07:04:44','2023-06-19
07:04:44',NULL,'1177',NULL,NULL),(3763,332,'PDS','applicants_certifications/
U332T1687158636.pdf','applicants_certifications','PDS-
Ifsu.pdf','U332T1687158636.pdf','2023-06-19 07:10:36','2023-06-19
07:10:36',NULL,'332',NULL,NULL),(3764,1177,'TOR','applicants_certifications/
U1177T1687158714.jpg','applicants_certifications','CamScanner_06-19-
2023_15.02_2.jpg','U1177T1687158714.jpg','2023-06-19 07:11:54','2023-06-19
07:11:54',NULL,'1177',NULL,NULL),(3765,1177,'TOR','applicants_certifications/
U1177T1687158737.jpg','applicants_certifications','CamScanner_06-19-
2023_15.02_3.jpg','U1177T1687158737.jpg','2023-06-19 07:12:17','2023-06-19
07:12:17',NULL,'1177',NULL,NULL),(3766,1177,'TOR','applicants_certifications/
U1177T1687158760.jpg','applicants_certifications','CamScanner_06-19-
2023_15.02_4.jpg','U1177T1687158760.jpg','2023-06-19 07:12:40','2023-06-19
07:12:40',NULL,'1177',NULL,NULL),
(3767,1177,'ELIGIBILITY','applicants_certifications/
U1177T1687158776.jpg','applicants_certifications','CamScanner_06-19-
2023_15.02_1.jpg','U1177T1687158776.jpg','2023-06-19 07:12:56','2023-06-19
07:12:56',NULL,'1177',NULL,NULL),(3768,1338,'COE','applicants_certifications/
U1338T1687159088.pdf','applicants_certifications','Certificate of
Employment.pdf','U1338T1687159088.pdf','2023-06-19 07:18:08','2023-06-19
07:18:08',NULL,'1338',NULL,NULL),(3769,1372,'SWT','applicants_certifications/
U1372T1687159126.pdf','applicants_certifications','Trainings and
certificate.pdf','U1372T1687159126.pdf','2023-06-19 07:18:46','2023-06-19
07:18:46',NULL,'1372',NULL,NULL),(3770,1161,'PDS','applicants_certifications/
U1161T1687159198.pdf','applicants_certifications','inbound91649640400539848.pdf','U
1161T1687159198.pdf','2023-06-19 07:19:58','2023-06-19
07:19:58',NULL,'1161',NULL,NULL),(3771,1352,'TOR','applicants_certifications/
U1352T1687159359.pdf','applicants_certifications','TOR.pdf','U1352T1687159359.pdf',
'2023-06-19 07:22:39','2023-06-19 07:22:39',NULL,'1352',NULL,NULL),
(3773,1352,'COE','applicants_certifications/
U1352T1687159445.pdf','applicants_certifications','Cert of
Employment20230619_15103547.pdf','U1352T1687159445.pdf','2023-06-19
07:24:05','2023-06-19 07:24:05',NULL,'1352',NULL,NULL),
(3774,1352,'SWT','applicants_certifications/
U1352T1687159469.pdf','applicants_certifications','CErt of
Trainings20230619_15054779.pdf','U1352T1687159469.pdf','2023-06-19 07:24:29','2023-
06-19 07:24:29',NULL,'1352',NULL,NULL),
(3775,1338,'PDS','applicants_certifications/
U1338T1687159469.pdf','applicants_certifications','Personal Data
Sheet.pdf','U1338T1687159469.pdf','2023-06-19 07:24:29','2023-06-19
07:24:29',NULL,'1338',NULL,NULL),
(3776,1352,'ELIGIBILITY','applicants_certifications/
U1352T1687159497.pdf','applicants_certifications','license.pdf','U1352T1687159497.p
df','2023-06-19 07:24:57','2023-06-19 07:24:57',NULL,'1352',NULL,NULL),
(3777,1338,'PDS','applicants_certifications/
U1338T1687159565.pdf','applicants_certifications','Application
Letter.pdf','U1338T1687159565.pdf','2023-06-19 07:26:05','2023-06-19
07:26:05',NULL,'1338',NULL,NULL),(3778,1367,'TOR','applicants_certifications/
U1367T1687159893.pdf','applicants_certifications','Transcript Of
Records.pdf','U1367T1687159893.pdf','2023-06-19 07:31:33','2023-06-19
07:31:33',NULL,'1367',NULL,NULL),(3783,1355,'TOR','applicants_certifications/
U1355T1687160092.pdf','applicants_certifications','Saint Louis
University.pdf','U1355T1687160092.pdf','2023-06-19 07:34:52','2023-06-19
07:34:52',NULL,'1355',NULL,NULL),
(3784,1355,'ELIGIBILITY','applicants_certifications/
U1355T1687160125.pdf','applicants_certifications','Career Service
Eligibility.pdf','U1355T1687160125.pdf','2023-06-19 07:35:25','2023-06-19
07:35:25',NULL,'1355',NULL,NULL),(3785,1383,'COE','applicants_certifications/
U1383T1687160270.jpg','applicants_certifications','COE.jpg','U1383T1687160270.jpg',
'2023-06-19 07:37:50','2023-06-19 07:37:50',NULL,'1383',NULL,NULL),
(3786,1383,'TOR','applicants_certifications/
U1383T1687160371.pdf','applicants_certifications','TOR-
ELSIE.pdf','U1383T1687160371.pdf','2023-06-19 07:39:31','2023-06-19
07:39:31',NULL,'1383',NULL,NULL),
(3788,1053,'ELIGIBILITY','applicants_certifications/
U1053T1687160507.jpg','applicants_certifications','Authenticated PRC
license.jpg','U1053T1687160507.jpg','2023-06-19 07:41:47','2023-06-19
07:41:47',NULL,'1053',NULL,NULL),(3789,1307,'TOR','applicants_certifications/
U1307T1687160534.jpg','applicants_certifications','inbound6118269918441069251.jpg',
'U1307T1687160534.jpg','2023-06-19 07:42:14','2023-06-19
07:42:14',NULL,'1307',NULL,NULL),(3791,1307,'TOR','applicants_certifications/
U1307T1687160553.jpg','applicants_certifications','inbound9035144723820063312.jpg',
'U1307T1687160553.jpg','2023-06-19 07:42:33','2023-06-19
07:42:33',NULL,'1307',NULL,NULL),(3795,1366,'PDS','applicants_certifications/
U1366T1687160668.jpeg','applicants_certifications','received_1438012096991030.jpeg'
,'U1366T1687160668.jpeg','2023-06-19 07:44:28','2023-06-19
07:44:28',NULL,'1366',NULL,NULL),(3798,1307,'COE','applicants_certifications/
U1307T1687160831.jpg','applicants_certifications','inbound2839772030951547708.jpg',
'U1307T1687160831.jpg','2023-06-19 07:47:11','2023-06-19
07:47:11',NULL,'1307',NULL,NULL),(3799,1307,'COE','applicants_certifications/
U1307T1687160849.jpg','applicants_certifications','inbound6923934074465818141.jpg',
'U1307T1687160849.jpg','2023-06-19 07:47:29','2023-06-19
07:47:29',NULL,'1307',NULL,NULL),
(3800,1388,'ELIGIBILITY','applicants_certifications/
U1388T1687160863.jpg','applicants_certifications','Civil Service
Eligibility.jpg','U1388T1687160863.jpg','2023-06-19 07:47:43','2023-06-19
07:47:43',NULL,'1388',NULL,NULL),(3801,1307,'PDS','applicants_certifications/
U1307T1687160887.jpg','applicants_certifications','inbound1307687717085470102.jpg',
'U1307T1687160887.jpg','2023-06-19 07:48:07','2023-06-19
07:48:07',NULL,'1307',NULL,NULL),
(3802,1388,'ELIGIBILITY','applicants_certifications/
U1388T1687160898.jpg','applicants_certifications','PhilSAT
Eligibility.jpg','U1388T1687160898.jpg','2023-06-19 07:48:18','2023-06-19
07:48:18',NULL,'1388',NULL,NULL),(3803,1307,'PDS','applicants_certifications/
U1307T1687160916.jpg','applicants_certifications','inbound6104233264540221677.jpg',
'U1307T1687160916.jpg','2023-06-19 07:48:36','2023-06-19
07:48:36',NULL,'1307',NULL,NULL),(3804,1307,'PDS','applicants_certifications/
U1307T1687160940.jpg','applicants_certifications','inbound6410605600391427359.jpg',
'U1307T1687160940.jpg','2023-06-19 07:49:00','2023-06-19
07:49:00',NULL,'1307',NULL,NULL),(3805,1388,'SWT','applicants_certifications/
U1388T1687160948.jpg','applicants_certifications','Clinical Legal Education
1.jpg','U1388T1687160948.jpg','2023-06-19 07:49:08','2023-06-19
07:49:08',NULL,'1388',NULL,NULL),(3806,1307,'PDS','applicants_certifications/
U1307T1687160963.jpg','applicants_certifications','inbound8896567384513101268.jpg',
'U1307T1687160963.jpg','2023-06-19 07:49:23','2023-06-19
07:49:23',NULL,'1307',NULL,NULL),(3807,1388,'SWT','applicants_certifications/
U1388T1687160966.jpg','applicants_certifications','Certificate of
Appearance.jpg','U1388T1687160966.jpg','2023-06-19 07:49:26','2023-06-19
07:49:26',NULL,'1388',NULL,NULL),
(3809,1307,'ELIGIBILITY','applicants_certifications/
U1307T1687161109.jpg','applicants_certifications','inbound5110317255200905882.jpg',
'U1307T1687161109.jpg','2023-06-19 07:51:49','2023-06-19
07:51:49',NULL,'1307',NULL,NULL),(3810,1388,'SWT','applicants_certifications/
U1388T1687161114.pdf','applicants_certifications','Certificate of Participation
(1).pdf','U1388T1687161114.pdf','2023-06-19 07:51:54','2023-06-19
07:51:54',NULL,'1388',NULL,NULL),
(3813,1367,'ELIGIBILITY','applicants_certifications/
U1367T1687161661.pdf','applicants_certifications','Certificate Of
Eligibility.pdf','U1367T1687161661.pdf','2023-06-19 08:01:01','2023-06-19
08:01:01',NULL,'1367',NULL,NULL),(3814,1344,'COE','applicants_certifications/
U1344T1687161691.jpg','applicants_certifications','CERTIFICATE OF
EMPLOYMENT.jpg','U1344T1687161691.jpg','2023-06-19 08:01:31','2023-06-19
08:01:31',NULL,'1344',NULL,NULL),
(3815,1344,'ELIGIBILITY','applicants_certifications/
U1344T1687161815.jpg','applicants_certifications','LPT.jpg','U1344T1687161815.jpg',
'2023-06-19 08:03:35','2023-06-19 08:03:35',NULL,'1344',NULL,NULL),
(3816,1307,'SWT','applicants_certifications/
U1307T1687161861.jpg','applicants_certifications','inbound958364101970808804.jpg','
U1307T1687161861.jpg','2023-06-19 08:04:21','2023-06-19
08:04:21',NULL,'1307',NULL,NULL),(3817,1307,'SWT','applicants_certifications/
U1307T1687161883.jpg','applicants_certifications','inbound2219405598826274269.jpg',
'U1307T1687161883.jpg','2023-06-19 08:04:43','2023-06-19
08:04:43',NULL,'1307',NULL,NULL),
(3818,1307,'ELIGIBILITY','applicants_certifications/
U1307T1687161911.jpg','applicants_certifications','inbound8282792446968277774.jpg',
'U1307T1687161911.jpg','2023-06-19 08:05:11','2023-06-19
08:05:11',NULL,'1307',NULL,NULL),
(3819,1307,'ELIGIBILITY','applicants_certifications/
U1307T1687161936.jpg','applicants_certifications','inbound1173351145118318306.jpg',
'U1307T1687161936.jpg','2023-06-19 08:05:36','2023-06-19
08:05:36',NULL,'1307',NULL,NULL),(3820,1352,'PDS','applicants_certifications/
U1352T1687162019.pdf','applicants_certifications','PDS2.pdf','U1352T1687162019.pdf'
,'2023-06-19
08:06:59','2023-06-19 08:06:59',NULL,'1352',NULL,NULL),
(3821,1383,'ELIGIBILITY','applicants_certifications/
U1383T1687162478.pdf','applicants_certifications','CIVIL
SERVICE.pdf','U1383T1687162478.pdf','2023-06-19 08:14:38','2023-06-19
08:14:38',NULL,'1383',NULL,NULL),
(3822,1383,'ELIGIBILITY','applicants_certifications/
U1383T1687162523.pdf','applicants_certifications','CPA
RATING.pdf','U1383T1687162523.pdf','2023-06-19 08:15:23','2023-06-19
08:15:23',NULL,'1383',NULL,NULL),(3823,1053,'PDS','applicants_certifications/
U1053T1687162631.jpg','applicants_certifications','PDS page
1.jpg','U1053T1687162631.jpg','2023-06-19 08:17:11','2023-06-19
08:17:11',NULL,'1053',NULL,NULL),(3824,1344,'PDS','applicants_certifications/
U1344T1687162642.pdf','applicants_certifications','Work Experience
Sheet.pdf','U1344T1687162642.pdf','2023-06-19 08:17:22','2023-06-19
08:17:22',NULL,'1344',NULL,NULL),(3825,1053,'PDS','applicants_certifications/
U1053T1687162679.jpg','applicants_certifications','Page
02.jpg','U1053T1687162679.jpg','2023-06-19 08:17:59','2023-06-19
08:17:59',NULL,'1053',NULL,NULL),(3826,1053,'PDS','applicants_certifications/
U1053T1687162699.jpg','applicants_certifications','PDS page
03.jpg','U1053T1687162699.jpg','2023-06-19 08:18:19','2023-06-19
08:18:19',NULL,'1053',NULL,NULL),(3827,1053,'PDS','applicants_certifications/
U1053T1687162716.jpg','applicants_certifications','PDS page
04.jpg','U1053T1687162716.jpg','2023-06-19 08:18:36','2023-06-19
08:18:36',NULL,'1053',NULL,NULL),(3828,1368,'TOR','applicants_certifications/
U1368T1687162975.pdf','applicants_certifications','TOR.pdf','U1368T1687162975.pdf',
'2023-06-19 08:22:55','2023-06-19 08:22:55',NULL,'1368',NULL,NULL),
(3829,1344,'PDS','applicants_certifications/
U1344T1687163100.pdf','applicants_certifications','Personal Data
Sheet.pdf','U1344T1687163100.pdf','2023-06-19 08:25:00','2023-06-19
08:25:00',NULL,'1344',NULL,NULL),(3830,1390,'TOR','applicants_certifications/
U1390T1687163721.jpg','applicants_certifications','inbound3341577985873848502.jpg',
'U1390T1687163721.jpg','2023-06-19 08:35:21','2023-06-19
08:35:21',NULL,'1390',NULL,NULL),(3832,1390,'TOR','applicants_certifications/
U1390T1687163832.jpg','applicants_certifications','inbound312881919871822042.jpg','
U1390T1687163832.jpg','2023-06-19 08:37:12','2023-06-19
08:37:12',NULL,'1390',NULL,NULL),(3833,1390,'COE','applicants_certifications/
U1390T1687163958.jpg','applicants_certifications','inbound2398459573643652328.jpg',
'U1390T1687163958.jpg','2023-06-19 08:39:18','2023-06-19
08:39:18',NULL,'1390',NULL,NULL),(3835,1390,'COE','applicants_certifications/
U1390T1687163983.jpg','applicants_certifications','inbound1535945911428300054.jpg',
'U1390T1687163983.jpg','2023-06-19 08:39:43','2023-06-19
08:39:43',NULL,'1390',NULL,NULL),(3837,1390,'COE','applicants_certifications/
U1390T1687164009.jpg','applicants_certifications','inbound853629877009330289.jpg','
U1390T1687164009.jpg','2023-06-19 08:40:09','2023-06-19
08:40:09',NULL,'1390',NULL,NULL),(3838,1355,'PDS','applicants_certifications/
U1355T1687164024.pdf','applicants_certifications','Deborah Binwag-
Gumangan.pdf','U1355T1687164024.pdf','2023-06-19 08:40:24','2023-06-19
08:40:24',NULL,'1355',NULL,NULL),(3839,1390,'COE','applicants_certifications/
U1390T1687164036.jpg','applicants_certifications','inbound4652843398692168172.jpg',
'U1390T1687164036.jpg','2023-06-19 08:40:36','2023-06-19
08:40:36',NULL,'1390',NULL,NULL),(3841,1390,'COE','applicants_certifications/
U1390T1687164058.jpg','applicants_certifications','inbound1661667431494894279.jpg',
'U1390T1687164058.jpg','2023-06-19 08:40:58','2023-06-19
08:40:58',NULL,'1390',NULL,NULL),(3842,1390,'COE','applicants_certifications/
U1390T1687164078.jpg','applicants_certifications','inbound1091677983349352893.jpg',
'U1390T1687164078.jpg','2023-06-19 08:41:18','2023-06-19
08:41:18',NULL,'1390',NULL,NULL),(3843,1390,'COE','applicants_certifications/
U1390T1687164107.jpg','applicants_certifications','inbound5546564138263971758.jpg',
'U1390T1687164107.jpg','2023-06-19 08:41:47','2023-06-19
08:41:47',NULL,'1390',NULL,NULL),(3844,1390,'COE','applicants_certifications/
U1390T1687164127.jpg','applicants_certifications','inbound6309966733149451861.jpg',
'U1390T1687164127.jpg','2023-06-19 08:42:07','2023-06-19
08:42:07',NULL,'1390',NULL,NULL),(3845,1390,'PDS','applicants_certifications/
U1390T1687164259.jpg','applicants_certifications','inbound3063134346915228863.jpg',
'U1390T1687164259.jpg','2023-06-19 08:44:19','2023-06-19
08:44:19',NULL,'1390',NULL,NULL),(3846,1390,'PDS','applicants_certifications/
U1390T1687164371.jpg','applicants_certifications','inbound821790180458070838.jpg','
U1390T1687164371.jpg','2023-06-19 08:46:11','2023-06-19
08:46:11',NULL,'1390',NULL,NULL),(3847,1390,'PDS','applicants_certifications/
U1390T1687164415.jpg','applicants_certifications','inbound3598890720541336624.jpg',
'U1390T1687164415.jpg','2023-06-19 08:46:55','2023-06-19
08:46:55',NULL,'1390',NULL,NULL),(3848,1390,'PDS','applicants_certifications/
U1390T1687164443.jpg','applicants_certifications','inbound4085202033222106328.jpg',
'U1390T1687164443.jpg','2023-06-19 08:47:23','2023-06-19
08:47:23',NULL,'1390',NULL,NULL),(3849,1390,'PDS','applicants_certifications/
U1390T1687164531.jpg','applicants_certifications','inbound5636422863893322591.jpg',
'U1390T1687164531.jpg','2023-06-19 08:48:51','2023-06-19
08:48:51',NULL,'1390',NULL,NULL),
(3850,1390,'ELIGIBILITY','applicants_certifications/
U1390T1687164565.jpg','applicants_certifications','inbound2433161246429337339.jpg',
'U1390T1687164565.jpg','2023-06-19 08:49:25','2023-06-19
08:49:25',NULL,'1390',NULL,NULL),(3851,1390,'SWT','applicants_certifications/
U1390T1687164591.jpg','applicants_certifications','inbound7014481394460735060.jpg',
'U1390T1687164591.jpg','2023-06-19 08:49:51','2023-06-19
08:49:51',NULL,'1390',NULL,NULL),(3852,1390,'SWT','applicants_certifications/
U1390T1687164611.jpg','applicants_certifications','inbound7483675893922019054.jpg',
'U1390T1687164611.jpg','2023-06-19 08:50:11','2023-06-19
08:50:11',NULL,'1390',NULL,NULL),
(3854,1383,'ELIGIBILITY','applicants_certifications/
U1383T1687164648.jpg','applicants_certifications','PRC
ID.jpg','U1383T1687164648.jpg','2023-06-19 08:50:48','2023-06-19
08:50:48',NULL,'1383',NULL,NULL),(3855,1121,'TOR','applicants_certifications/
U1121T1687164658.pdf','applicants_certifications','TOR.pdf','U1121T1687164658.pdf',
'2023-06-19 08:50:58','2023-06-19 08:50:58',NULL,'1121',NULL,NULL),
(3857,481,'PDS','applicants_certifications/
U481T1687164693.pdf','applicants_certifications','APPLICATION
LETTER.pdf','U481T1687164693.pdf','2023-06-19 08:51:33','2023-06-19
08:51:33',NULL,'481',NULL,NULL),(3859,1121,'COE','applicants_certifications/
U1121T1687164770.jpg','applicants_certifications','COE.jpg','U1121T1687164770.jpg',
'2023-06-19 08:52:50','2023-06-19 08:52:50',NULL,'1121',NULL,NULL),
(3861,1121,'SWT','applicants_certifications/
U1121T1687164838.jpg','applicants_certifications','certificates_3.jpg','U1121T16871
64838.jpg','2023-06-19 08:53:58','2023-06-19 08:53:58',NULL,'1121',NULL,NULL),
(3862,1121,'ELIGIBILITY','applicants_certifications/
U1121T1687164870.pdf','applicants_certifications','PRC
id.pdf','U1121T1687164870.pdf','2023-06-19 08:54:30','2023-06-19
08:54:30',NULL,'1121',NULL,NULL),(3865,1121,'PDS','applicants_certifications/
U1121T1687164927.pdf','applicants_certifications','PDS.pdf','U1121T1687164927.pdf',
'2023-06-19 08:55:27','2023-06-19 08:55:27',NULL,'1121',NULL,NULL),
(3868,1121,'SWT','applicants_certifications/
U1121T1687164951.jpg','applicants_certifications','certificates_1.jpg','U1121T16871
64951.jpg','2023-06-19 08:55:51','2023-06-19 08:55:51',NULL,'1121',NULL,NULL),
(3870,1121,'SWT','applicants_certifications/
U1121T1687165010.jpg','applicants_certifications','certificates_2.jpg','U1121T16871
65010.jpg','2023-06-19 08:56:50','2023-06-19 08:56:50',NULL,'1121',NULL,NULL),
(3871,910,'ELIGIBILITY','applicants_certifications/
U910T1687165059.pdf','applicants_certifications','Board
Passing.pdf','U910T1687165059.pdf','2023-06-19 08:57:39','2023-06-19
08:57:39',NULL,'910',NULL,NULL),
(3873,910,'ELIGIBILITY','applicants_certifications/
U910T1687165084.pdf','applicants_certifications','Board
Rating.pdf','U910T1687165084.pdf','2023-06-19 08:58:04','2023-06-19
08:58:04',NULL,'910',NULL,NULL),
(3876,910,'ELIGIBILITY','applicants_certifications/
U910T1687165526.pdf','applicants_certifications','PRC
ID.pdf','U910T1687165526.pdf','2023-06-19 09:05:26','2023-06-19
09:05:26',NULL,'910',NULL,NULL),
(3877,910,'ELIGIBILITY','applicants_certifications/
U910T1687165655.pdf','applicants_certifications','Image_20230609_0015.pdf','U910T16
87165655.pdf','2023-06-19 09:07:35','2023-06-19 09:07:35',NULL,'910',NULL,NULL),
(3878,1379,'TOR','applicants_certifications/
U1379T1687165669.pdf','applicants_certifications','TOR.pdf','U1379T1687165669.pdf',
'2023-06-19 09:07:49','2023-06-19 09:07:49',NULL,'1379',NULL,NULL),
(3879,910,'ELIGIBILITY','applicants_certifications/
U910T1687165671.pdf','applicants_certifications','Image_20230609_0016.pdf','U910T16
87165671.pdf','2023-06-19 09:07:51','2023-06-19 09:07:51',NULL,'910',NULL,NULL),
(3880,1379,'COE','applicants_certifications/
U1379T1687165687.pdf','applicants_certifications','Cert. of
Employment.pdf','U1379T1687165687.pdf','2023-06-19 09:08:07','2023-06-19
09:08:07',NULL,'1379',NULL,NULL),
(3881,910,'ELIGIBILITY','applicants_certifications/
U910T1687165689.pdf','applicants_certifications','Image_20230609_0017.pdf','U910T16
87165689.pdf','2023-06-19 09:08:09','2023-06-19 09:08:09',NULL,'910',NULL,NULL),
(3882,1379,'SWT','applicants_certifications/
U1379T1687165706.pdf','applicants_certifications','Training & Seminar
Certificates.pdf','U1379T1687165706.pdf','2023-06-19 09:08:26','2023-06-19
09:08:26',NULL,'1379',NULL,NULL),
(3883,1379,'ELIGIBILITY','applicants_certifications/
U1379T1687165722.pdf','applicants_certifications','Cert. of
Eligibility.pdf','U1379T1687165722.pdf','2023-06-19 09:08:42','2023-06-19
09:08:42',NULL,'1379',NULL,NULL),(3884,1379,'PDS','applicants_certifications/
U1379T1687165743.pdf','applicants_certifications','PDS.pdf','U1379T1687165743.pdf',
'2023-06-19 09:09:03','2023-06-19 09:09:03',NULL,'1379',NULL,NULL),
(3885,1398,'TOR','applicants_certifications/
U1398T1687167097.pdf','applicants_certifications','Diploma, TOR &
Eligibility.pdf','U1398T1687167097.pdf','2023-06-19 09:31:37','2023-06-19
09:31:37',NULL,'1398',NULL,NULL),
(3886,1398,'ELIGIBILITY','applicants_certifications/
U1398T1687167225.pdf','applicants_certifications','Diploma, TOR &
Eligibility.pdf','U1398T1687167225.pdf','2023-06-19 09:33:45','2023-06-19
09:33:45',NULL,'1398',NULL,NULL),(3887,1398,'PDS','applicants_certifications/
U1398T1687167280.pdf','applicants_certifications','PDS.pdf','U1398T1687167280.pdf',
'2023-06-19 09:34:40','2023-06-19 09:34:40',NULL,'1398',NULL,NULL),
(3888,1400,'TOR','applicants_certifications/
U1400T1687167478.pdf','applicants_certifications','TAB G-
1.pdf','U1400T1687167478.pdf','2023-06-19 09:37:58','2023-06-19
09:37:58',NULL,'1400',NULL,NULL),(3890,1160,'COE','applicants_certifications/
U1160T1687167545.pdf','applicants_certifications','inbound2966404754867514109.pdf',
'U1160T1687167545.pdf','2023-06-19 09:39:05','2023-06-19
09:39:05',NULL,'1160',NULL,NULL),(3891,1400,'TOR','applicants_certifications/
U1400T1687167551.pdf','applicants_certifications','TAB G-
2.pdf','U1400T1687167551.pdf','2023-06-19 09:39:11','2023-06-19
09:39:11',NULL,'1400',NULL,NULL),(3893,1400,'TOR','applicants_certifications/
U1400T1687167605.pdf','applicants_certifications','TAB G-
3.pdf','U1400T1687167605.pdf','2023-06-19 09:40:05','2023-06-19
09:40:05',NULL,'1400',NULL,NULL),
(3896,1400,'ELIGIBILITY','applicants_certifications/
U1400T1687167710.pdf','applicants_certifications','TAB
C.pdf','U1400T1687167710.pdf','2023-06-19 09:41:50','2023-06-19
09:41:50',NULL,'1400',NULL,NULL),(3897,1400,'SWT','applicants_certifications/
U1400T1687167734.pdf','applicants_certifications','TAB F-
1.pdf','U1400T1687167734.pdf','2023-06-19 09:42:14','2023-06-19
09:42:14',NULL,'1400',NULL,NULL),
(3898,1160,'ELIGIBILITY','applicants_certifications/
U1160T1687167748.pdf','applicants_certifications','inbound3152831178323129938.pdf',
'U1160T1687167748.pdf','2023-06-19 09:42:28','2023-06-19
09:42:28',NULL,'1160',NULL,NULL),(3899,1400,'SWT','applicants_certifications/
U1400T1687167758.pdf','applicants_certifications','TAB F-
2.pdf','U1400T1687167758.pdf','2023-06-19 09:42:38','2023-06-19
09:42:38',NULL,'1400',NULL,NULL),(3900,1400,'SWT','applicants_certifications/
U1400T1687167788.pdf','applicants_certifications','TAB F-
3.pdf','U1400T1687167788.pdf','2023-06-19 09:43:08','2023-06-19
09:43:08',NULL,'1400',NULL,NULL),(3901,1400,'COE','applicants_certifications/
U1400T1687167833.pdf','applicants_certifications','TAB
E.pdf','U1400T1687167833.pdf','2023-06-19 09:43:53','2023-06-19
09:43:53',NULL,'1400',NULL,NULL),(3902,1400,'PDS','applicants_certifications/
U1400T1687167896.pdf','applicants_certifications','TAB B-
1.pdf','U1400T1687167896.pdf','2023-06-19 09:44:56','2023-06-19
09:44:56',NULL,'1400',NULL,NULL),(3903,1400,'PDS','applicants_certifications/
U1400T1687167922.pdf','applicants_certifications','TAB B-
2.pdf','U1400T1687167922.pdf','2023-06-19 09:45:22','2023-06-19
09:45:22',NULL,'1400',NULL,NULL),(3904,1400,'PDS','applicants_certifications/
U1400T1687167937.pdf','applicants_certifications','TAB B-
3.pdf','U1400T1687167937.pdf','2023-06-19 09:45:37','2023-06-19
09:45:37',NULL,'1400',NULL,NULL),(3906,1398,'SWT','applicants_certifications/
U1398T1687168142.pdf','applicants_certifications','IMG_20230619_0001.pdf','U1398T16
87168142.pdf','2023-06-19 09:49:02','2023-06-19 09:49:02',NULL,'1398',NULL,NULL),
(3910,910,'PDS','applicants_certifications/
U910T1687316352.pdf','applicants_certifications','C1.pdf','U910T1687316352.pdf','20
23-06-21 02:59:12','2023-06-21 02:59:12',NULL,'910',NULL,NULL),
(3911,1401,'TOR','applicants_certifications/
U1401T1687168374.pdf','applicants_certifications','APU
TOR.pdf','U1401T1687168374.pdf','2023-06-19 09:52:54','2023-06-19
09:52:55',NULL,'1401',NULL,NULL),(3912,1208,'TOR','applicants_certifications/
U1208T1687168403.pdf','applicants_certifications','CHARLENE BAGUAN
OTR.pdf','U1208T1687168403.pdf','2023-06-19 09:53:23','2023-06-19
09:53:23',NULL,'1208',NULL,NULL),(3913,1398,'PDS','applicants_certifications/
U1398T1687168418.pdf','applicants_certifications','Page
5.pdf','U1398T1687168418.pdf','2023-06-19 09:53:38','2023-06-19
09:53:38',NULL,'1398',NULL,NULL),(3914,1208,'COE','applicants_certifications/
U1208T1687168571.pdf','applicants_certifications','CHARLENE BAGUAN- Cert of
Employment.pdf','U1208T1687168571.pdf','2023-06-19 09:56:11','2023-06-19
09:56:11',NULL,'1208',NULL,NULL),
(3916,1159,'ELIGIBILITY','applicants_certifications/
U1159T1687168729.jpg','applicants_certifications','inbound5996286502121690485.jpg',
'U1159T1687168729.jpg','2023-06-19 09:58:49','2023-06-19
09:58:49',NULL,'1159',NULL,NULL),(3917,910,'PDS','applicants_certifications/
U910T1687169093.jpg','applicants_certifications','C2.jpg','U910T1687169093.jpg','20
23-06-19 10:04:53','2023-06-19 10:04:53',NULL,'910',NULL,NULL),
(3918,910,'PDS','applicants_certifications/
U910T1687169109.jpg','applicants_certifications','C3.jpg','U910T1687169109.jpg','20
23-06-19 10:05:09','2023-06-19 10:05:09',NULL,'910',NULL,NULL),
(3919,910,'PDS','applicants_certifications/
U910T1687169126.jpg','applicants_certifications','C4.jpg','U910T1687169126.jpg','20
23-06-19 10:05:26','2023-06-19 10:05:26',NULL,'910',NULL,NULL),
(3920,1208,'PDS','applicants_certifications/
U1208T1687169141.pdf','applicants_certifications','CHARLENE BAGUAN
PDS.pdf','U1208T1687169141.pdf','2023-06-19 10:05:41','2023-06-19
10:05:41',NULL,'1208',NULL,NULL),
(3921,1208,'ELIGIBILITY','applicants_certifications/
U1208T1687169252.pdf','applicants_certifications','CHARLENE BAGUAN- Cert of
Eligibility.pdf','U1208T1687169252.pdf','2023-06-19 10:07:32','2023-06-19
10:07:32',NULL,'1208',NULL,NULL),(3922,1208,'SWT','applicants_certifications/
U1208T1687169401.pdf','applicants_certifications','CHARLENE BAGUAN- Training
Certificates.pdf','U1208T1687169401.pdf','2023-06-19 10:10:01','2023-06-19
10:10:01',NULL,'1208',NULL,NULL),(3923,1147,'COE','applicants_certifications/
U1147T1687169468.pdf','applicants_certifications','certificate of
employment.pdf','U1147T1687169468.pdf','2023-06-19 10:11:08','2023-06-19
10:11:08',NULL,'1147',NULL,NULL),(3924,1160,'SWT','applicants_certifications/
U1160T1687169542.pdf','applicants_certifications','inbound5027526672365131570.pdf',
'U1160T1687169542.pdf','2023-06-19 10:12:22','2023-06-19
10:12:22',NULL,'1160',NULL,NULL),(3932,1160,'SWT','applicants_certifications/
U1160T1687169970.pdf','applicants_certifications','inbound3475302884530822091.pdf',
'U1160T1687169970.pdf','2023-06-19 10:19:30','2023-06-19
10:19:30',NULL,'1160',NULL,NULL),(3933,1160,'SWT','applicants_certifications/
U1160T1687170003.pdf','applicants_certifications','inbound8291632770139887525.pdf',
'U1160T1687170003.pdf','2023-06-19 10:20:03','2023-06-19
10:20:03',NULL,'1160',NULL,NULL),(3934,1091,'TOR','applicants_certifications/
U1091T1687170008.jpg','applicants_certifications','inbound4828214761044289375.jpg',
'U1091T1687170008.jpg','2023-06-19 10:20:08','2023-06-19
10:20:08',NULL,'1091',NULL,NULL),(3936,1160,'SWT','applicants_certifications/
U1160T1687170025.pdf','applicants_certifications','inbound3636273333831379119.pdf',
'U1160T1687170025.pdf','2023-06-19 10:20:25','2023-06-19
10:20:25',NULL,'1160',NULL,NULL),(3937,1091,'TOR','applicants_certifications/
U1091T1687170027.jpg','applicants_certifications','inbound4939810243077736644.jpg',
'U1091T1687170027.jpg','2023-06-19 10:20:27','2023-06-19
10:20:27',NULL,'1091',NULL,NULL),(3939,1160,'SWT','applicants_certifications/
U1160T1687170064.pdf','applicants_certifications','inbound2832210604738134435.pdf',
'U1160T1687170064.pdf','2023-06-19 10:21:04','2023-06-19
10:21:04',NULL,'1160',NULL,NULL),(3941,1091,'COE','applicants_certifications/
U1091T1687170093.jpg','applicants_certifications','inbound1195121267905206875.jpg',
'U1091T1687170093.jpg','2023-06-19 10:21:33','2023-06-19
10:21:33',NULL,'1091',NULL,NULL),(3942,1091,'COE','applicants_certifications/
U1091T1687170135.jpg','applicants_certifications','inbound4845545607287617407.jpg',
'U1091T1687170135.jpg','2023-06-19 10:22:15','2023-06-19
10:22:15',NULL,'1091',NULL,NULL),(3943,1091,'COE','applicants_certifications/
U1091T1687170164.jpg','applicants_certifications','inbound2770122961462989276.jpg',
'U1091T1687170164.jpg','2023-06-19 10:22:44','2023-06-19
10:22:44',NULL,'1091',NULL,NULL),(3944,1091,'COE','applicants_certifications/
U1091T1687170187.jpg','applicants_certifications','inbound6649585036286126761.jpg',
'U1091T1687170187.jpg','2023-06-19 10:23:07','2023-06-19
10:23:07',NULL,'1091',NULL,NULL),
(3945,1348,'ELIGIBILITY','applicants_certifications/
U1348T1687170231.pdf','applicants_certifications','inbound1278507617630807025.pdf',
'U1348T1687170231.pdf','2023-06-19 10:23:51','2023-06-19
10:23:51',NULL,'1348',NULL,NULL),(3946,1091,'SWT','applicants_certifications/
U1091T1687170236.jpg','applicants_certifications','inbound3437691363220017093.jpg',
'U1091T1687170236.jpg','2023-06-19 10:23:56','2023-06-19
10:23:56',NULL,'1091',NULL,NULL),
(3947,1348,'ELIGIBILITY','applicants_certifications/
U1348T1687170264.pdf','applicants_certifications','inbound8906467837087844213.pdf',
'U1348T1687170264.pdf','2023-06-19 10:24:24','2023-06-19
10:24:24',NULL,'1348',NULL,NULL),(3948,1091,'SWT','applicants_certifications/
U1091T1687170266.jpg','applicants_certifications','inbound1216339552474494750.jpg',
'U1091T1687170266.jpg','2023-06-19 10:24:26','2023-06-19
10:24:26',NULL,'1091',NULL,NULL),(3949,1159,'PDS','applicants_certifications/
U1159T1687170269.docx','applicants_certifications','MALLIN CS Form No. 212
Attachment - Work Experience Sheet
(1).docxMALLYN.docx','U1159T1687170269.docx','2023-06-19 10:24:29','2023-06-19
10:24:29',NULL,'1159',NULL,NULL),(3950,1091,'SWT','applicants_certifications/
U1091T1687170296.jpg','applicants_certifications','inbound6624385495360706780.jpg',
'U1091T1687170296.jpg','2023-06-19 10:24:56','2023-06-19
10:24:56',NULL,'1091',NULL,NULL),(3951,1091,'SWT','applicants_certifications/
U1091T1687170320.jpg','applicants_certifications','inbound2029589953582947187.jpg',
'U1091T1687170320.jpg','2023-06-19 10:25:20','2023-06-19
10:25:20',NULL,'1091',NULL,NULL),(3952,1344,'PDS','applicants_certifications/
U1344T1687170345.pdf','applicants_certifications','Application
Letter.pdf','U1344T1687170345.pdf','2023-06-19 10:25:45','2023-06-19
10:25:45',NULL,'1344',NULL,NULL),
(3953,1091,'ELIGIBILITY','applicants_certifications/
U1091T1687170347.jpg','applicants_certifications','inbound6427755493301748842.jpg',
'U1091T1687170347.jpg','2023-06-19 10:25:47','2023-06-19
10:25:47',NULL,'1091',NULL,NULL),
(3954,1091,'ELIGIBILITY','applicants_certifications/
U1091T1687170424.jpg','applicants_certifications','inbound6476360221506354385.jpg',
'U1091T1687170424.jpg','2023-06-19 10:27:04','2023-06-19
10:27:04',NULL,'1091',NULL,NULL),(3955,1091,'PDS','applicants_certifications/
U1091T1687170460.jpg','applicants_certifications','inbound328966009108426360.jpg','
U1091T1687170460.jpg','2023-06-19 10:27:40','2023-06-19
10:27:40',NULL,'1091',NULL,NULL),(3956,1091,'PDS','applicants_certifications/
U1091T1687170486.jpg','applicants_certifications','inbound3884965206299633290.jpg',
'U1091T1687170486.jpg','2023-06-19 10:28:06','2023-06-19
10:28:06',NULL,'1091',NULL,NULL),(3957,1091,'PDS','applicants_certifications/
U1091T1687170510.jpg','applicants_certifications','inbound190039879112579105.jpg','
U1091T1687170510.jpg','2023-06-19 10:28:30','2023-06-19
10:28:30',NULL,'1091',NULL,NULL),(3958,1091,'PDS','applicants_certifications/
U1091T1687170524.jpg','applicants_certifications','inbound2501634980485952063.jpg',
'U1091T1687170524.jpg','2023-06-19 10:28:44','2023-06-19
10:28:44',NULL,'1091',NULL,NULL),(3959,1334,'COE','applicants_certifications/
U1334T1687170918.jpg','applicants_certifications','inbound2649792108943064241.jpg',
'U1334T1687170918.jpg','2023-06-19 10:35:18','2023-06-19
10:35:18',NULL,'1334',NULL,NULL),(3960,1334,'PDS','applicants_certifications/
U1334T1687171020.jpg','applicants_certifications','inbound2448245048135247200.jpg',
'U1334T1687171020.jpg','2023-06-19 10:37:00','2023-06-19
10:37:00',NULL,'1334',NULL,NULL),(3961,1334,'PDS','applicants_certifications/
U1334T1687171043.jpg','applicants_certifications','inbound5939456550890904710.jpg',
'U1334T1687171043.jpg','2023-06-19 10:37:23','2023-06-19
10:37:23',NULL,'1334',NULL,NULL),(3962,1398,'COE','applicants_certifications/
U1398T1687172653.pdf','applicants_certifications','Cert of Employment_compressed
(1).pdf','U1398T1687172653.pdf','2023-06-19 11:04:13','2023-06-19
11:04:13',NULL,'1398',NULL,NULL),
(3963,1159,'ELIGIBILITY','applicants_certifications/
U1159T1687175046.jpg','applicants_certifications','inbound2398051312441410749.jpg',
'U1159T1687175046.jpg','2023-06-19 11:44:06','2023-06-19
11:44:06',NULL,'1159',NULL,NULL),
(3964,1159,'ELIGIBILITY','applicants_certifications/
U1159T1687175138.jpg','applicants_certifications','inbound2442411909925855903.jpg',
'U1159T1687175138.jpg','2023-06-19 11:45:38','2023-06-19
11:45:38',NULL,'1159',NULL,NULL),(3967,1404,'TOR','applicants_certifications/
U1404T1687176689.docx','applicants_certifications','TOR.docx','U1404T1687176689.doc
x','2023-06-19 12:11:29','2023-06-19 12:11:29',NULL,'1404',NULL,NULL),
(3968,1404,'SWT','applicants_certifications/
U1404T1687176764.jpg','applicants_certifications','Youth Forum on Peace
Bangsamoro.jpg','U1404T1687176764.jpg','2023-06-19 12:12:44','2023-06-19
12:12:44',NULL,'1404',NULL,NULL),(3970,1404,'SWT','applicants_certifications/
U1404T1687176796.jpg','applicants_certifications','Provincial Student Congress
Seminar.jpg','U1404T1687176796.jpg','2023-06-19 12:13:16','2023-06-19
12:13:16',NULL,'1404',NULL,NULL),(3971,1404,'SWT','applicants_certifications/
U1404T1687176827.jpg','applicants_certifications','Seminar Workshop on Reseach
Proposal Making.jpg','U1404T1687176827.jpg','2023-06-19 12:13:47','2023-06-19
12:13:47',NULL,'1404',NULL,NULL),(3972,1404,'SWT','applicants_certifications/
U1404T1687176839.jpg','applicants_certifications','Packaging and
Labelling.jpg','U1404T1687176839.jpg','2023-06-19 12:13:59','2023-06-19
12:13:59',NULL,'1404',NULL,NULL),(3973,1404,'SWT','applicants_certifications/
U1404T1687176851.jpg','applicants_certifications','Irrigation Tech 1 - Agrostudies
Israel.jpg','U1404T1687176851.jpg','2023-06-19 12:14:11','2023-06-19
12:14:11',NULL,'1404',NULL,NULL),(3974,1404,'SWT','applicants_certifications/
U1404T1687176862.jpg','applicants_certifications','Intersatellaite Campus
Journalism Semina Workshop.jpg','U1404T1687176862.jpg','2023-06-19 12:14:22','2023-
06-19 12:14:22',NULL,'1404',NULL,NULL),
(3975,1404,'SWT','applicants_certifications/
U1404T1687176873.jpg','applicants_certifications','ATI and CorCAARD Farmers
Technology Forum.jpg','U1404T1687176873.jpg','2023-06-19 12:14:33','2023-06-19
12:14:33',NULL,'1404',NULL,NULL),(3976,1404,'SWT','applicants_certifications/
U1404T1687176888.jpg','applicants_certifications','Cert of Rec Crop Tech of the
Year.jpg','U1404T1687176888.jpg','2023-06-19 12:14:48','2023-06-19
12:14:48',NULL,'1404',NULL,NULL),(3977,1404,'SWT','applicants_certifications/
U1404T1687176901.jpg','applicants_certifications','Cert of Rec - Best OJT
International.jpg','U1404T1687176901.jpg','2023-06-19 12:15:01','2023-06-19
12:15:01',NULL,'1404',NULL,NULL),(3978,1404,'SWT','applicants_certifications/
U1404T1687176916.jpg','applicants_certifications','Cert of Rec 2019 LEA
Passer.jpg','U1404T1687176916.jpg','2023-06-19 12:15:16','2023-06-19
12:15:16',NULL,'1404',NULL,NULL),(3979,1404,'SWT','applicants_certifications/
U1404T1687176934.jpg','applicants_certifications','Awards of Excellence - Crop
Technologist of the Year.jpg','U1404T1687176934.jpg','2023-06-19 12:15:34','2023-
06-19 12:15:34',NULL,'1404',NULL,NULL),
(3980,1404,'SWT','applicants_certifications/
U1404T1687176947.jpg','applicants_certifications','Award of Excellence - Best
International OJT Student.jpg','U1404T1687176947.jpg','2023-06-19 12:15:47','2023-
06-19 12:15:47',NULL,'1404',NULL,NULL),
(3981,1404,'SWT','applicants_certifications/
U1404T1687176958.pdf','applicants_certifications','Project Exit
Strategy.pdf','U1404T1687176958.pdf','2023-06-19 12:15:58','2023-06-19
12:15:58',NULL,'1404',NULL,NULL),(3982,1404,'SWT','applicants_certifications/
U1404T1687176969.jpg','applicants_certifications','Seminar Workshop on Soil
Management to Mitigate the Effect of Climate
Change.jpg','U1404T1687176969.jpg','2023-06-19 12:16:09','2023-06-19
12:16:09',NULL,'1404',NULL,NULL),(3983,1404,'SWT','applicants_certifications/
U1404T1687177102.jpg','applicants_certifications','Health
Talk006.jpg','U1404T1687177102.jpg','2023-06-19 12:18:22','2023-06-19
12:18:22',NULL,'1404',NULL,NULL),(3984,1404,'SWT','applicants_certifications/
U1404T1687177112.jpg','applicants_certifications','SBCC 101 Diagnosing and
Enterprise002.jpg','U1404T1687177112.jpg','2023-06-19 12:18:32','2023-06-19
12:18:32',NULL,'1404',NULL,NULL),(3985,1404,'SWT','applicants_certifications/
U1404T1687177122.pdf','applicants_certifications','Computer Aided Design cum FABLAB
Equipment Training.pdf','U1404T1687177122.pdf','2023-06-19 12:18:42','2023-06-19
12:18:42',NULL,'1404',NULL,NULL),(3986,1404,'SWT','applicants_certifications/
U1404T1687177135.pdf','applicants_certifications','2022 Business Name Processors
Seminar.pdf','U1404T1687177135.pdf','2023-06-19 12:18:55','2023-06-19
12:18:55',NULL,'1404',NULL,NULL),(3987,1404,'SWT','applicants_certifications/
U1404T1687177149.pdf','applicants_certifications','Capability Building Seminar on
IPR and IP System March 14, 2023.pdf','U1404T1687177149.pdf','2023-06-19
12:19:09','2023-06-19 12:19:09',NULL,'1404',NULL,NULL),
(3988,1404,'SWT','applicants_certifications/
U1404T1687177173.pdf','applicants_certifications','3rd Joint Corcaarrd and ATI-CAR
Regional Farmers\' Technology Forum November 20,
2018.pdf','U1404T1687177173.pdf','2023-06-19 12:19:33','2023-06-19
12:19:33',NULL,'1404',NULL,NULL),(3989,1404,'SWT','applicants_certifications/
U1404T1687177186.jpg','applicants_certifications','Creating Visual and Digital
Contents001.jpg','U1404T1687177186.jpg','2023-06-19 12:19:46','2023-06-19
12:19:46',NULL,'1404',NULL,NULL),(3990,1404,'SWT','applicants_certifications/
U1404T1687177197.jpg','applicants_certifications','ISO003
(2).jpg','U1404T1687177197.jpg','2023-06-19 12:19:57','2023-06-19
12:19:57',NULL,'1404',NULL,NULL),
(3991,1404,'ELIGIBILITY','applicants_certifications/
U1404T1687177222.jpg','applicants_certifications','Hezron - PRC
Lincense.jpg','U1404T1687177222.jpg','2023-06-19 12:20:22','2023-06-19
12:20:22',NULL,'1404',NULL,NULL),
(3992,1404,'ELIGIBILITY','applicants_certifications/
U1404T1687177241.jpg','applicants_certifications','Civil Service
Eligibility.jpg','U1404T1687177241.jpg','2023-06-19 12:20:41','2023-06-19
12:20:41',NULL,'1404',NULL,NULL),
(3993,1404,'ELIGIBILITY','applicants_certifications/
U1404T1687177251.jpg','applicants_certifications','Driver\'s
License.jpg','U1404T1687177251.jpg','2023-06-19 12:20:51','2023-06-19
12:20:51',NULL,'1404',NULL,NULL),(3994,1407,'TOR','applicants_certifications/
U1407T1687177413.jpg','applicants_certifications','CamScanner_06-16-
2023_09.11_1.jpg','U1407T1687177413.jpg','2023-06-19 12:23:33','2023-06-19
12:23:33',NULL,'1407',NULL,NULL),(3996,1382,'TOR','applicants_certifications/
U1382T1687177848.pdf','applicants_certifications','TOR
Merge.pdf','U1382T1687177848.pdf','2023-06-19 12:30:48','2023-06-19
12:30:48',NULL,'1382',NULL,NULL),(3997,1382,'COE','applicants_certifications/
U1382T1687177890.pdf','applicants_certifications','COE.pdf','U1382T1687177890.pdf',
'2023-06-19 12:31:30','2023-06-19 12:31:30',NULL,'1382',NULL,NULL),
(3998,1382,'SWT','applicants_certifications/
U1382T1687177953.jpg','applicants_certifications','CamScanner
06-19-2023 20.21_1.jpg','U1382T1687177953.jpg','2023-06-19 12:32:33','2023-06-19
12:32:33',NULL,'1382',NULL,NULL),
(3999,1382,'ELIGIBILITY','applicants_certifications/
U1382T1687178003.pdf','applicants_certifications','CS.pdf','U1382T1687178003.pdf','
2023-06-19 12:33:23','2023-06-19 12:33:23',NULL,'1382',NULL,NULL),
(4000,1382,'PDS','applicants_certifications/
U1382T1687178054.pdf','applicants_certifications','PDS
Merge.pdf','U1382T1687178054.pdf','2023-06-19 12:34:14','2023-06-19
12:34:14',NULL,'1382',NULL,NULL),
(4001,1407,'ELIGIBILITY','applicants_certifications/
U1407T1687178289.jpg','applicants_certifications','CamScanner_06-19-
2023_20.32_1.jpg','U1407T1687178289.jpg','2023-06-19 12:38:09','2023-06-19
12:38:09',NULL,'1407',NULL,NULL),(4002,1383,'PDS','applicants_certifications/
U1383T1687179257.pdf','applicants_certifications','Data_Sheet.pdf','U1383T168717925
7.pdf','2023-06-19 12:54:17','2023-06-19 12:54:17',NULL,'1383',NULL,NULL),
(4004,1383,'SWT','applicants_certifications/
U1383T1687179290.pdf','applicants_certifications','Certificate.pdf','U1383T16871792
90.pdf','2023-06-19 12:54:50','2023-06-19 12:54:50',NULL,'1383',NULL,NULL),
(4013,1406,'ELIGIBILITY','applicants_certifications/
U1406T1687179648.jpg','applicants_certifications','Eligibilty Cert
(Original).jpg','U1406T1687179648.jpg','2023-06-19 13:00:48','2023-06-19
13:00:48',NULL,'1406',NULL,NULL),
(4014,1406,'ELIGIBILITY','applicants_certifications/
U1406T1687179679.jpg','applicants_certifications','Eligibilty Cert (authenticated
copy).jpg','U1406T1687179679.jpg','2023-06-19 13:01:19','2023-06-19
13:01:19',NULL,'1406',NULL,NULL),(4015,1406,'SWT','applicants_certifications/
U1406T1687179731.jpg','applicants_certifications','2 Computer
Troubleshooting.jpg','U1406T1687179731.jpg','2023-06-19 13:02:11','2023-06-19
13:02:11',NULL,'1406',NULL,NULL),(4016,1406,'SWT','applicants_certifications/
U1406T1687179781.jpg','applicants_certifications','5 Advance Computer
Literacy.jpg','U1406T1687179781.jpg','2023-06-19 13:03:01','2023-06-19
13:03:01',NULL,'1406',NULL,NULL),(4017,1406,'SWT','applicants_certifications/
U1406T1687179809.jpg','applicants_certifications','6 Computer Hardware Maintenance
and Troubleshooting.jpg','U1406T1687179809.jpg','2023-06-19 13:03:29','2023-06-19
13:03:29',NULL,'1406',NULL,NULL),(4018,1406,'SWT','applicants_certifications/
U1406T1687180547.jpg','applicants_certifications','7 Web Management Training
Workshop.jpg','U1406T1687180547.jpg','2023-06-19 13:15:47','2023-06-19
13:15:47',NULL,'1406',NULL,NULL),
(4019,681,'ELIGIBILITY','applicants_certifications/
U681T1687181227.jpg','applicants_certifications','inbound3902644728257508384.jpg','
U681T1687181227.jpg','2023-06-19 13:27:07','2023-06-19
13:27:07',NULL,'681',NULL,NULL),(4020,681,'SWT','applicants_certifications/
U681T1687181660.jpg','applicants_certifications','inbound1889454637900108951.jpg','
U681T1687181660.jpg','2023-06-19 13:34:20','2023-06-19
13:34:20',NULL,'681',NULL,NULL),(4025,681,'SWT','applicants_certifications/
U681T1687183509.jpg','applicants_certifications','inbound963557130217527463.jpg','U
681T1687183509.jpg','2023-06-19 14:05:09','2023-06-19
14:05:09',NULL,'681',NULL,NULL),(4026,681,'SWT','applicants_certifications/
U681T1687183538.jpg','applicants_certifications','inbound7269234837309193620.jpg','
U681T1687183538.jpg','2023-06-19 14:05:38','2023-06-19
14:05:38',NULL,'681',NULL,NULL),(4027,681,'SWT','applicants_certifications/
U681T1687183568.jpg','applicants_certifications','inbound3642791596153324412.jpg','
U681T1687183568.jpg','2023-06-19 14:06:08','2023-06-19
14:06:08',NULL,'681',NULL,NULL),(4028,681,'SWT','applicants_certifications/
U681T1687183609.jpg','applicants_certifications','inbound2381486765017611690.jpg','
U681T1687183609.jpg','2023-06-19 14:06:49','2023-06-19
14:06:49',NULL,'681',NULL,NULL),(4031,681,'TOR','applicants_certifications/
U681T1687184717.jpg','applicants_certifications','inbound5583113062271742612.jpg','
U681T1687184717.jpg','2023-06-19 14:25:17','2023-06-19
14:25:17',NULL,'681',NULL,NULL),(4032,681,'TOR','applicants_certifications/
U681T1687184731.jpg','applicants_certifications','inbound4258580343365977845.jpg','
U681T1687184731.jpg','2023-06-19 14:25:31','2023-06-19
14:25:31',NULL,'681',NULL,NULL),(4033,681,'PDS','applicants_certifications/
U681T1687184766.jpg','applicants_certifications','inbound3414678193607373035.jpg','
U681T1687184766.jpg','2023-06-19 14:26:06','2023-06-19
14:26:06',NULL,'681',NULL,NULL),(4034,681,'PDS','applicants_certifications/
U681T1687184943.jpg','applicants_certifications','inbound7406824620939354695.jpg','
U681T1687184943.jpg','2023-06-19 14:29:03','2023-06-19
14:29:03',NULL,'681',NULL,NULL),(4035,681,'PDS','applicants_certifications/
U681T1687184959.jpg','applicants_certifications','inbound3400831398345728176.jpg','
U681T1687184959.jpg','2023-06-19 14:29:19','2023-06-19
14:29:19',NULL,'681',NULL,NULL),(4036,681,'PDS','applicants_certifications/
U681T1687184976.jpg','applicants_certifications','inbound6203890393111907507.jpg','
U681T1687184976.jpg','2023-06-19 14:29:36','2023-06-19
14:29:36',NULL,'681',NULL,NULL),(4037,681,'COE','applicants_certifications/
U681T1687185334.jpg','applicants_certifications','inbound958675924315574141.jpg','U
681T1687185334.jpg','2023-06-19 14:35:34','2023-06-19
14:35:34',NULL,'681',NULL,NULL),(4038,1222,'TOR','applicants_certifications/
U1222T1687185398.pdf','applicants_certifications','inbound5376146263197573504.pdf',
'U1222T1687185398.pdf','2023-06-19 14:36:38','2023-06-19
14:36:38',NULL,'1222',NULL,NULL),(4039,681,'COE','applicants_certifications/
U681T1687185415.jpg','applicants_certifications','inbound7918754070701666898.jpg','
U681T1687185415.jpg','2023-06-19 14:36:55','2023-06-19
14:36:55',NULL,'681',NULL,NULL),(4040,1222,'TOR','applicants_certifications/
U1222T1687185430.pdf','applicants_certifications','inbound1549210133425643976.pdf',
'U1222T1687185430.pdf','2023-06-19 14:37:10','2023-06-19
14:37:10',NULL,'1222',NULL,NULL),(4041,1222,'PDS','applicants_certifications/
U1222T1687185509.pdf','applicants_certifications','inbound1309336440604060568.pdf',
'U1222T1687185509.pdf','2023-06-19 14:38:29','2023-06-19
14:38:29',NULL,'1222',NULL,NULL),(4043,1222,'PDS','applicants_certifications/
U1222T1687185594.pdf','applicants_certifications','inbound5977265576820097037.pdf',
'U1222T1687185594.pdf','2023-06-19 14:39:54','2023-06-19
14:39:54',NULL,'1222',NULL,NULL),(4044,1222,'PDS','applicants_certifications/
U1222T1687185624.pdf','applicants_certifications','inbound8744254636661242990.pdf',
'U1222T1687185624.pdf','2023-06-19 14:40:24','2023-06-19
14:40:24',NULL,'1222',NULL,NULL),(4045,1222,'PDS','applicants_certifications/
U1222T1687185706.pdf','applicants_certifications','inbound4593241024983115247.pdf',
'U1222T1687185706.pdf','2023-06-19 14:41:46','2023-06-19
14:41:46',NULL,'1222',NULL,NULL),(4046,1222,'COE','applicants_certifications/
U1222T1687186719.pdf','applicants_certifications','inbound5573455577857958001.pdf',
'U1222T1687186719.pdf','2023-06-19 14:58:39','2023-06-19
14:58:39',NULL,'1222',NULL,NULL),(4047,1222,'COE','applicants_certifications/
U1222T1687187021.pdf','applicants_certifications','inbound6797333933028139384.pdf',
'U1222T1687187021.pdf','2023-06-19 15:03:41','2023-06-19
15:03:41',NULL,'1222',NULL,NULL),
(4048,1074,'ELIGIBILITY','applicants_certifications/
U1074T1687187235.docx','applicants_certifications','Eligibility.docx','U1074T168718
7235.docx','2023-06-19 15:07:15','2023-06-19 15:07:15',NULL,'1074',NULL,NULL),
(4049,1222,'SWT','applicants_certifications/
U1222T1687187480.pdf','applicants_certifications','inbound7461648662641973681.pdf',
'U1222T1687187480.pdf','2023-06-19 15:11:20','2023-06-19
15:11:20',NULL,'1222',NULL,NULL),(4050,1222,'SWT','applicants_certifications/
U1222T1687187493.pdf','applicants_certifications','inbound7918294200599820440.pdf',
'U1222T1687187493.pdf','2023-06-19 15:11:33','2023-06-19
15:11:33',NULL,'1222',NULL,NULL),(4051,1222,'SWT','applicants_certifications/
U1222T1687187509.pdf','applicants_certifications','inbound6855437475768107452.pdf',
'U1222T1687187509.pdf','2023-06-19 15:11:49','2023-06-19
15:11:49',NULL,'1222',NULL,NULL),(4052,1222,'SWT','applicants_certifications/
U1222T1687187524.pdf','applicants_certifications','inbound6926531703421252663.pdf',
'U1222T1687187524.pdf','2023-06-19 15:12:04','2023-06-19
15:12:04',NULL,'1222',NULL,NULL),(4053,1222,'SWT','applicants_certifications/
U1222T1687187538.pdf','applicants_certifications','inbound697543881844723526.pdf','
U1222T1687187538.pdf','2023-06-19 15:12:18','2023-06-19
15:12:18',NULL,'1222',NULL,NULL),(4054,1074,'TOR','applicants_certifications/
U1074T1687187889.docx','applicants_certifications','Transcript of
Record.docx','U1074T1687187889.docx','2023-06-19 15:18:09','2023-06-19
15:18:09',NULL,'1074',NULL,NULL),(4055,1074,'COE','applicants_certifications/
U1074T1687188029.docx','applicants_certifications','Certificate of
Employment.docx','U1074T1687188029.docx','2023-06-19 15:20:29','2023-06-19
15:20:29',NULL,'1074',NULL,NULL),(4056,1074,'SWT','applicants_certifications/
U1074T1687188255.docx','applicants_certifications','Certificate of
Seminar.docx','U1074T1687188255.docx','2023-06-19 15:24:15','2023-06-19
15:24:15',NULL,'1074',NULL,NULL),
(4057,1222,'ELIGIBILITY','applicants_certifications/
U1222T1687189021.pdf','applicants_certifications','inbound4798731721604447189.pdf',
'U1222T1687189021.pdf','2023-06-19 15:37:01','2023-06-19
15:37:01',NULL,'1222',NULL,NULL),
(4058,1222,'ELIGIBILITY','applicants_certifications/
U1222T1687189037.pdf','applicants_certifications','inbound3049713803074776833.pdf',
'U1222T1687189037.pdf','2023-06-19 15:37:17','2023-06-19
15:37:17',NULL,'1222',NULL,NULL),
(4059,1222,'ELIGIBILITY','applicants_certifications/
U1222T1687189054.pdf','applicants_certifications','inbound4921584760085013412.pdf',
'U1222T1687189054.pdf','2023-06-19 15:37:34','2023-06-19
15:37:34',NULL,'1222',NULL,NULL),(4060,1074,'PDS','applicants_certifications/
U1074T1687189083.docx','applicants_certifications','Personal
Data Sheet.docx','U1074T1687189083.docx','2023-06-19 15:38:03','2023-06-19
15:38:03',NULL,'1074',NULL,NULL),(4062,1357,'COE','applicants_certifications/
U1357T1687202684.pdf','applicants_certifications','cert of employment-
muews.pdf','U1357T1687202684.pdf','2023-06-19 19:24:44','2023-06-19
19:24:44',NULL,'1357',NULL,NULL),(4063,1357,'TOR','applicants_certifications/
U1357T1687202745.pdf','applicants_certifications','Transcript of
records.pdf','U1357T1687202745.pdf','2023-06-19 19:25:45','2023-06-19
19:25:45',NULL,'1357',NULL,NULL),(4064,1357,'SWT','applicants_certifications/
U1357T1687202796.pdf','applicants_certifications','ojt-
DWDD.pdf','U1357T1687202796.pdf','2023-06-19 19:26:36','2023-06-19
19:26:36',NULL,'1357',NULL,NULL),(4065,1357,'SWT','applicants_certifications/
U1357T1687202818.pdf','applicants_certifications','ojt-
IRRI.pdf','U1357T1687202818.pdf','2023-06-19 19:26:58','2023-06-19
19:26:58',NULL,'1357',NULL,NULL),
(4066,1357,'ELIGIBILITY','applicants_certifications/
U1357T1687202861.pdf','applicants_certifications','PRC
ID.pdf','U1357T1687202861.pdf','2023-06-19 19:27:41','2023-06-19
19:27:41',NULL,'1357',NULL,NULL),
(4067,1357,'ELIGIBILITY','applicants_certifications/
U1357T1687202887.pdf','applicants_certifications','Certification of
Passing.pdf','U1357T1687202887.pdf','2023-06-19 19:28:07','2023-06-19
19:28:07',NULL,'1357',NULL,NULL),(4071,1408,'TOR','applicants_certifications/
U1408T1687216997.pdf','applicants_certifications','Lu-ong, Geomarie
TOR.pdf','U1408T1687216997.pdf','2023-06-19 23:23:17','2023-06-19
23:23:17',NULL,'1408',NULL,NULL),
(4072,1408,'ELIGIBILITY','applicants_certifications/
U1408T1687217046.pdf','applicants_certifications','Prc ID w
authen.pdf','U1408T1687217046.pdf','2023-06-19 23:24:06','2023-06-19
23:24:06',NULL,'1408',NULL,NULL),(4073,1408,'SWT','applicants_certifications/
U1408T1687217807.pdf','applicants_certifications','Cert of
trainings.pdf','U1408T1687217807.pdf','2023-06-19 23:36:47','2023-06-19
23:36:47',NULL,'1408',NULL,NULL),(4074,1368,'COE','applicants_certifications/
U1368T1687219277.pdf','applicants_certifications','Service
record.pdf','U1368T1687219277.pdf','2023-06-20 00:01:17','2023-06-20
00:01:17',NULL,'1368',NULL,NULL),(4075,1368,'SWT','applicants_certifications/
U1368T1687219322.pdf','applicants_certifications','cert of
seminars.pdf','U1368T1687219322.pdf','2023-06-20 00:02:02','2023-06-20
00:02:02',NULL,'1368',NULL,NULL),(4077,1368,'SWT','applicants_certifications/
U1368T1687219436.pdf','applicants_certifications','seminars
2.pdf','U1368T1687219436.pdf','2023-06-20 00:03:56','2023-06-20
00:03:56',NULL,'1368',NULL,NULL),
(4078,1368,'ELIGIBILITY','applicants_certifications/
U1368T1687219462.pdf','applicants_certifications','CSC.pdf','U1368T1687219462.pdf',
'2023-06-20 00:04:22','2023-06-20 00:04:22',NULL,'1368',NULL,NULL),
(4079,1408,'PDS','applicants_certifications/
U1408T1687219896.pdf','applicants_certifications','Lu-ong
PDS.pdf','U1408T1687219896.pdf','2023-06-20 00:11:36','2023-06-20
00:11:36',NULL,'1408',NULL,NULL),
(4080,964,'ELIGIBILITY','applicants_certifications/
U964T1687220596.pdf','applicants_certifications','board
rating.pdf','U964T1687220596.pdf','2023-06-20 00:23:16','2023-06-20
00:23:16',NULL,'964',NULL,NULL),(4081,964,'PDS','applicants_certifications/
U964T1687220745.pdf','applicants_certifications','PDS-
IFSU.pdf','U964T1687220745.pdf','2023-06-20 00:25:45','2023-06-20
00:25:45',NULL,'964',NULL,NULL),(4082,1407,'COE','applicants_certifications/
U1407T1687223608.','applicants_certifications','Service
record','U1407T1687223608.','2023-06-20 01:13:28','2023-06-20
01:13:28',NULL,'1407',NULL,NULL),(4083,1407,'PDS','applicants_certifications/
U1407T1687226386.pdf','applicants_certifications','PDS-eSTER
appl.pdf','U1407T1687226386.pdf','2023-06-20 01:59:46','2023-06-20
01:59:46',NULL,'1407',NULL,NULL),(4086,1160,'PDS','applicants_certifications/
U1160T1687232973.pdf','applicants_certifications','inbound2989665486904036339.pdf',
'U1160T1687232973.pdf','2023-06-20 03:49:33','2023-06-20
03:49:33',NULL,'1160',NULL,NULL),(4087,1160,'PDS','applicants_certifications/
U1160T1687232989.pdf','applicants_certifications','inbound214355853646693921.pdf','
U1160T1687232989.pdf','2023-06-20 03:49:49','2023-06-20
03:49:49',NULL,'1160',NULL,NULL),(4088,1160,'PDS','applicants_certifications/
U1160T1687233007.pdf','applicants_certifications','inbound6437635209051825843.pdf',
'U1160T1687233007.pdf','2023-06-20 03:50:07','2023-06-20
03:50:07',NULL,'1160',NULL,NULL),(4091,326,'COE','applicants_certifications/
U326T1687234025.jpg','applicants_certifications','CamScanner 06-19-2023
10.29_1.jpg','U326T1687234025.jpg','2023-06-20 04:07:05','2023-06-20
04:07:05',NULL,'326',NULL,NULL),(4092,326,'TOR','applicants_certifications/
U326T1687234632.pdf','applicants_certifications','TRANSCRIPT OF
RECORDS.pdf','U326T1687234632.pdf','2023-06-20 04:17:12','2023-06-20
04:17:12',NULL,'326',NULL,NULL),(4093,928,'COE','applicants_certifications/
U928T1687235894.pdf','applicants_certifications','CERTIFICATE OF
EMPLOYMENT.pdf','U928T1687235894.pdf','2023-06-20 04:38:14','2023-06-20
04:38:14',NULL,'928',NULL,NULL),
(4094,928,'ELIGIBILITY','applicants_certifications/
U928T1687235925.pdf','applicants_certifications','AUTHENTICATED CERTIFICATE OF
PASSING AND RATING.pdf','U928T1687235925.pdf','2023-06-20 04:38:45','2023-06-20
04:38:45',NULL,'928',NULL,NULL),(4095,1160,'SWT','applicants_certifications/
U1160T1687235996.pdf','applicants_certifications','inbound5390430699607689019.pdf',
'U1160T1687235996.pdf','2023-06-20 04:39:56','2023-06-20
04:39:56',NULL,'1160',NULL,NULL),(4097,928,'TOR','applicants_certifications/
U928T1687237444.pdf','applicants_certifications','TOR1of3.pdf','U928T1687237444.pdf
','2023-06-20 05:04:04','2023-06-20 05:04:04',NULL,'928',NULL,NULL),
(4098,928,'TOR','applicants_certifications/
U928T1687237568.pdf','applicants_certifications','TOR
2of3.pdf','U928T1687237568.pdf','2023-06-20 05:06:08','2023-06-20
05:06:08',NULL,'928',NULL,NULL),(4099,928,'TOR','applicants_certifications/
U928T1687237599.pdf','applicants_certifications','TOR
3of3.pdf','U928T1687237599.pdf','2023-06-20 05:06:39','2023-06-20
05:06:39',NULL,'928',NULL,NULL),(4100,928,'PDS','applicants_certifications/
U928T1687238838.pdf','applicants_certifications','PDS1.pdf','U928T1687238838.pdf','
2023-06-20 05:27:18','2023-06-20 05:27:18',NULL,'928',NULL,NULL),
(4102,928,'PDS','applicants_certifications/
U928T1687238860.pdf','applicants_certifications','PDS2.pdf','U928T1687238860.pdf','
2023-06-20 05:27:40','2023-06-20 05:27:40',NULL,'928',NULL,NULL),
(4103,928,'SWT','applicants_certifications/
U928T1687239208.pdf','applicants_certifications','trainings and
seminars.pdf','U928T1687239208.pdf','2023-06-20 05:33:28','2023-06-20
05:33:28',NULL,'928',NULL,NULL),(4104,928,'SWT','applicants_certifications/
U928T1687239415.pdf','applicants_certifications','trainings and
seminars2.pdf','U928T1687239415.pdf','2023-06-20 05:36:55','2023-06-20
05:36:55',NULL,'928',NULL,NULL),(4108,1413,'COE','applicants_certifications/
U1413T1687242505.pdf','applicants_certifications','COE
(RedCross).pdf','U1413T1687242505.pdf','2023-06-20 06:28:25','2023-06-20
06:28:25',NULL,'1413',NULL,NULL),(4109,1413,'TOR','applicants_certifications/
U1413T1687242562.jpg','applicants_certifications','otr1.jpg','U1413T1687242562.jpg'
,'2023-06-20 06:29:22','2023-06-20 06:29:22',NULL,'1413',NULL,NULL),
(4110,1413,'TOR','applicants_certifications/
U1413T1687242585.jpg','applicants_certifications','otr2.jpg','U1413T1687242585.jpg'
,'2023-06-20 06:29:45','2023-06-20 06:29:45',NULL,'1413',NULL,NULL),
(4111,1413,'TOR','applicants_certifications/
U1413T1687242613.jpg','applicants_certifications','otr3.jpg','U1413T1687242613.jpg'
,'2023-06-20 06:30:13','2023-06-20 06:30:13',NULL,'1413',NULL,NULL),
(4113,1415,'TOR','applicants_certifications/
U1415T1687242679.pdf','applicants_certifications','4.1 TRANSCRIPT OF RECORDS -
Copy.pdf','U1415T1687242679.pdf','2023-06-20 06:31:19','2023-06-20
06:31:19',NULL,'1415',NULL,NULL),(4115,1415,'COE','applicants_certifications/
U1415T1687242711.pdf','applicants_certifications','CERTIFICATE OF
EMPLOYMENT_BKLIA.pdf','U1415T1687242711.pdf','2023-06-20 06:31:51','2023-06-20
06:31:51',NULL,'1415',NULL,NULL),(4116,1413,'PDS','applicants_certifications/
U1413T1687242713.pdf','applicants_certifications','cy pds.xlsx page
1.pdf','U1413T1687242713.pdf','2023-06-20 06:31:53','2023-06-20
06:31:53',NULL,'1413',NULL,NULL),(4117,1415,'SWT','applicants_certifications/
U1415T1687242843.pdf','applicants_certifications','CERTIFICATE OF
EMPLOYMENT_BKLIA.pdf','U1415T1687242843.pdf','2023-06-20 06:34:03','2023-06-20
06:34:03',NULL,'1415',NULL,NULL),
(4118,1415,'ELIGIBILITY','applicants_certifications/
U1415T1687242853.pdf','applicants_certifications','3. CERTIFICATE OF ELIGIBILITY-CS
PROF.pdf','U1415T1687242853.pdf','2023-06-20 06:34:13','2023-06-20
06:34:13',NULL,'1415',NULL,NULL),
(4119,1415,'ELIGIBILITY','applicants_certifications/
U1415T1687242865.pdf','applicants_certifications','3.1CERTIFICATE OF
RATING.pdf','U1415T1687242865.pdf','2023-06-20 06:34:25','2023-06-20
06:34:25',NULL,'1415',NULL,NULL),(4120,1413,'PDS','applicants_certifications/
U1413T1687242872.pdf','applicants_certifications','cy pds.xlsx page
2.pdf','U1413T1687242872.pdf','2023-06-20 06:34:32','2023-06-20
06:34:32',NULL,'1413',NULL,NULL),(4121,1413,'PDS','applicants_certifications/
U1413T1687242895.pdf','applicants_certifications','cy pds.xlsx page
3.pdf','U1413T1687242895.pdf','2023-06-20 06:34:55','2023-06-20
06:34:55',NULL,'1413',NULL,NULL),(4122,1415,'PDS','applicants_certifications/
U1415T1687242908.pdf','applicants_certifications','2.1 PERSONAL DATA SHEET EXCEL -
Copy.pdf','U1415T1687242908.pdf','2023-06-20 06:35:08','2023-06-20
06:35:08',NULL,'1415',NULL,NULL),(4123,1413,'PDS','applicants_certifications/
U1413T1687242939.pdf','applicants_certifications','cy pds.xlsx page
4.pdf','U1413T1687242939.pdf','2023-06-20 06:35:39','2023-06-20
06:35:39',NULL,'1413',NULL,NULL),(4124,1413,'SWT','applicants_certifications/
U1413T1687243044.pdf','applica
nts_certifications','R.A. 9184 CERTIFICATE-DUMAPIS, CYNTHIA S.
(1).pdf','U1413T1687243044.pdf','2023-06-20 06:37:24','2023-06-20
06:37:24',NULL,'1413',NULL,NULL),(4125,1300,'PDS','applicants_certifications/
U1300T1687243073.pdf','applicants_certifications','inbound4556486160151766915.pdf',
'U1300T1687243073.pdf','2023-06-20 06:37:53','2023-06-20
06:37:53',NULL,'1300',NULL,NULL),(4126,1300,'PDS','applicants_certifications/
U1300T1687243103.pdf','applicants_certifications','inbound4780452608566206234.pdf',
'U1300T1687243103.pdf','2023-06-20 06:38:23','2023-06-20
06:38:23',NULL,'1300',NULL,NULL),(4127,1417,'TOR','applicants_certifications/
U1417T1687243830.pdf','applicants_certifications','TOR_100755
(wecompress.com).pdf','U1417T1687243830.pdf','2023-06-20 06:50:30','2023-06-20
06:50:30',NULL,'1417',NULL,NULL),(4129,1417,'PDS','applicants_certifications/
U1417T1687243998.pdf','applicants_certifications','PDS_100919.pdf','U1417T168724399
8.pdf','2023-06-20 06:53:18','2023-06-20 06:53:18',NULL,'1417',NULL,NULL),
(4130,1417,'COE','applicants_certifications/
U1417T1687244021.jpg','applicants_certifications','IFSU-certificate of
employment_100648 (wecompress.com).jpg','U1417T1687244021.jpg','2023-06-20
06:53:41','2023-06-20 06:53:41',NULL,'1417',NULL,NULL),
(4131,1417,'ELIGIBILITY','applicants_certifications/
U1417T1687244045.pdf','applicants_certifications','PRC
license_100747.pdf','U1417T1687244045.pdf','2023-06-20 06:54:05','2023-06-20
06:54:05',NULL,'1417',NULL,NULL),
(4132,1300,'ELIGIBILITY','applicants_certifications/
U1300T1687244923.jpg','applicants_certifications','inbound1610991789957512382.jpg',
'U1300T1687244923.jpg','2023-06-20 07:08:43','2023-06-20
07:08:43',NULL,'1300',NULL,NULL),
(4133,1300,'ELIGIBILITY','applicants_certifications/
U1300T1687244941.jpg','applicants_certifications','inbound5151129784582962353.jpg',
'U1300T1687244941.jpg','2023-06-20 07:09:01','2023-06-20
07:09:01',NULL,'1300',NULL,NULL),(4134,1300,'COE','applicants_certifications/
U1300T1687244964.jpg','applicants_certifications','inbound4383840975860105019.jpg',
'U1300T1687244964.jpg','2023-06-20 07:09:24','2023-06-20
07:09:24',NULL,'1300',NULL,NULL),(4136,281,'TOR','applicants_certifications/
U281T1687246036.pdf','applicants_certifications','Transcript of
Records.pdf','U281T1687246036.pdf','2023-06-20 07:27:16','2023-06-20
07:27:16',NULL,'281',NULL,NULL),
(4142,281,'ELIGIBILITY','applicants_certifications/
U281T1687246661.pdf','applicants_certifications','Civil Service Eligibility
(Prof).pdf','U281T1687246661.pdf','2023-06-20 07:37:41','2023-06-20
07:37:41',NULL,'281',NULL,NULL),(4143,1372,'PDS','applicants_certifications/
U1372T1687247355.pdf','applicants_certifications','Personal data Sheet with work
exp sheet-compressed.pdf','U1372T1687247355.pdf','2023-06-20 07:49:15','2023-06-20
07:49:15',NULL,'1372',NULL,NULL),(4145,281,'TOR','applicants_certifications/
U281T1687249438.pdf','applicants_certifications','Diploma.pdf','U281T1687249438.pdf
','2023-06-20 08:23:58','2023-06-20 08:23:58',NULL,'281',NULL,NULL),
(4146,281,'COE','applicants_certifications/
U281T1687249454.pdf','applicants_certifications','Certificate of
Employment.pdf','U281T1687249454.pdf','2023-06-20 08:24:14','2023-06-20
08:24:14',NULL,'281',NULL,NULL),(4147,281,'SWT','applicants_certifications/
U281T1687249720.pdf','applicants_certifications','On-the-Job Training
2.pdf','U281T1687249720.pdf','2023-06-20 08:28:40','2023-06-20
08:28:40',NULL,'281',NULL,NULL),(4148,281,'SWT','applicants_certifications/
U281T1687249778.pdf','applicants_certifications','2nd Northern Luzon Event-
Management Convention.pdf','U281T1687249778.pdf','2023-06-20 08:29:38','2023-06-20
08:29:38',NULL,'281',NULL,NULL),(4149,281,'SWT','applicants_certifications/
U281T1687249797.pdf','applicants_certifications','10th EdukCircle International
Convention.pdf','U281T1687249797.pdf','2023-06-20 08:29:57','2023-06-20
08:29:57',NULL,'281',NULL,NULL),(4150,281,'SWT','applicants_certifications/
U281T1687250379.pdf','applicants_certifications','On-the-Job Training
1.pdf','U281T1687250379.pdf','2023-06-20 08:39:39','2023-06-20
08:39:39',NULL,'281',NULL,NULL),(4151,281,'SWT','applicants_certifications/
U281T1687251261.pdf','applicants_certifications','Tour Guiding
Seminar.pdf','U281T1687251261.pdf','2023-06-20 08:54:21','2023-06-20
08:54:21',NULL,'281',NULL,NULL),(4152,1348,'SWT','applicants_certifications/
U1348T1687255417.jpg','applicants_certifications','inbound7941115112990357543.jpg',
'U1348T1687255417.jpg','2023-06-20 10:03:37','2023-06-20
10:03:37',NULL,'1348',NULL,NULL),(4153,1348,'SWT','applicants_certifications/
U1348T1687255481.jpg','applicants_certifications','inbound3660484528517367953.jpg',
'U1348T1687255481.jpg','2023-06-20 10:04:41','2023-06-20
10:04:41',NULL,'1348',NULL,NULL),(4154,1348,'SWT','applicants_certifications/
U1348T1687255505.jpg','applicants_certifications','inbound3035771183230467019.jpg',
'U1348T1687255505.jpg','2023-06-20 10:05:05','2023-06-20
10:05:05',NULL,'1348',NULL,NULL),(4155,1348,'SWT','applicants_certifications/
U1348T1687255519.jpg','applicants_certifications','inbound4776329767082227535.jpg',
'U1348T1687255519.jpg','2023-06-20 10:05:19','2023-06-20
10:05:19',NULL,'1348',NULL,NULL),
(4156,1348,'ELIGIBILITY','applicants_certifications/
U1348T1687255536.jpg','applicants_certifications','inbound2096293772193935469.jpg',
'U1348T1687255536.jpg','2023-06-20 10:05:36','2023-06-20
10:05:36',NULL,'1348',NULL,NULL),(4157,1348,'SWT','applicants_certifications/
U1348T1687255555.jpg','applicants_certifications','inbound9006329864478864400.jpg',
'U1348T1687255555.jpg','2023-06-20 10:05:55','2023-06-20
10:05:55',NULL,'1348',NULL,NULL),(4158,1348,'SWT','applicants_certifications/
U1348T1687255571.jpg','applicants_certifications','inbound4045536317462802314.jpg',
'U1348T1687255571.jpg','2023-06-20 10:06:11','2023-06-20
10:06:11',NULL,'1348',NULL,NULL),(4159,1348,'SWT','applicants_certifications/
U1348T1687255589.jpg','applicants_certifications','inbound8898870743555289746.jpg',
'U1348T1687255589.jpg','2023-06-20 10:06:29','2023-06-20
10:06:29',NULL,'1348',NULL,NULL),(4160,1348,'SWT','applicants_certifications/
U1348T1687255624.jpg','applicants_certifications','inbound2954018018287511887.jpg',
'U1348T1687255624.jpg','2023-06-20 10:07:04','2023-06-20
10:07:04',NULL,'1348',NULL,NULL),(4161,1348,'SWT','applicants_certifications/
U1348T1687255652.jpg','applicants_certifications','inbound3749435795024457210.jpg',
'U1348T1687255652.jpg','2023-06-20 10:07:32','2023-06-20
10:07:32',NULL,'1348',NULL,NULL),(4163,1348,'SWT','applicants_certifications/
U1348T1687255700.jpg','applicants_certifications','inbound5937511895651878654.jpg',
'U1348T1687255700.jpg','2023-06-20 10:08:20','2023-06-20
10:08:20',NULL,'1348',NULL,NULL),(4166,1348,'SWT','applicants_certifications/
U1348T1687255769.jpg','applicants_certifications','inbound5843964637360958516.jpg',
'U1348T1687255769.jpg','2023-06-20 10:09:29','2023-06-20
10:09:29',NULL,'1348',NULL,NULL),(4169,1348,'TOR','applicants_certifications/
U1348T1687256525.jpg','applicants_certifications','inbound426170151938477285.jpg','
U1348T1687256525.jpg','2023-06-20 10:22:05','2023-06-20
10:22:05',NULL,'1348',NULL,NULL),(4170,1348,'TOR','applicants_certifications/
U1348T1687256547.jpg','applicants_certifications','inbound1672783873981997775.jpg',
'U1348T1687256547.jpg','2023-06-20 10:22:27','2023-06-20
10:22:27',NULL,'1348',NULL,NULL),(4171,1348,'TOR','applicants_certifications/
U1348T1687256576.jpg','applicants_certifications','inbound5272382416313063045.jpg',
'U1348T1687256576.jpg','2023-06-20 10:22:56','2023-06-20
10:22:56',NULL,'1348',NULL,NULL),(4172,1348,'TOR','applicants_certifications/
U1348T1687256607.jpg','applicants_certifications','inbound266714494079933602.jpg','
U1348T1687256607.jpg','2023-06-20 10:23:27','2023-06-20
10:23:27',NULL,'1348',NULL,NULL),(4173,1348,'TOR','applicants_certifications/
U1348T1687256629.jpg','applicants_certifications','inbound3070206204073933224.jpg',
'U1348T1687256629.jpg','2023-06-20 10:23:49','2023-06-20
10:23:49',NULL,'1348',NULL,NULL),(4174,1348,'COE','applicants_certifications/
U1348T1687256692.pdf','applicants_certifications','inbound2771361039762336049.pdf',
'U1348T1687256692.pdf','2023-06-20 10:24:52','2023-06-20
10:24:52',NULL,'1348',NULL,NULL),(4175,1348,'SWT','applicants_certifications/
U1348T1687256737.jpg','applicants_certifications','inbound4202431015471089903.jpg',
'U1348T1687256737.jpg','2023-06-20 10:25:37','2023-06-20
10:25:37',NULL,'1348',NULL,NULL),(4176,1348,'SWT','applicants_certifications/
U1348T1687256780.jpg','applicants_certifications','inbound6859682890395504156.jpg',
'U1348T1687256780.jpg','2023-06-20 10:26:20','2023-06-20
10:26:20',NULL,'1348',NULL,NULL),(4177,1348,'SWT','applicants_certifications/
U1348T1687256816.jpg','applicants_certifications','inbound7212443555504701101.jpg',
'U1348T1687256816.jpg','2023-06-20 10:26:56','2023-06-20
10:26:56',NULL,'1348',NULL,NULL),(4178,1348,'SWT','applicants_certifications/
U1348T1687256845.jpg','applicants_certifications','inbound8934841123971482014.jpg',
'U1348T1687256845.jpg','2023-06-20 10:27:25','2023-06-20
10:27:25',NULL,'1348',NULL,NULL),(4179,1348,'SWT','applicants_certifications/
U1348T1687256867.jpg','applicants_certifications','inbound6395596788695373941.jpg',
'U1348T1687256867.jpg','2023-06-20 10:27:47','2023-06-20
10:27:47',NULL,'1348',NULL,NULL),(4180,1348,'SWT','applicants_certifications/
U1348T1687256913.jpg','applicants_certifications','inbound433997215342218085.jpg','
U1348T1687256913.jpg','2023-06-20 10:28:33','2023-06-20
10:28:33',NULL,'1348',NULL,NULL),(4181,1348,'PDS','applicants_certifications/
U1348T1687257276.pdf','applicants_certifications','inbound6263948454384549464.pdf',
'U1348T1687257276.pdf','2023-06-20 10:34:36','2023-06-20
10:34:36',NULL,'1348',NULL,NULL),(4182,1348,'PDS','applicants_certifications/
U1348T1687262571.pdf','applicants_certifications','inbound9130778953251411325.pdf',
'U1348T1687262571.pdf','2023-06-20
12:02:51','2023-06-20 12:02:51',NULL,'1348',NULL,NULL),
(4183,483,'PDS','applicants_certifications/
U483T1687273809.pdf','applicants_certifications','inbound5441607184871585104.pdf','
U483T1687273809.pdf','2023-06-20 15:10:09','2023-06-20
15:10:09',NULL,'483',NULL,NULL),(4184,985,'COE','applicants_certifications/
U985T1687274544.pdf','applicants_certifications','Service
Record.pdf','U985T1687274544.pdf','2023-06-20 15:22:24','2023-06-20
15:22:24',NULL,'985',NULL,NULL),(4185,974,'TOR','applicants_certifications/
U974T1687275090.pdf','applicants_certifications','TOR_compressed.pdf','U974T1687275
090.pdf','2023-06-20 15:31:30','2023-06-20 15:31:30',NULL,'974',NULL,NULL),
(4186,974,'PDS','applicants_certifications/
U974T1687275141.pdf','applicants_certifications','tinywow_PDS Page
2_26911754_compressed.pdf','U974T1687275141.pdf','2023-06-20 15:32:21','2023-06-20
15:32:21',NULL,'974',NULL,NULL),(4188,1299,'COE','applicants_certifications/
U1299T1687277815.jpg','applicants_certifications','20230621_001509.jpg','U1299T1687
277815.jpg','2023-06-20 16:16:55','2023-06-20 16:16:55',NULL,'1299',NULL,NULL),
(4191,1035,'PDS','applicants_certifications/
U1035T1687297265.jpg','applicants_certifications','Document
5_5.jpg','U1035T1687297265.jpg','2023-06-20 21:41:05','2023-06-20
21:41:05',NULL,'1035',NULL,NULL),(4192,1035,'PDS','applicants_certifications/
U1035T1687297379.jpg','applicants_certifications','Document
5_6.jpg','U1035T1687297379.jpg','2023-06-20 21:42:59','2023-06-20
21:42:59',NULL,'1035',NULL,NULL),(4193,1035,'PDS','applicants_certifications/
U1035T1687297417.jpg','applicants_certifications','Document
5_7.jpg','U1035T1687297417.jpg','2023-06-20 21:43:37','2023-06-20
21:43:37',NULL,'1035',NULL,NULL),(4194,1035,'PDS','applicants_certifications/
U1035T1687297650.jpg','applicants_certifications','Document
4_1.jpg','U1035T1687297650.jpg','2023-06-20 21:47:30','2023-06-20
21:47:30',NULL,'1035',NULL,NULL),(4195,1206,'TOR','applicants_certifications/
U1206T1687304675.pdf','applicants_certifications','TOR Andres-
compressed.pdf','U1206T1687304675.pdf','2023-06-20 23:44:35','2023-06-20
23:44:35',NULL,'1206',NULL,NULL),(4196,1333,'COE','applicants_certifications/
U1333T1687314653.pdf','applicants_certifications','coe2.pdf','U1333T1687314653.pdf'
,'2023-06-21 02:30:53','2023-06-21 02:30:53',NULL,'1333',NULL,NULL),
(4197,1217,'SWT','applicants_certifications/
U1217T1687315059.pdf','applicants_certifications','Certificates.pdf','U1217T1687315
059.pdf','2023-06-21 02:37:39','2023-06-21 02:37:39',NULL,'1217',NULL,NULL),
(4200,1410,'TOR','applicants_certifications/
U1410T1687315690.pdf','applicants_certifications','inbound1253963028815130811.pdf',
'U1410T1687315690.pdf','2023-06-21 02:48:10','2023-06-21
02:48:10',NULL,'1410',NULL,NULL),(4201,910,'PDS','applicants_certifications/
U910T1687316763.pdf','applicants_certifications','Work Sheet
1.pdf','U910T1687316763.pdf','2023-06-21 03:06:03','2023-06-21
03:06:03',NULL,'910',NULL,NULL),(4202,910,'PDS','applicants_certifications/
U910T1687316812.pdf','applicants_certifications','Work Sheet
2.pdf','U910T1687316812.pdf','2023-06-21 03:06:52','2023-06-21
03:06:52',NULL,'910',NULL,NULL),(4204,1188,'TOR','applicants_certifications/
U1188T1687317283.jpg','applicants_certifications','TOR Page
1.jpg','U1188T1687317283.jpg','2023-06-21 03:14:43','2023-06-21
03:14:43',NULL,'1188',NULL,NULL),(4205,1217,'PDS','applicants_certifications/
U1217T1687317324.pdf','applicants_certifications','PERSONAL DATA
SHEET.pdf','U1217T1687317324.pdf','2023-06-21 03:15:24','2023-06-21
03:15:24',NULL,'1217',NULL,NULL),(4206,1188,'TOR','applicants_certifications/
U1188T1687317338.jpg','applicants_certifications','TOR Page
2.jpg','U1188T1687317338.jpg','2023-06-21 03:15:38','2023-06-21
03:15:38',NULL,'1188',NULL,NULL),(4207,1188,'TOR','applicants_certifications/
U1188T1687317358.jpg','applicants_certifications','TOR Page
3.jpg','U1188T1687317358.jpg','2023-06-21 03:15:58','2023-06-21
03:15:58',NULL,'1188',NULL,NULL),(4208,1188,'COE','applicants_certifications/
U1188T1687317387.jpg','applicants_certifications','CERTIFICATE OF
EMPLOYMENT.jpg','U1188T1687317387.jpg','2023-06-21 03:16:27','2023-06-21
03:16:27',NULL,'1188',NULL,NULL),(4209,1246,'TOR','applicants_certifications/
U1246T1687317431.pdf','applicants_certifications','TOR.pdf','U1246T1687317431.pdf',
'2023-06-21 03:17:11','2023-06-21 03:17:11',NULL,'1246',NULL,NULL),
(4210,1188,'COE','applicants_certifications/
U1188T1687317456.jpg','applicants_certifications','DESIGNATION.jpg','U1188T16873174
56.jpg','2023-06-21 03:17:36','2023-06-21 03:17:36',NULL,'1188',NULL,NULL),
(4211,1246,'COE','applicants_certifications/
U1246T1687317465.pdf','applicants_certifications','COE
FINAL.pdf','U1246T1687317465.pdf','2023-06-21 03:17:45','2023-06-21
03:17:45',NULL,'1246',NULL,NULL),
(4212,1246,'ELIGIBILITY','applicants_certifications/
U1246T1687317480.jpg','applicants_certifications','CSC
Cert.jpg','U1246T1687317480.jpg','2023-06-21 03:18:00','2023-06-21
03:18:00',NULL,'1246',NULL,NULL),
(4213,1217,'ELIGIBILITY','applicants_certifications/
U1217T1687317483.pdf','applicants_certifications','Training.pdf','U1217T1687317483.
pdf','2023-06-21 03:18:03','2023-06-21 03:18:03',NULL,'1217',NULL,NULL),
(4214,1246,'PDS','applicants_certifications/
U1246T1687317493.xlsx','applicants_certifications','PDS.xlsx','U1246T1687317493.xls
x','2023-06-21 03:18:13','2023-06-21 03:18:13',NULL,'1246',NULL,NULL),
(4218,1246,'SWT','applicants_certifications/
U1246T1687317621.pdf','applicants_certifications','ADVANCED
QGIS.pdf','U1246T1687317621.pdf','2023-06-21 03:20:21','2023-06-21
03:20:21',NULL,'1246',NULL,NULL),(4219,1188,'PDS','applicants_certifications/
U1188T1687317628.jpg','applicants_certifications','PDS_C1.jpg','U1188T1687317628.jp
g','2023-06-21 03:20:28','2023-06-21 03:20:28',NULL,'1188',NULL,NULL),
(4220,1246,'SWT','applicants_certifications/
U1246T1687317635.pdf','applicants_certifications','BASIC
QGIS.pdf','U1246T1687317635.pdf','2023-06-21 03:20:35','2023-06-21
03:20:35',NULL,'1246',NULL,NULL),(4221,1246,'SWT','applicants_certifications/
U1246T1687317670.pdf','applicants_certifications','PHOTO
TRAINING.pdf','U1246T1687317670.pdf','2023-06-21 03:21:10','2023-06-21
03:21:10',NULL,'1246',NULL,NULL),(4222,1246,'SWT','applicants_certifications/
U1246T1687317691.pdf','applicants_certifications','TRAINING
PHOTO.pdf','U1246T1687317691.pdf','2023-06-21 03:21:31','2023-06-21
03:21:31',NULL,'1246',NULL,NULL),(4223,910,'PDS','applicants_certifications/
U910T1687317760.pdf','applicants_certifications','Image_20230621_0001.pdf','U910T16
87317760.pdf','2023-06-21 03:22:40','2023-06-21 03:22:40',NULL,'910',NULL,NULL),
(4224,910,'PDS','applicants_certifications/
U910T1687317799.pdf','applicants_certifications','Image_20230621_0002.pdf','U910T16
87317799.pdf','2023-06-21 03:23:19','2023-06-21 03:23:19',NULL,'910',NULL,NULL),
(4225,1246,'SWT','applicants_certifications/
U1246T1687317800.jpg','applicants_certifications','TRAINING
PHOTO.jpg','U1246T1687317800.jpg','2023-06-21 03:23:20','2023-06-21
03:23:20',NULL,'1246',NULL,NULL),(4226,910,'PDS','applicants_certifications/
U910T1687317830.pdf','applicants_certifications','Image_20230621_0003.pdf','U910T16
87317830.pdf','2023-06-21 03:23:50','2023-06-21 03:23:50',NULL,'910',NULL,NULL),
(4227,910,'PDS','applicants_certifications/
U910T1687317866.pdf','applicants_certifications','Image_20230621_0004.pdf','U910T16
87317866.pdf','2023-06-21 03:24:26','2023-06-21 03:24:26',NULL,'910',NULL,NULL),
(4228,910,'PDS','applicants_certifications/
U910T1687317891.pdf','applicants_certifications','Image_20230621_0005.pdf','U910T16
87317891.pdf','2023-06-21 03:24:51','2023-06-21 03:24:51',NULL,'910',NULL,NULL),
(4229,910,'PDS','applicants_certifications/
U910T1687317919.pdf','applicants_certifications','Image_20230621_0006.pdf','U910T16
87317919.pdf','2023-06-21 03:25:19','2023-06-21 03:25:19',NULL,'910',NULL,NULL),
(4230,910,'PDS','applicants_certifications/
U910T1687317954.pdf','applicants_certifications','Image_20230621_0007.pdf','U910T16
87317954.pdf','2023-06-21 03:25:54','2023-06-21 03:25:54',NULL,'910',NULL,NULL),
(4231,1188,'PDS','applicants_certifications/
U1188T1687318085.jpg','applicants_certifications','PDS_C2.jpg','U1188T1687318085.jp
g','2023-06-21 03:28:05','2023-06-21 03:28:05',NULL,'1188',NULL,NULL),
(4232,1188,'PDS','applicants_certifications/
U1188T1687318116.jpg','applicants_certifications','PDS_C3.jpg','U1188T1687318116.jp
g','2023-06-21 03:28:36','2023-06-21 03:28:36',NULL,'1188',NULL,NULL),
(4233,1188,'PDS','applicants_certifications/
U1188T1687318148.jpg','applicants_certifications','PDS_C4.jpg','U1188T1687318148.jp
g','2023-06-21 03:29:08','2023-06-21 03:29:08',NULL,'1188',NULL,NULL),
(4234,1429,'TOR','applicants_certifications/
U1429T1687318207.pdf','applicants_certifications','P1 Transcript of
Records_ABP.pdf','U1429T1687318207.pdf','2023-06-21 03:30:07','2023-06-21
03:30:07',NULL,'1429',NULL,NULL),(4235,1429,'COE','applicants_certifications/
U1429T1687318236.pdf','applicants_certifications','E1 Certificate Of
Employment_PLGU_ABP.pdf','U1429T1687318236.pdf','2023-06-21 03:30:36','2023-06-21
03:30:36',NULL,'1429',NULL,NULL),(4236,1429,'COE','applicants_certifications/
U1429T1687318261.pdf','applicants_certifications','E2 Certificate of Employment
LCMC_ABP.pdf','U1429T1687318261.pdf','2023-06-21 03:31:01','2023-06-21
03:31:01',NULL,'1429',NULL,NULL),(4237,910,'SWT','applicants_certifications/
U910T1687318514.pdf','applicants_certifications','Training
3.pdf','U910T1687318514.pdf','2023-06-21 03:35:14','2023-06-21
03:35:14',NULL,'910',NULL,NULL),(4238,1429,'COE','applicants_certifications/
U1429T1687318896.pdf','applicants_certifications','E3 Certificate Of
Employment_PLGU_ABP..pdf','U1429T1687318896.pdf','2023-06-21 03:41:36','2023-06-21
03:41:36',NULL,'1429',NULL,NULL),(4239,1429,'SWT','applicants_certifications/
U1429T1687318967.pdf','applicants_certifications','21 Training on
ICSPPS_ABP.pdf','U1429T1687318967.pdf','2023-06-21 03:42:47','2023-06-21
03:42:47',NULL,'1429',NULL,NULL),(4240,1429,'SWT','applicants_certifications/
U1429T1687318994.pdf','applicants_certifications','20 One Time Cleansing of
PPE_ABP.pdf','U1429T1687318994.pdf','2023-06-21 03:43:14','2023-06-21
03:43:14',NULL,'1429',NULL,NULL),(4241,1429,'SWT','applicants_certifications/
U1429T1687319037.pdf','applicants_certifications','19 Certificate on Operations
Audit_ABP.pdf','U1429T1687319037.pdf','2023-06-21 03:43:57','2023-06-21
03:43:57',NULL,'1429',NULL,NULL),(4242,1429,'SWT','applicants_certifications/
U1429T1687319054.pdf','applicants_certifications','18 Certificate on Management
Audit, ABP.pdf','U1429T1687319054.pdf','2023-06-21 03:44:14','2023-06-21
03:44:14',NULL,'1429',NULL,NULL),(4243,1429,'SWT','applicants_certifications/
U1429T1687319078.pdf','applicants_certifications','16 Certificate on Basic
ICC_Internal auditing Principles_Practices.pdf','U1429T1687319078.pdf','2023-06-21
03:44:38','2023-06-21 03:44:38',NULL,'1429',NULL,NULL),
(4244,1429,'SWT','applicants_certifications/
U1429T1687319109.pdf','applicants_certifications','15 Certificate on
Principle_Management_Government Funds n
Properties.pdf','U1429T1687319109.pdf','2023-06-21 03:45:09','2023-06-21
03:45:09',NULL,'1429',NULL,NULL),(4245,1429,'SWT','applicants_certifications/
U1429T1687319128.pdf','applicants_certifications','14 Certificate on Supervisory
Development Course M3n4_ABP.pdf','U1429T1687319128.pdf','2023-06-21
03:45:28','2023-06-21 03:45:28',NULL,'1429',NULL,NULL),
(4246,1429,'SWT','applicants_certifications/
U1429T1687319189.pdf','applicants_certifications','13 Certificate on Supervisory
Development Course M1n2_ABP.pdf','U1429T1687319189.pdf','2023-06-21
03:46:29','2023-06-21 03:46:29',NULL,'1429',NULL,NULL),
(4247,1429,'SWT','applicants_certifications/
U1429T1687319207.pdf','applicants_certifications','12 Supervisory Competency
Enhancement Training_ABP.pdf','U1429T1687319207.pdf','2023-06-21 03:46:47','2023-
06-21 03:46:47',NULL,'1429',NULL,NULL),
(4248,1429,'SWT','applicants_certifications/
U1429T1687319228.pdf','applicants_certifications','11 Certificate onTraining on
Internal Audit_Risk Assessment n Management.pdf','U1429T1687319228.pdf','2023-06-21
03:47:08','2023-06-21 03:47:08',NULL,'1429',NULL,NULL),
(4249,1429,'SWT','applicants_certifications/
U1429T1687319248.pdf','applicants_certifications','10 Certificate on Risk Based
Internal Auditing for LGU.pdf','U1429T1687319248.pdf','2023-06-21 03:47:28','2023-
06-21 03:47:28',NULL,'1429',NULL,NULL),
(4250,1429,'SWT','applicants_certifications/
U1429T1687319277.pdf','applicants_certifications','9 IFRSvsUSGAAP Certificate
ABP.pdf','U1429T1687319277.pdf','2023-06-21 03:47:57','2023-06-21
03:47:58',NULL,'1429',NULL,NULL),(4251,1429,'SWT','applicants_certifications/
U1429T1687319309.pdf','applicants_certifications','8 Certificate on Training of
Internal Control_Internal Audit Process_ ABP.pdf','U1429T1687319309.pdf','2023-06-
21 03:48:29','2023-06-21 03:48:29',NULL,'1429',NULL,NULL),
(4252,1429,'SWT','applicants_certifications/
U1429T1687319337.pdf','applicants_certifications','7 Results-Based Monitoring and
Evaluation Training Certificate_ABP.pdf','U1429T1687319337.pdf','2023-06-21
03:48:57','2023-06-21 03:48:57',NULL,'1429',NULL,NULL),
(4253,910,'COE','applicants_certifications/
U910T1687319369.pdf','applicants_certifications','IPCR July-Dec
2022.pdf','U910T1687319369.pdf','2023-06-21 03:49:29','2023-06-21
03:49:29',NULL,'910',NULL,NULL),(4254,1429,'SWT','applicants_certifications/
U1429T1687319375.pdf','applicants_certifications','5 ISO 14001
Certificate.pdf','U1429T1687319375.pdf','2023-06-21 03:49:35','2023-06-21
03:49:35',NULL,'1429',NULL,NULL),(4255,1429,'SWT','applicants_certifications/
U1429T1687319390.pdf','applicants_certifications','4 KC Regional Fiduciary Workshop
Certificate_ABP.pdf','U1429T1687319390.pdf','2023-06-21 03:49:50','2023-06-21
03:49:50',NULL,'1429',NULL,NULL),(4256,910,'COE','applicants_certifications/
U910T1687319433.pdf','applicants_certifications','IPCR Feb-June
2022.pdf','U910T1687319433.pdf','2023-06-21 03:50:33','2023-06-21
03:50:33',NULL,'910',NULL,NULL),
(4257,1429,'ELIGIBILITY','applicants_certifications/
U1429T1687319458.pdf','applicants_certifications','P4 Civil Service
Eligibility_ABP.pdf','U1429T1687319458.pdf','2023-06-21 03:50:58','2023-06-21
03:50:58',NULL,'1429',NULL,NULL),
(4258,1429,'ELIGIBILITY','applicants_certifications/
U1429T1687319505.pdf','applicants_certifications','P5 RA 1080 PRC CPA Board
ID_ABP.pdf','U1429T1687319505.pdf','2023-06-21 03:51:45','2023-06-21
03:51:45',NULL,'1429',NULL,NULL),
(4259,1428,'ELIGIBILITY','applicants_certifications/
U1428T1687319995.jpg','applicants_certifications','IMG_20230621_115406.jpg','U1428T
1687319995.jpg','2023-06-21 03:59:55','2023-06-21 03:59:55',NULL,'1428',NULL,NULL),
(4260,281,'SWT','applicants_certifications/
U281T1687320084.pdf','applicants_certifications','Cert of Recognition AMAZING RACE
2016.pdf','U281T1687320084.pdf','2023-06-21 04:01:24','2023-06-21
04:01:24',NULL,'281',NULL,NULL),(4261,1429,'PDS','applicants_certifications/
U1429T1687320084.pdf','applicants_certifications','1 Personal Data
Sheet_ABP.pdf','U1429T1687320084.pdf','2023-06-21 04:01:24','2023-06-21
04:01:24',NULL,'1429',NULL,NULL),(4262,281,'SWT','applicants_certifications/
U281T1687320096.pdf','applicants_certifications','Citizen
Journalism.pdf','U281T1687320096.pdf','2023-06-21 04:01:36','2023-06-21
04:01:36',NULL,'281',NULL,NULL),(4263,1109,'PDS','applicants_certifications/
U1109T1687323250.jpg','applicants_certifications','inbound7491966030070302355.jpg',
'U1109T1687323250.jpg','2023-06-21 04:54:10','2023-06-21
04:54:10',NULL,'1109',NULL,NULL),(4264,1109,'PDS','applicants_certifications/
U1109T1687323278.jpg','applicants_certifications','inbound9079688979782979392.jpg',
'U1109T1687323278.jpg','2023-06-21 04:54:38','2023-06-21
04:54:38',NULL,'1109',NULL,NULL),(4265,1109,'PDS','applicants_certifications/
U1109T1687323308.jpg','applicants_certifications','inbound8104920662710111015.jpg',
'U1109T1687323308.jpg','2023-06-21 04:55:08','2023-06-21
04:55:08',NULL,'1109',NULL,NULL),(4266,1109,'PDS','applicants_certifications/
U1109T1687323328.jpg','applicants_certifications','inbound7693695542268400955.jpg',
'U1109T1687323328.jpg','2023-06-21 04:55:28','2023-06-21
04:55:28',NULL,'1109',NULL,NULL),(4268,1109,'COE','applicants_certifications/
U1109T1687323409.jpg','applicants_certifications','inbound5644383447524150890.jpg',
'U1109T1687323409.jpg','2023-06-21 04:56:49','2023-06-21
04:56:49',NULL,'1109',NULL,NULL),(4269,1428,'SWT','applicants_certifications/
U1428T1687324415.jpg','applicants_certifications','training.jpg','U1428T1687324415.
jpg','2023-06-21 05:13:35','2023-06-21 05:13:35',NULL,'1428',NULL,NULL),
(4270,1395,'ELIGIBILITY','applicants_certifications/
U1395T1687325433.pdf','applicants_certifications','authenticated
PRC.pdf','U1395T1687325433.pdf','2023-06-21 05:30:33','2023-06-21
05:30:33',NULL,'1395',NULL,NULL),(4271,1368,'PDS','applicants_certifications/
U1368T1687326163.pdf','applicants_certifications','PDS.pdf','U1368T1687326163.pdf',
'2023-06-21 05:42:43','2023-06-21 05:42:43',NULL,'1368',NULL,NULL),
(4275,1428,'TOR','applicants_certifications/
U1428T1687326439.pdf','applicants_certifications','tor_compressed.pdf','U1428T16873
26439.pdf','2023-06-21 05:47:19','2023-06-21 05:47:19',NULL,'1428',NULL,NULL),
(4276,1430,'ELIGIBILITY','applicants_certifications/
U1430T1687326449.png','applicants_certifications','inbound3369155789645899997.png',
'U1430T1687326449.png','2023-06-21 05:47:29','2023-06-21
05:47:29',NULL,'1430',NULL,NULL),(4278,1430,'SWT','applicants_certifications/
U1430T1687326592.jpg','applicants_certifications','inbound5728188203551546293.jpg',
'U1430T1687326592.jpg','2023-06-21 05:49:52','2023-06-21
05:49:52',NULL,'1430',NULL,NULL),(4280,1428,'PDS','applicants_certifications/
U1428T1687327437.pdf','applicants_certifications','pds_compressed.pdf','U1428T16873
27437.pdf','2023-06-21 06:03:57','2023-06-21 06:03:57',NULL,'1428',NULL,NULL),
(4281,1432,'ELIGIBILITY','applicants_certifications/
U1432T1687328248.pdf','applicants_certifications','Certificate of Civil Service
Eligibility (PD 907).pdf','U1432T1687328248.pdf','2023-06-21 06:17:28','2023-06-21
06:17:28',NULL,'1432',NULL,NULL),
(4282,1431,'ELIGIBILITY','applicants_certifications/
U1431T1687328263.pdf','applicants_certifications','prc license
(2).pdf','U1431T1687328263.pdf','2023-06-21 06:17:43','2023-06-21
06:17:43',NULL,'1431',NULL,NULL),(4283,1432,'PDS','applicants_certifications/
U1432T1687328450.pdf','applicants_certifications','PERSONAL DATA
SHEET.pdf','U1432T1687328450.pdf','2023-06-21 06:20:50','2023-06-21
06:20:50',NULL,'1432',NULL,NULL),(4284,1432,'SWT','applicants_certifications/
U1432T1687328511.pdf','applicants_certifications','Cert. in US
Embassy.pdf','U1432T1687328511.pdf','2023-06-21 06:21:51','2023-06-21
06:21:51',NULL,'1432',NULL,NULL),(4285,1432,'SWT','applicants_certifications/
U1432T1687328529.pdf','applicants_certifications','Cert. in Asia
University.pdf','U1432T1687328529.pdf','2023-06-21 06:22:09','2023-06-21
06:22:09',NULL,'1432',NULL,NULL),(4286,1432,'SWT','applicants_certifications/
U1432T1687328548.pdf','applicants_certifications','Cert. in AE E-Teacher 2020
English for Journalism Self-Paced MOOC.pdf','U1432T1687328548.pdf','2023-06-21
06:22:28','2023-06-21 06:22:28',NULL,'1432',NULL,NULL),
(4287,1432,'SWT','applicants_certifications/
U1432T1687328560.pdf','applicants_certifications','Cert. in AE E-Teacher Winter
2020 TESOL Methodology.pdf','U1432T1687328560.pdf','2023-06-21 06:22:40','2023-06-
21 06:22:40',NULL,'1432',NULL,NULL),(4288,1431,'TOR','applicants_certifications/
U1431T1687328568.pdf','applicants_certifications','transcript of
records_compressed.pdf','U1431T1687328568.pdf','2023-06-21 06:22:48','2023-06-21
06:22:48',NULL,'1431',NULL,NULL),(4289,1432,'SWT','applicants_certifications/
U1432T1687328574.pdf','applicants_certifications','Cert. in Assessment of English
Language
Learners 2021.pdf','U1432T1687328574.pdf','2023-06-21 06:22:54','2023-06-21
06:22:54',NULL,'1432',NULL,NULL),(4290,1432,'SWT','applicants_certifications/
U1432T1687328587.pdf','applicants_certifications','Cert. in Content-based
Instruction MOOC.pdf','U1432T1687328587.pdf','2023-06-21 06:23:07','2023-06-21
06:23:07',NULL,'1432',NULL,NULL),(4291,1432,'SWT','applicants_certifications/
U1432T1687328611.pdf','applicants_certifications','Cert. in English for Media
Literacy MOOC 2022.pdf','U1432T1687328611.pdf','2023-06-21 06:23:31','2023-06-21
06:23:31',NULL,'1432',NULL,NULL),(4292,1432,'SWT','applicants_certifications/
U1432T1687328673.pdf','applicants_certifications','Cert. in FEU
Webinar.pdf','U1432T1687328673.pdf','2023-06-21 06:24:33','2023-06-21
06:24:33',NULL,'1432',NULL,NULL),(4293,1432,'SWT','applicants_certifications/
U1432T1687328742.pdf','applicants_certifications','Cert. in Iloko
Seminar.pdf','U1432T1687328742.pdf','2023-06-21 06:25:42','2023-06-21
06:25:42',NULL,'1432',NULL,NULL),(4294,1411,'TOR','applicants_certifications/
U1411T1687329027.pdf','applicants_certifications','CamScanner 06-21-2023
14.24.pdf','U1411T1687329027.pdf','2023-06-21 06:30:27','2023-06-21
06:30:27',NULL,'1411',NULL,NULL),(4295,1432,'TOR','applicants_certifications/
U1432T1687329356.pdf','applicants_certifications','TRANSCRIPT OF RECORDS (pg
1).pdf','U1432T1687329356.pdf','2023-06-21 06:35:56','2023-06-21
06:35:56',NULL,'1432',NULL,NULL),(4296,1432,'TOR','applicants_certifications/
U1432T1687329371.pdf','applicants_certifications','TRANSCRIPT OF RECORDS (pg
2).pdf','U1432T1687329371.pdf','2023-06-21 06:36:11','2023-06-21
06:36:11',NULL,'1432',NULL,NULL),(4297,1157,'COE','applicants_certifications/
U1157T1687329541.pdf','applicants_certifications','Certificate of
Employment.pdf','U1157T1687329541.pdf','2023-06-21 06:39:01','2023-06-21
06:39:01',NULL,'1157',NULL,NULL),
(4298,1157,'ELIGIBILITY','applicants_certifications/
U1157T1687329611.pdf','applicants_certifications','Civil Service
Eligibility.pdf','U1157T1687329611.pdf','2023-06-21 06:40:11','2023-06-21
06:40:11',NULL,'1157',NULL,NULL),(4299,1430,'PDS','applicants_certifications/
U1430T1687330530.xlsx','applicants_certifications','inbound2980025485889486852.xlsx
','U1430T1687330530.xlsx','2023-06-21 06:55:30','2023-06-21
06:55:30',NULL,'1430',NULL,NULL),(4300,1395,'TOR','applicants_certifications/
U1395T1687330881.pdf','applicants_certifications','TOR_compressed.pdf','U1395T16873
30881.pdf','2023-06-21 07:01:21','2023-06-21 07:01:21',NULL,'1395',NULL,NULL),
(4301,1395,'PDS','applicants_certifications/
U1395T1706677854.pdf','applicants_certifications','2024
PDS.pdf','U1395T1706677854.pdf','2024-01-31 13:10:54','2024-01-31
13:10:54',NULL,'1395',NULL,NULL),(4302,1435,'SWT','applicants_certifications/
U1435T1687332037.pdf','applicants_certifications','Loreivine Backid
Lugapo.pdf','U1435T1687332037.pdf','2023-06-21 07:20:37','2023-06-21
07:20:37',NULL,'1435',NULL,NULL),(4304,1435,'SWT','applicants_certifications/
U1435T1687332063.pdf','applicants_certifications','LOREIVINE BACKID LUGAPO
(1).pdf','U1435T1687332063.pdf','2023-06-21 07:21:03','2023-06-21
07:21:03',NULL,'1435',NULL,NULL),(4305,1435,'SWT','applicants_certifications/
U1435T1687332078.png','applicants_certifications','image.png','U1435T1687332078.png
','2023-06-21 07:21:18','2023-06-21 07:21:18',NULL,'1435',NULL,NULL),
(4306,1435,'TOR','applicants_certifications/
U1435T1687332147.jpg','applicants_certifications','TOR1.jpg','U1435T1687332147.jpg'
,'2023-06-21 07:22:27','2023-06-21 07:22:27',NULL,'1435',NULL,NULL),
(4307,1435,'TOR','applicants_certifications/
U1435T1687332172.jpg','applicants_certifications','TOR2.jpg','U1435T1687332172.jpg'
,'2023-06-21 07:22:52','2023-06-21 07:22:52',NULL,'1435',NULL,NULL),
(4309,1435,'TOR','applicants_certifications/
U1435T1687332204.jpg','applicants_certifications','TOR3.jpg','U1435T1687332204.jpg'
,'2023-06-21 07:23:24','2023-06-21 07:23:24',NULL,'1435',NULL,NULL),
(4310,799,'SWT','applicants_certifications/
U799T1687332436.jpg','applicants_certifications','1st National Forum and Conference
on Mental Health_Building Bridges_Nurturing Mental Wellness Together in the New
Normal.jpg','U799T1687332436.jpg','2023-06-21 07:27:16','2023-06-21
07:27:16',NULL,'799',NULL,NULL),(4311,799,'SWT','applicants_certifications/
U799T1687332451.jpg','applicants_certifications','Breaking Barriers_Destigmatizing
Mental Health.jpg','U799T1687332451.jpg','2023-06-21 07:27:31','2023-06-21
07:27:31',NULL,'799',NULL,NULL),(4312,799,'SWT','applicants_certifications/
U799T1687332473.jpg','applicants_certifications','Coming out of the
Closet_Providing Support and Safe Space for
Adolescents.jpg','U799T1687332473.jpg','2023-06-21 07:27:53','2023-06-21
07:27:53',NULL,'799',NULL,NULL),(4313,799,'SWT','applicants_certifications/
U799T1687332495.jpg','applicants_certifications','Cultivating Resilience and Coping
Strategies.jpg','U799T1687332495.jpg','2023-06-21 07:28:15','2023-06-21
07:28:15',NULL,'799',NULL,NULL),(4314,281,'SWT','applicants_certifications/
U281T1687332502.pdf','applicants_certifications','Food and Beverage
Services.pdf','U281T1687332502.pdf','2023-06-21 07:28:22','2023-06-21
07:28:22',NULL,'281',NULL,NULL),(4315,799,'SWT','applicants_certifications/
U799T1687332515.jpg','applicants_certifications','Future Directions_Advancements in
Mental Health.jpg','U799T1687332515.jpg','2023-06-21 07:28:35','2023-06-21
07:28:35',NULL,'799',NULL,NULL),(4316,799,'SWT','applicants_certifications/
U799T1687332533.jpg','applicants_certifications','Holistic Approaches to Mental
Health.jpg','U799T1687332533.jpg','2023-06-21 07:28:53','2023-06-21
07:28:53',NULL,'799',NULL,NULL),(4317,799,'SWT','applicants_certifications/
U799T1687332550.jpg','applicants_certifications','Psychological First
Aid.jpg','U799T1687332550.jpg','2023-06-21 07:29:10','2023-06-21
07:29:10',NULL,'799',NULL,NULL),(4318,799,'SWT','applicants_certifications/
U799T1687332567.jpg','applicants_certifications','Supporting the Mental health of
Vulnerable Populations.jpg','U799T1687332567.jpg','2023-06-21 07:29:27','2023-06-21
07:29:27',NULL,'799',NULL,NULL),(4319,799,'SWT','applicants_certifications/
U799T1687332584.jpg','applicants_certifications','The Current Mental Health Status
of the Philippines.jpg','U799T1687332584.jpg','2023-06-21 07:29:44','2023-06-21
07:29:44',NULL,'799',NULL,NULL),(4320,799,'SWT','applicants_certifications/
U799T1687332601.jpg','applicants_certifications','Unpacking Anxiety_Managying Your
Worries and Fears.jpg','U799T1687332601.jpg','2023-06-21 07:30:01','2023-06-21
07:30:01',NULL,'799',NULL,NULL),(4322,1395,'SWT','applicants_certifications/
U1395T1687333424.pdf','applicants_certifications','certificates
seminar_compressed.pdf','U1395T1687333424.pdf','2023-06-21 07:43:44','2023-06-21
07:43:44',NULL,'1395',NULL,NULL),(4325,1395,'SWT','applicants_certifications/
U1395T1687333637.pdf','applicants_certifications','latest
trainings.pdf','U1395T1687333637.pdf','2023-06-21 07:47:17','2023-06-21
07:47:17',NULL,'1395',NULL,NULL),(4326,1395,'SWT','applicants_certifications/
U1395T1687333663.pdf','applicants_certifications','seminar latest
2.pdf','U1395T1687333663.pdf','2023-06-21 07:47:43','2023-06-21
07:47:43',NULL,'1395',NULL,NULL),(4327,1395,'COE','applicants_certifications/
U1395T1706668259.pdf','applicants_certifications','service
record.pdf','U1395T1706668259.pdf','2024-01-31 10:30:59','2024-01-31
10:30:59',NULL,'1395',NULL,NULL),(4329,1435,'PDS','applicants_certifications/
U1435T1692291060.xlsx','applicants_certifications','CS Form No. 212 Personal Data
Sheet.xlsx','U1435T1692291060.xlsx','2023-08-18 00:51:00','2023-08-18
00:51:00',NULL,'1435',NULL,NULL),(4330,799,'PDS','applicants_certifications/
U799T1687336217.xlsx','applicants_certifications','SUSETH B. LUCANTI_CS Form No.
212 Personal Data Sheet revised.xlsx','U799T1687336217.xlsx','2023-06-21
08:30:17','2023-06-21 08:30:17',NULL,'799',NULL,NULL),
(4331,1395,'PDS','applicants_certifications/
U1395T1706669885.pdf','applicants_certifications','work experience
sheet.pdf','U1395T1706669885.pdf','2024-01-31 10:58:05','2024-01-31
10:58:05',NULL,'1395',NULL,NULL),
(4332,1435,'ELIGIBILITY','applicants_certifications/
U1435T1687336772.pdf','applicants_certifications','CSC.pdf','U1435T1687336772.pdf',
'2023-06-21 08:39:32','2023-06-21 08:39:32',NULL,'1435',NULL,NULL),
(4335,1368,'COE','applicants_certifications/
U1368T1687338082.pdf','applicants_certifications','COE.pdf','U1368T1687338082.pdf',
'2023-06-21 09:01:22','2023-06-21 09:01:22',NULL,'1368',NULL,NULL),
(4336,1395,'COE','applicants_certifications/
U1395T1687338211.pdf','applicants_certifications','certificate of
employment.pdf','U1395T1687338211.pdf','2023-06-21 09:03:31','2023-06-21
09:03:31',NULL,'1395',NULL,NULL),(4338,207,'SWT','applicants_certifications/
U207T1687344655.pdf','applicants_certifications','inbound2043528190642848065.pdf','
U207T1687344655.pdf','2023-06-21 10:50:55','2023-06-21
10:50:55',NULL,'207',NULL,NULL),(4339,1425,'TOR','applicants_certifications/
U1425T1687352766.pdf','applicants_certifications','Hangdaan,
PV_TOR.pdf','U1425T1687352766.pdf','2023-06-21 13:06:06','2023-06-21
13:06:06',NULL,'1425',NULL,NULL),
(4341,1425,'ELIGIBILITY','applicants_certifications/
U1425T1687352827.pdf','applicants_certifications','Hangdaan PV_ CS
Eligibility.pdf','U1425T1687352827.pdf','2023-06-21 13:07:07','2023-06-21
13:07:07',NULL,'1425',NULL,NULL),(4343,1423,'TOR','applicants_certifications/
U1423T1687352877.pdf','applicants_certifications','TOR.pdf','U1423T1687352877.pdf',
'2023-06-21 13:07:57','2023-06-21 13:07:57',NULL,'1423',NULL,NULL),
(4344,1423,'COE','applicants_certifications/
U1423T1687352905.pdf','applicants_certifications','COE.pdf','U1423T1687352905.pdf',
'2023-06-21 13:08:25','2023-06-21 13:08:25',NULL,'1423',NULL,NULL),
(4345,1423,'ELIGIBILITY','applicants_certifications/
U1423T1687352939.pdf','applicants_certifications','ELEGIBILITY.pdf','U1423T16873529
39.pdf','2023-06-21 13:08:59','2023-06-21
13:08:59',NULL,'1423',NULL,NULL),(4346,1425,'PDS','applicants_certifications/
U1425T1687354326.pdf','applicants_certifications','Hangdaan
PV_PDS.pdf','U1425T1687354326.pdf','2023-06-21 13:32:06','2023-06-21
13:32:06',NULL,'1425',NULL,NULL),(4348,1438,'TOR','applicants_certifications/
U1438T1687356891.pdf','applicants_certifications','TOR p1 - Leonell
Bongtiwon.pdf','U1438T1687356891.pdf','2023-06-21 14:14:51','2023-06-21
14:14:51',NULL,'1438',NULL,NULL),(4349,1438,'TOR','applicants_certifications/
U1438T1687356923.pdf','applicants_certifications','TOR p2 - Leonell
Bongtiwon.pdf','U1438T1687356923.pdf','2023-06-21 14:15:23','2023-06-21
14:15:23',NULL,'1438',NULL,NULL),(4351,1438,'TOR','applicants_certifications/
U1438T1687357016.pdf','applicants_certifications','Cum laude Cert - Leonell
Bongtiwon.pdf','U1438T1687357016.pdf','2023-06-21 14:16:56','2023-06-21
14:16:56',NULL,'1438',NULL,NULL),(4352,1438,'COE','applicants_certifications/
U1438T1687357036.pdf','applicants_certifications','COE - Leonell
Bongtiwon.pdf','U1438T1687357036.pdf','2023-06-21 14:17:16','2023-06-21
14:17:16',NULL,'1438',NULL,NULL),(4353,1438,'SWT','applicants_certifications/
U1438T1687357064.pdf','applicants_certifications','Trainings - Leonell
Bongtiwon.pdf','U1438T1687357064.pdf','2023-06-21 14:17:44','2023-06-21
14:17:44',NULL,'1438',NULL,NULL),
(4354,1438,'ELIGIBILITY','applicants_certifications/
U1438T1687357116.pdf','applicants_certifications','Eligibiy - Leonell
Bongtiwon.pdf','U1438T1687357116.pdf','2023-06-21 14:18:37','2023-06-21
14:18:37',NULL,'1438',NULL,NULL),(4355,1438,'PDS','applicants_certifications/
U1438T1687357729.pdf','applicants_certifications','PDS p1 - Leonell
Bongtiwon.pdf','U1438T1687357729.pdf','2023-06-21 14:28:49','2023-06-21
14:28:49',NULL,'1438',NULL,NULL),(4356,1438,'PDS','applicants_certifications/
U1438T1687357747.pdf','applicants_certifications','PDS p2 - Leonell
Bongtiwon.pdf','U1438T1687357747.pdf','2023-06-21 14:29:07','2023-06-21
14:29:07',NULL,'1438',NULL,NULL),(4357,1438,'PDS','applicants_certifications/
U1438T1687357767.pdf','applicants_certifications','PDS p3 - Leonell
Bongtiwon.pdf','U1438T1687357767.pdf','2023-06-21 14:29:27','2023-06-21
14:29:27',NULL,'1438',NULL,NULL),(4358,1438,'PDS','applicants_certifications/
U1438T1687357792.pdf','applicants_certifications','PDS p4 - Leonell
Bongtiwon.pdf','U1438T1687357792.pdf','2023-06-21 14:29:52','2023-06-21
14:29:52',NULL,'1438',NULL,NULL),(4359,1438,'PDS','applicants_certifications/
U1438T1687357834.pdf','applicants_certifications','WES - Leonell
Bongtiwon.pdf','U1438T1687357834.pdf','2023-06-21 14:30:34','2023-06-21
14:30:34',NULL,'1438',NULL,NULL),(4362,1441,'TOR','applicants_certifications/
U1441T1687367842.pdf','applicants_certifications','inbound9001630087385460386.pdf',
'U1441T1687367842.pdf','2023-06-21 17:17:22','2023-06-21
17:17:22',NULL,'1441',NULL,NULL),(4364,1404,'PDS','applicants_certifications/
U1404T1687395549.pdf','applicants_certifications','PDS-Page 1-
2.pdf','U1404T1687395549.pdf','2023-06-22 00:59:09','2023-06-22
00:59:09',NULL,'1404',NULL,NULL),(4365,1404,'PDS','applicants_certifications/
U1404T1687395567.pdf','applicants_certifications','PDS-Page 3-
4.pdf','U1404T1687395567.pdf','2023-06-22 00:59:27','2023-06-22
00:59:27',NULL,'1404',NULL,NULL),(4366,1430,'COE','applicants_certifications/
U1430T1687397983.jpg','applicants_certifications','inbound4471747034945166772.jpg',
'U1430T1687397983.jpg','2023-06-22 01:39:43','2023-06-22
01:39:43',NULL,'1430',NULL,NULL),(4367,1257,'TOR','applicants_certifications/
U1257T1687400130.pdf','applicants_certifications','TOR00003.pdf','U1257T1687400130.
pdf','2023-06-22 02:15:30','2023-06-22 02:15:30',NULL,'1257',NULL,NULL),
(4368,1257,'TOR','applicants_certifications/
U1257T1687400174.pdf','applicants_certifications','TOR
MASTER00006.pdf','U1257T1687400174.pdf','2023-06-22 02:16:14','2023-06-22
02:16:14',NULL,'1257',NULL,NULL),
(4369,1257,'ELIGIBILITY','applicants_certifications/
U1257T1687400233.pdf','applicants_certifications','PRC
ID00008.pdf','U1257T1687400233.pdf','2023-06-22 02:17:13','2023-06-22
02:17:13',NULL,'1257',NULL,NULL),(4371,1257,'COE','applicants_certifications/
U1257T1687400410.jpg','applicants_certifications','Employment1.jpg','U1257T16874004
10.jpg','2023-06-22 02:20:10','2023-06-22 02:20:10',NULL,'1257',NULL,NULL),
(4372,1257,'COE','applicants_certifications/
U1257T1687400438.jpg','applicants_certifications','Employment2.jpg','U1257T16874004
38.jpg','2023-06-22 02:20:38','2023-06-22 02:20:38',NULL,'1257',NULL,NULL),
(4373,1257,'COE','applicants_certifications/
U1257T1687400480.jpg','applicants_certifications','Employment3.jpg','U1257T16874004
80.jpg','2023-06-22 02:21:20','2023-06-22 02:21:20',NULL,'1257',NULL,NULL),
(4374,1257,'COE','applicants_certifications/
U1257T1687400601.jpg','applicants_certifications','Employment6.jpg','U1257T16874006
01.jpg','2023-06-22 02:23:21','2023-06-22 02:23:21',NULL,'1257',NULL,NULL),
(4375,1257,'COE','applicants_certifications/
U1257T1687400632.jpg','applicants_certifications','Employment8.jpg','U1257T16874006
32.jpg','2023-06-22 02:23:52','2023-06-22 02:23:52',NULL,'1257',NULL,NULL),
(4376,1257,'COE','applicants_certifications/
U1257T1687400672.jpg','applicants_certifications','Employment7.jpg','U1257T16874006
72.jpg','2023-06-22 02:24:32','2023-06-22 02:24:32',NULL,'1257',NULL,NULL),
(4377,1257,'COE','applicants_certifications/
U1257T1687400704.jpg','applicants_certifications','Employment9.jpg','U1257T16874007
04.jpg','2023-06-22 02:25:04','2023-06-22 02:25:04',NULL,'1257',NULL,NULL),
(4378,1257,'COE','applicants_certifications/
U1257T1687400844.jpg','applicants_certifications','Employment11.jpg','U1257T1687400
844.jpg','2023-06-22 02:27:24','2023-06-22 02:27:24',NULL,'1257',NULL,NULL),
(4379,1257,'SWT','applicants_certifications/
U1257T1687401201.jpg','applicants_certifications','Certificate7.jpg','U1257T1687401
201.jpg','2023-06-22 02:33:21','2023-06-22 02:33:21',NULL,'1257',NULL,NULL),
(4380,1257,'SWT','applicants_certifications/
U1257T1687401248.pdf','applicants_certifications','Certificate8.pdf','U1257T1687401
248.pdf','2023-06-22 02:34:08','2023-06-22 02:34:08',NULL,'1257',NULL,NULL),
(4381,1257,'SWT','applicants_certifications/
U1257T1687401275.pdf','applicants_certifications','Certificate9.pdf','U1257T1687401
275.pdf','2023-06-22 02:34:35','2023-06-22 02:34:35',NULL,'1257',NULL,NULL),
(4382,1257,'SWT','applicants_certifications/
U1257T1687401321.pdf','applicants_certifications','Extraction
NOV2021_EDISON.pdf','U1257T1687401321.pdf','2023-06-22 02:35:21','2023-06-22
02:35:21',NULL,'1257',NULL,NULL),(4383,1395,'COE','applicants_certifications/
U1395T1706753578.pdf','applicants_certifications','IPCR July-
dec.2023.pdf','U1395T1706753578.pdf','2024-02-01 10:12:58','2024-02-01
10:12:58',NULL,'1395',NULL,NULL),(4384,1257,'SWT','applicants_certifications/
U1257T1687401348.pdf','applicants_certifications','Asphalt density NOV 2021
EDISON.pdf','U1257T1687401348.pdf','2023-06-22 02:35:48','2023-06-22
02:35:48',NULL,'1257',NULL,NULL),(4385,1257,'SWT','applicants_certifications/
U1257T1687401384.pdf','applicants_certifications','JMF
NOV2021_edison.pdf','U1257T1687401384.pdf','2023-06-22 02:36:24','2023-06-22
02:36:24',NULL,'1257',NULL,NULL),(4386,1257,'SWT','applicants_certifications/
U1257T1687401413.pdf','applicants_certifications','MARSHALL NOV 2021
EDISON.pdf','U1257T1687401413.pdf','2023-06-22 02:36:53','2023-06-22
02:36:53',NULL,'1257',NULL,NULL),(4388,1257,'SWT','applicants_certifications/
U1257T1687401466.pdf','applicants_certifications','workshop CMD FEB2022
(15).pdf','U1257T1687401466.pdf','2023-06-22 02:37:46','2023-06-22
02:37:46',NULL,'1257',NULL,NULL),(4389,1257,'TOR','applicants_certifications/
U1257T1687401507.jpg','applicants_certifications','Diploma1.jpg','U1257T1687401507.
jpg','2023-06-22 02:38:27','2023-06-22 02:38:27',NULL,'1257',NULL,NULL),
(4390,1395,'COE','applicants_certifications/
U1395T1687401517.pdf','applicants_certifications','previous certificate of
employment.pdf','U1395T1687401517.pdf','2023-06-22 02:38:37','2023-06-22
02:38:37',NULL,'1395',NULL,NULL),(4391,1257,'TOR','applicants_certifications/
U1257T1687401545.jpg','applicants_certifications','Diploma2.jpg','U1257T1687401545.
jpg','2023-06-22 02:39:05','2023-06-22 02:39:05',NULL,'1257',NULL,NULL),
(4392,1395,'COE','applicants_certifications/
U1395T1687401548.pdf','applicants_certifications','teacher
JO.pdf','U1395T1687401548.pdf','2023-06-22 02:39:08','2023-06-22
02:39:08',NULL,'1395',NULL,NULL),(4397,1437,'TOR','applicants_certifications/
U1437T1687402944.pdf','applicants_certifications','TOR_compressed.pdf','U1437T16874
02944.pdf','2023-06-22 03:02:24','2023-06-22 03:02:24',NULL,'1437',NULL,NULL),
(4398,1404,'COE','applicants_certifications/
U1404T1687402969.jpg','applicants_certifications','Lawodna-
COE.jpg','U1404T1687402969.jpg','2023-06-22 03:02:49','2023-06-22
03:02:49',NULL,'1404',NULL,NULL),(4399,1437,'COE','applicants_certifications/
U1437T1687402971.pdf','applicants_certifications','COE.pdf','U1437T1687402971.pdf',
'2023-06-22 03:02:51','2023-06-22 03:02:51',NULL,'1437',NULL,NULL),
(4400,1437,'SWT','applicants_certifications/
U1437T1687402995.pdf','applicants_certifications','BASIC COMPUTER LITERACY
TRAINING.pdf','U1437T1687402995.pdf','2023-06-22 03:03:15','2023-06-22
03:03:15',NULL,'1437',NULL,NULL),(4401,1437,'SWT','applicants_certifications/
U1437T1687403007.pdf','applicants_certifications','SEMINARS.pdf','U1437T1687403007.
pdf','2023-06-22 03:03:27','2023-06-22 03:03:27',NULL,'1437',NULL,NULL),
(4402,1437,'ELIGIBILITY','applicants_certifications/
U1437T1687403023.pdf','applicants_certifications','eligibility.pdf','U1437T16874030
23.pdf','2023-06-22 03:03:43','2023-06-22 03:03:43',NULL,'1437',NULL,NULL),
(4403,1437,'PDS','applicants_certifications/
U1437T1687403928.pdf','applicants_certifications','PDS.pdf','U1437T1687403928.pdf',
'2023-06-22 03:18:48','2023-06-22 03:18:48',NULL,'1437',NULL,NULL),
(4404,1437,'PDS','applicants_certifications/
U1437T1687403938.pdf','applicants_certifications','wes.pdf','U1437T1687403938.pdf',
'2023-06-22
03:18:58','2023-06-22 03:18:58',NULL,'1437',NULL,NULL),
(4405,281,'PDS','applicants_certifications/
U281T1687407129.pdf','applicants_certifications','Work Experience
Sheet.pdf','U281T1687407129.pdf','2023-06-22 04:12:09','2023-06-22
04:12:09',NULL,'281',NULL,NULL),(4406,1257,'PDS','applicants_certifications/
U1257T1687413172.pdf','applicants_certifications','resume1 -
2023.pdf','U1257T1687413172.pdf','2023-06-22 05:52:52','2023-06-22
05:52:52',NULL,'1257',NULL,NULL),(4407,1257,'PDS','applicants_certifications/
U1257T1687413194.pdf','applicants_certifications','resume2 -
2023.pdf','U1257T1687413194.pdf','2023-06-22 05:53:14','2023-06-22
05:53:14',NULL,'1257',NULL,NULL),(4408,1257,'PDS','applicants_certifications/
U1257T1687413213.pdf','applicants_certifications','resume3 -
2023.pdf','U1257T1687413213.pdf','2023-06-22 05:53:33','2023-06-22
05:53:33',NULL,'1257',NULL,NULL),(4409,1257,'PDS','applicants_certifications/
U1257T1687413235.pdf','applicants_certifications','resume4 -
2023.pdf','U1257T1687413235.pdf','2023-06-22 05:53:55','2023-06-22
05:53:55',NULL,'1257',NULL,NULL),(4410,1376,'PDS','applicants_certifications/
U1376T1687413348.pdf','applicants_certifications','Personal Data
Sheet.pdf','U1376T1687413348.pdf','2023-06-22 05:55:48','2023-06-22
05:55:48',NULL,'1376',NULL,NULL),(4411,1376,'TOR','applicants_certifications/
U1376T1687413363.pdf','applicants_certifications','TOR.pdf','U1376T1687413363.pdf',
'2023-06-22 05:56:03','2023-06-22 05:56:03',NULL,'1376',NULL,NULL),
(4412,1376,'ELIGIBILITY','applicants_certifications/
U1376T1687413377.pdf','applicants_certifications','PRC-
Rating_13.pdf','U1376T1687413377.pdf','2023-06-22 05:56:17','2023-06-22
05:56:17',NULL,'1376',NULL,NULL),(4417,1416,'PDS','applicants_certifications/
U1416T1687414309.pdf','applicants_certifications','Liezel Iris
Bakakew_CV.pdf','U1416T1687414309.pdf','2023-06-22 06:11:49','2023-06-22
06:11:49',NULL,'1416',NULL,NULL),(4418,1416,'COE','applicants_certifications/
U1416T1687414786.jpg','applicants_certifications','007.jpg','U1416T1687414786.jpg',
'2023-06-22 06:19:46','2023-06-22 06:19:46',NULL,'1416',NULL,NULL),
(4419,1081,'PDS','applicants_certifications/
U1081T1687417558.pdf','applicants_certifications','inbound6058910994790437933.pdf',
'U1081T1687417558.pdf','2023-06-22 07:05:58','2023-06-22
07:05:58',NULL,'1081',NULL,NULL),(4420,1378,'PDS','applicants_certifications/
U1378T1687419015.jpg','applicants_certifications','DulnuanCarenAyl_Workexperiencesh
eet.jpg','U1378T1687419015.jpg','2023-06-22 07:30:15','2023-06-22
07:30:15',NULL,'1378',NULL,NULL),(4421,281,'PDS','applicants_certifications/
U281T1687419240.pdf','applicants_certifications','Personal Data
Sheet.pdf','U281T1687419240.pdf','2023-06-22 07:34:00','2023-06-22
07:34:00',NULL,'281',NULL,NULL),(4422,1081,'COE','applicants_certifications/
U1081T1687421894.docx','applicants_certifications','inbound9026009443236150199.docx
','U1081T1687421894.docx','2023-06-22 08:18:14','2023-06-22
08:18:14',NULL,'1081',NULL,NULL),(4423,1394,'TOR','applicants_certifications/
U1394T1687422278.pdf','applicants_certifications','Transcript of
Records(1).pdf','U1394T1687422278.pdf','2023-06-22 08:24:38','2023-06-22
08:24:38',NULL,'1394',NULL,NULL),(4425,1081,'SWT','applicants_certifications/
U1081T1687422434.docx','applicants_certifications','inbound5494480124754068602.docx
','U1081T1687422434.docx','2023-06-22 08:27:14','2023-06-22
08:27:14',NULL,'1081',NULL,NULL),(4426,1394,'COE','applicants_certifications/
U1394T1687422627.pdf','applicants_certifications','Certificate of
employment(1).pdf','U1394T1687422627.pdf','2023-06-22 08:30:27','2023-06-22
08:30:27',NULL,'1394',NULL,NULL),
(4428,1394,'ELIGIBILITY','applicants_certifications/
U1394T1687422753.pdf','applicants_certifications','Certificate of
Eligibility.pdf','U1394T1687422753.pdf','2023-06-22 08:32:33','2023-06-22
08:32:33',NULL,'1394',NULL,NULL),(4429,1394,'PDS','applicants_certifications/
U1394T1687422789.pdf','applicants_certifications','Personal Data
Sheet.pdf','U1394T1687422789.pdf','2023-06-22 08:33:09','2023-06-22
08:33:09',NULL,'1394',NULL,NULL),(4430,1106,'PDS','applicants_certifications/
U1106T1687423108.xlsx','applicants_certifications','CS Form No. 212 Personal Data
Sheet revised.xlsx','U1106T1687423108.xlsx','2023-06-22 08:38:28','2023-06-22
08:38:28',NULL,'1106',NULL,NULL),(4431,988,'TOR','applicants_certifications/
U988T1687424632.pdf','applicants_certifications','Cert. of
Grades.pdf','U988T1687424632.pdf','2023-06-22 09:03:52','2023-06-22
09:03:52',NULL,'988',NULL,NULL),
(4432,988,'ELIGIBILITY','applicants_certifications/
U988T1687424818.pdf','applicants_certifications','Rating(notice).pdf','U988T1687424
818.pdf','2023-06-22 09:06:58','2023-06-22 09:06:58',NULL,'988',NULL,NULL),
(4433,1448,'TOR','applicants_certifications/
U1448T1687427811.jpg','applicants_certifications','2-TOR
1.jpg','U1448T1687427811.jpg','2023-06-22 09:56:51','2023-06-22
09:56:51',NULL,'1448',NULL,NULL),(4434,1310,'TOR','applicants_certifications/
U1310T1687440898.jpg','applicants_certifications','HERMOSO_CARLINA_C_TRANSCRIPT OF
RECORDS 1.jpg','U1310T1687440898.jpg','2023-06-22 13:34:58','2023-06-22
13:34:58',NULL,'1310',NULL,NULL),(4435,1310,'TOR','applicants_certifications/
U1310T1687440952.JPG','applicants_certifications','HERMOSO_CARLINA_C_TRANSCRIPT OF
RECORDS 2.JPG','U1310T1687440952.JPG','2023-06-22 13:35:52','2023-06-22
13:35:52',NULL,'1310',NULL,NULL),(4436,1310,'TOR','applicants_certifications/
U1310T1687440978.JPG','applicants_certifications','HERMOSO_CARLINA_C_TRANSCRIPT OF
RECORDS 3.JPG','U1310T1687440978.JPG','2023-06-22 13:36:18','2023-06-22
13:36:18',NULL,'1310',NULL,NULL),(4437,1310,'SWT','applicants_certifications/
U1310T1687441013.jpg','applicants_certifications','Updates on Financial Management
Certificate-Carlina Hermoso.jpg','U1310T1687441013.jpg','2023-06-22
13:36:53','2023-06-22 13:36:53',NULL,'1310',NULL,NULL),
(4438,1310,'SWT','applicants_certifications/
U1310T1687441054.jpg','applicants_certifications','AGIA Training Certificate-
Carlina Hermoso.jpg','U1310T1687441054.jpg','2023-06-22 13:37:34','2023-06-22
13:37:34',NULL,'1310',NULL,NULL),(4439,1310,'SWT','applicants_certifications/
U1310T1687441076.jpg','applicants_certifications','AFP Internal Auditor Forum
Certificate-Carlina Hermoso.jpg','U1310T1687441076.jpg','2023-06-22
13:37:56','2023-06-22 13:37:56',NULL,'1310',NULL,NULL),
(4440,1310,'SWT','applicants_certifications/
U1310T1687441099.jpg','applicants_certifications','AFP Forum Certificate-Carlina
Hermoso.jpg','U1310T1687441099.jpg','2023-06-22 13:38:19','2023-06-22
13:38:19',NULL,'1310',NULL,NULL),(4441,1310,'COE','applicants_certifications/
U1310T1687441182.jpg','applicants_certifications','Certificate of Employment Perez
& Sardoncillo.jpg','U1310T1687441182.jpg','2023-06-22 13:39:42','2023-06-22
13:39:42',NULL,'1310',NULL,NULL),(4442,1427,'TOR','applicants_certifications/
U1427T1687476815.pdf','applicants_certifications','inbound999446470586421600.pdf','
U1427T1687476815.pdf','2023-06-22 23:33:35','2023-06-22
23:33:35',NULL,'1427',NULL,NULL),(4443,1457,'COE','applicants_certifications/
U1457T1687484657.pdf','applicants_certifications','inbound2749463622178740588.pdf',
'U1457T1687484657.pdf','2023-06-23 01:44:17','2023-06-23
01:44:17',NULL,'1457',NULL,NULL),(4444,1457,'SWT','applicants_certifications/
U1457T1687484770.pdf','applicants_certifications','inbound3743298923493647779.pdf',
'U1457T1687484770.pdf','2023-06-23 01:46:10','2023-06-23
01:46:10',NULL,'1457',NULL,NULL),(4445,1457,'COE','applicants_certifications/
U1457T1687484793.pdf','applicants_certifications','inbound5608858662079311246.pdf',
'U1457T1687484793.pdf','2023-06-23 01:46:33','2023-06-23
01:46:33',NULL,'1457',NULL,NULL),(4446,1457,'COE','applicants_certifications/
U1457T1687484814.pdf','applicants_certifications','inbound4519315450963691832.pdf',
'U1457T1687484814.pdf','2023-06-23 01:46:54','2023-06-23
01:46:54',NULL,'1457',NULL,NULL),(4447,1457,'COE','applicants_certifications/
U1457T1687484850.pdf','applicants_certifications','inbound6781746589611612884.pdf',
'U1457T1687484850.pdf','2023-06-23 01:47:30','2023-06-23
01:47:30',NULL,'1457',NULL,NULL),(4448,1459,'COE','applicants_certifications/
U1459T1687496365.jpg','applicants_certifications','20230623_100917.jpg','U1459T1687
496365.jpg','2023-06-23 04:59:25','2023-06-23 04:59:25',NULL,'1459',NULL,NULL),
(4450,1459,'ELIGIBILITY','applicants_certifications/
U1459T1687498800.jpg','applicants_certifications','20230623_100838.jpg','U1459T1687
498800.jpg','2023-06-23 05:40:00','2023-06-23 05:40:00',NULL,'1459',NULL,NULL),
(4451,1459,'SWT','applicants_certifications/
U1459T1687498892.jpg','applicants_certifications','IMG_20220626_142626.jpg','U1459T
1687498892.jpg','2023-06-23 05:41:32','2023-06-23 05:41:32',NULL,'1459',NULL,NULL),
(4452,1459,'SWT','applicants_certifications/
U1459T1687498914.jpg','applicants_certifications','IMG_20211116_124605.jpg','U1459T
1687498914.jpg','2023-06-23 05:41:54','2023-06-23 05:41:54',NULL,'1459',NULL,NULL),
(4453,1459,'SWT','applicants_certifications/
U1459T1687498945.jpg','applicants_certifications','IMG_20220626_142602.jpg','U1459T
1687498945.jpg','2023-06-23 05:42:25','2023-06-23 05:42:25',NULL,'1459',NULL,NULL),
(4454,1459,'SWT','applicants_certifications/
U1459T1687498979.jpg','applicants_certifications','IMG_20211210_063439.jpg','U1459T
1687498979.jpg','2023-06-23 05:42:59','2023-06-23 05:42:59',NULL,'1459',NULL,NULL),
(4455,1462,'PDS','applicants_certifications/
U1462T1687503073.xlsx','applicants_certifications','inbound908678835639779616.xlsx'
,'U1462T1687503073.xlsx','2023-06-23 06:51:13','2023-06-23
06:51:13',NULL,'1462',NULL,NULL),(4456,1461,'TOR','applicants_certifications/
U1461T1687503144.pdf','applicants_certifications','OTR_1.pdf','U1461T1687503144.pdf
','2023-06-23 06:52:24','2023-06-23 06:52:24',NULL,'1461',NULL,NULL),
(4457,1461,'TOR','applicants_certifications/
U1461T1687503521.pdf','applicants_certifications','OTR_2.pdf','U1461T1687503521.pdf
','2023-06-23
06:58:41','2023-06-23 06:58:41',NULL,'1461',NULL,NULL),
(4458,1461,'TOR','applicants_certifications/
U1461T1687503596.pdf','applicants_certifications','OTR_3.pdf','U1461T1687503596.pdf
','2023-06-23 06:59:56','2023-06-23 06:59:56',NULL,'1461',NULL,NULL),
(4459,1461,'COE','applicants_certifications/
U1461T1687503647.pdf','applicants_certifications','CERT. OF
EMPLOYMENT.pdf','U1461T1687503647.pdf','2023-06-23 07:00:47','2023-06-23
07:00:47',NULL,'1461',NULL,NULL),(4460,1461,'SWT','applicants_certifications/
U1461T1687503765.pdf','applicants_certifications','Panitikan ng
Panumduman.pdf','U1461T1687503765.pdf','2023-06-23 07:02:45','2023-06-23
07:02:45',NULL,'1461',NULL,NULL),(4462,1206,'COE','applicants_certifications/
U1206T1687504314.pdf','applicants_certifications','Cert of
Employment.pdf','U1206T1687504314.pdf','2023-06-23 07:11:54','2023-06-23
07:11:54',NULL,'1206',NULL,NULL),
(4463,1206,'ELIGIBILITY','applicants_certifications/
U1206T1687504374.jpg','applicants_certifications','CS.jpg','U1206T1687504374.jpg','
2023-06-23 07:12:54','2023-06-23 07:12:54',NULL,'1206',NULL,NULL),
(4465,1206,'ELIGIBILITY','applicants_certifications/
U1206T1687504388.jpg','applicants_certifications','PRC ID
FRONT.jpg','U1206T1687504388.jpg','2023-06-23 07:13:08','2023-06-23
07:13:08',NULL,'1206',NULL,NULL),
(4466,1206,'ELIGIBILITY','applicants_certifications/
U1206T1687504403.jpg','applicants_certifications','Cert of
Rating.jpg','U1206T1687504403.jpg','2023-06-23 07:13:23','2023-06-23
07:13:23',NULL,'1206',NULL,NULL),
(4467,1206,'ELIGIBILITY','applicants_certifications/
U1206T1687504415.jpg','applicants_certifications','Cert of
Passing.jpg','U1206T1687504415.jpg','2023-06-23 07:13:35','2023-06-23
07:13:35',NULL,'1206',NULL,NULL),(4468,1206,'PDS','applicants_certifications/
U1206T1687504435.pdf','applicants_certifications','PDS ANDRES
2023.pdf','U1206T1687504435.pdf','2023-06-23 07:13:55','2023-06-23
07:13:55',NULL,'1206',NULL,NULL),(4469,1206,'PDS','applicants_certifications/
U1206T1687504456.pdf','applicants_certifications','CS Form No. 212 Attachment -
Work Experience Sheet.pdf','U1206T1687504456.pdf','2023-06-23 07:14:16','2023-06-
23 07:14:16',NULL,'1206',NULL,NULL),(4470,1206,'PDS','applicants_certifications/
U1206T1687504470.pdf','applicants_certifications','Trainings and
Seminars.pdf','U1206T1687504470.pdf','2023-06-23 07:14:30','2023-06-23
07:14:30',NULL,'1206',NULL,NULL),(4471,1461,'SWT','applicants_certifications/
U1461T1687504519.pdf','applicants_certifications','THESIS.pdf','U1461T1687504519.pd
f','2023-06-23 07:15:19','2023-06-23 07:15:19',NULL,'1461',NULL,NULL),
(4472,1461,'SWT','applicants_certifications/
U1461T1687504547.pdf','applicants_certifications','Filipino sa Kultura ng
Pagkakaisa.pdf','U1461T1687504547.pdf','2023-06-23 07:15:47','2023-06-23
07:15:47',NULL,'1461',NULL,NULL),(4473,1461,'SWT','applicants_certifications/
U1461T1687504582.jpg','applicants_certifications','INSET
JHS_22.jpg','U1461T1687504582.jpg','2023-06-23 07:16:22','2023-06-23
07:16:22',NULL,'1461',NULL,NULL),(4474,1461,'SWT','applicants_certifications/
U1461T1687504606.jpg','applicants_certifications','INSET
SHS_22.jpg','U1461T1687504606.jpg','2023-06-23 07:16:46','2023-06-23
07:16:46',NULL,'1461',NULL,NULL),
(4475,1461,'ELIGIBILITY','applicants_certifications/
U1461T1687504681.pdf','applicants_certifications','BOARD
RATING.pdf','U1461T1687504681.pdf','2023-06-23 07:18:01','2023-06-23
07:18:01',NULL,'1461',NULL,NULL),(4476,1461,'PDS','applicants_certifications/
U1461T1687504817.pdf','applicants_certifications','Curriculum
Vitae.pdf','U1461T1687504817.pdf','2023-06-23 07:20:17','2023-06-23
07:20:17',NULL,'1461',NULL,NULL),(4477,1206,'COE','applicants_certifications/
U1206T1687504904.pdf','applicants_certifications','6. Service Record - Andres M.
Cuyasan-compressed.pdf','U1206T1687504904.pdf','2023-06-23 07:21:44','2023-06-23
07:21:44',NULL,'1206',NULL,NULL),(4478,1462,'TOR','applicants_certifications/
U1462T1687505171.jpg','applicants_certifications','355931829_588701476732747_444452
2660565888145_n.jpg','U1462T1687505171.jpg','2023-06-23 07:26:11','2023-06-23
07:26:11',NULL,'1462',NULL,NULL),(4479,1462,'TOR','applicants_certifications/
U1462T1687505208.jpg','applicants_certifications','356194925_948658876191040_390655
8815080872752_n.jpg','U1462T1687505208.jpg','2023-06-23 07:26:48','2023-06-23
07:26:48',NULL,'1462',NULL,NULL),
(4480,1462,'ELIGIBILITY','applicants_certifications/
U1462T1687505238.jpg','applicants_certifications','356166632_640497828130284_144950
7892410554312_n.jpg','U1462T1687505238.jpg','2023-06-23 07:27:18','2023-06-23
07:27:18',NULL,'1462',NULL,NULL),
(4482,1462,'ELIGIBILITY','applicants_certifications/
U1462T1687505331.jpg','applicants_certifications','356205231_5720083464759940_77266
00683522446677_n.jpg','U1462T1687505331.jpg','2023-06-23 07:28:51','2023-06-23
07:28:51',NULL,'1462',NULL,NULL),(4483,1431,'PDS','applicants_certifications/
U1431T1687505988.pdf','applicants_certifications','pds notarize_compressed
(1).pdf','U1431T1687505988.pdf','2023-06-23 07:39:48','2023-06-23
07:39:48',NULL,'1431',NULL,NULL),(4484,1431,'COE','applicants_certifications/
U1431T1687506319.pdf','applicants_certifications','Teo-Cert.-of-
Employment.pdf','U1431T1687506319.pdf','2023-06-23 07:45:19','2023-06-23
07:45:19',NULL,'1431',NULL,NULL),(4485,1048,'PDS','applicants_certifications/
U1048T1687509574.pdf','applicants_certifications','WORK EXPERIENCE
SHEET.pdf','U1048T1687509574.pdf','2023-06-23 08:39:34','2023-06-23
08:39:34',NULL,'1048',NULL,NULL),(4486,1184,'TOR','applicants_certifications/
U1184T1687509934.pdf','applicants_certifications','TORMA20230619_08264193.pdf','U11
84T1687509934.pdf','2023-06-23 08:45:34','2023-06-23
08:45:34',NULL,'1184',NULL,NULL),(4487,1184,'TOR','applicants_certifications/
U1184T1687509954.pdf','applicants_certifications','TOR20230619_08185414.pdf','U1184
T1687509954.pdf','2023-06-23 08:45:54','2023-06-23
08:45:54',NULL,'1184',NULL,NULL),(4488,1184,'COE','applicants_certifications/
U1184T1687510001.pdf','applicants_certifications','COE-
SMU.pdf','U1184T1687510001.pdf','2023-06-23 08:46:41','2023-06-23
08:46:41',NULL,'1184',NULL,NULL),(4489,1184,'COE','applicants_certifications/
U1184T1687510022.jpg','applicants_certifications','IFSU
Certification.jpg','U1184T1687510022.jpg','2023-06-23 08:47:02','2023-06-23
08:47:02',NULL,'1184',NULL,NULL),(4490,1184,'PDS','applicants_certifications/
U1184T1687510067.pdf','applicants_certifications','PDS.pdf','U1184T1687510067.pdf',
'2023-06-23 08:47:47','2023-06-23 08:47:47',NULL,'1184',NULL,NULL),
(4491,1184,'ELIGIBILITY','applicants_certifications/
U1184T1687510090.pdf','applicants_certifications','CSCCert20230619_08244946.pdf','U
1184T1687510090.pdf','2023-06-23 08:48:10','2023-06-23
08:48:10',NULL,'1184',NULL,NULL),(4492,1184,'SWT','applicants_certifications/
U1184T1687510134.pdf','applicants_certifications','Cert-
PEIS.pdf','U1184T1687510134.pdf','2023-06-23 08:48:54','2023-06-23
08:48:54',NULL,'1184',NULL,NULL),(4493,1184,'SWT','applicants_certifications/
U1184T1687510164.pdf','applicants_certifications','Certificate of Attendance -
CapDev for CGEC Implementers (rev).pdf','U1184T1687510164.pdf','2023-06-23
08:49:24','2023-06-23 08:49:24',NULL,'1184',NULL,NULL),
(4494,1184,'SWT','applicants_certifications/
U1184T1687510245.pdf','applicants_certifications','Certificate for DOMINGO,
BERMELITA T. for _WORKSHOP FEEDBACK FORM_ Lig..._
(1).pdf','U1184T1687510245.pdf','2023-06-23 08:50:45','2023-06-23
08:50:45',NULL,'1184',NULL,NULL),(4495,1184,'SWT','applicants_certifications/
U1184T1687510261.pdf','applicants_certifications','Certificate for DOMINGO,
BERMELITA T. for _WORKSHOP FEEDBACK FORM_
Lig..._.pdf','U1184T1687510261.pdf','2023-06-23 08:51:01','2023-06-23
08:51:01',NULL,'1184',NULL,NULL),(4496,1184,'SWT','applicants_certifications/
U1184T1687510277.pdf','applicants_certifications','cert-
hrmo.pdf','U1184T1687510277.pdf','2023-06-23 08:51:17','2023-06-23
08:51:17',NULL,'1184',NULL,NULL),(4497,1184,'SWT','applicants_certifications/
U1184T1687510293.pdf','applicants_certifications','025 -
DOMINGO.pdf','U1184T1687510293.pdf','2023-06-23 08:51:33','2023-06-23
08:51:33',NULL,'1184',NULL,NULL),(4498,1184,'SWT','applicants_certifications/
U1184T1687510313.pdf','applicants_certifications','CSS
NCII.pdf','U1184T1687510313.pdf','2023-06-23 08:51:53','2023-06-23
08:51:53',NULL,'1184',NULL,NULL),(4499,1184,'SWT','applicants_certifications/
U1184T1687510336.pdf','applicants_certifications','PANELIST- Ms. Bermelita
Domingo.pdf','U1184T1687510336.pdf','2023-06-23 08:52:16','2023-06-23
08:52:16',NULL,'1184',NULL,NULL),(4500,1184,'SWT','applicants_certifications/
U1184T1687510361.pdf','applicants_certifications','PESO
Congress20230623_11235178.pdf','U1184T1687510361.pdf','2023-06-23 08:52:41','2023-
06-23 08:52:41',NULL,'1184',NULL,NULL),
(4501,1184,'SWT','applicants_certifications/
U1184T1687510384.pdf','applicants_certifications','Y4iT2016_02422_DAY2.pdf','U1184T
1687510384.pdf','2023-06-23 08:53:04','2023-06-23 08:53:04',NULL,'1184',NULL,NULL),
(4502,1184,'SWT','applicants_certifications/
U1184T1687510419.jpg','applicants_certifications','Seminar6.jpg','U1184T1687510419.
jpg','2023-06-23 08:53:39','2023-06-23 08:53:39',NULL,'1184',NULL,NULL),
(4503,1184,'SWT','applicants_certifications/
U1184T1687510438.jpg','applicants_certifications','Training1.jpg','U1184T1687510438
.jpg','2023-06-23 08:53:58','2023-06-23 08:53:58',NULL,'1184',NULL,NULL),
(4504,1184,'SWT','applicants_certifications/
U1184T1687510557.jpg','applicants_certifications','Training5.jpg','U1184T1687510557
.jpg','2023-06-23 08:55:57','2023-06-23 08:55:57',NULL,'1184',NULL,NULL),
(4505,1264,'TOR','applicants_certifications/
U1264T1687513381.pdf','applicants_certifications','Official transcript of
records.pdf','U1264T1687513381.pdf','2023-06-23 09:43:01','2023-06-23
09:43:01',NULL,'1264',NULL,NULL),(4506,1264,'COE','applicants_certifications/
U1264T1687513561.pdf','applicants_certifications','certificatIon
of employment (1).pdf','U1264T1687513561.pdf','2023-06-23 09:46:01','2023-06-23
09:46:01',NULL,'1264',NULL,NULL),(4507,1264,'COE','applicants_certifications/
U1264T1687513579.pdf','applicants_certifications','Certification of employment
(2).pdf','U1264T1687513579.pdf','2023-06-23 09:46:19','2023-06-23
09:46:19',NULL,'1264',NULL,NULL),(4509,1264,'COE','applicants_certifications/
U1264T1687513605.pdf','applicants_certifications','Certification of employment
(3).pdf','U1264T1687513605.pdf','2023-06-23 09:46:45','2023-06-23
09:46:45',NULL,'1264',NULL,NULL),(4510,1264,'COE','applicants_certifications/
U1264T1687513619.pdf','applicants_certifications','Certification of employment
(4).pdf','U1264T1687513619.pdf','2023-06-23 09:46:59','2023-06-23
09:46:59',NULL,'1264',NULL,NULL),(4511,1264,'COE','applicants_certifications/
U1264T1687513634.pdf','applicants_certifications','Certification of employment
(5).pdf','U1264T1687513634.pdf','2023-06-23 09:47:14','2023-06-23
09:47:14',NULL,'1264',NULL,NULL),
(4524,1264,'ELIGIBILITY','applicants_certifications/
U1264T1687514056.pdf','applicants_certifications','CSC
eligibility.pdf','U1264T1687514056.pdf','2023-06-23 09:54:16','2023-06-23
09:54:16',NULL,'1264',NULL,NULL),(4527,1394,'SWT','applicants_certifications/
U1394T1687516039.jpg','applicants_certifications','annualplanning2023.jpg','U1394T1
687516039.jpg','2023-06-23 10:27:19','2023-06-23 10:27:19',NULL,'1394',NULL,NULL),
(4528,1394,'SWT','applicants_certifications/
U1394T1687516073.jpg','applicants_certifications','assessment
2022.jpg','U1394T1687516073.jpg','2023-06-23 10:27:53','2023-06-23
10:27:53',NULL,'1394',NULL,NULL),(4529,1394,'SWT','applicants_certifications/
U1394T1687516104.jpg','applicants_certifications','organizing2017.jpg','U1394T16875
16104.jpg','2023-06-23 10:28:24','2023-06-23 10:28:24',NULL,'1394',NULL,NULL),
(4530,1394,'SWT','applicants_certifications/
U1394T1687516147.jpg','applicants_certifications','records2015.jpg','U1394T16875161
47.jpg','2023-06-23 10:29:07','2023-06-23 10:29:07',NULL,'1394',NULL,NULL),
(4531,1394,'SWT','applicants_certifications/
U1394T1687516261.jpg','applicants_certifications','communication
skills2008.jpg','U1394T1687516261.jpg','2023-06-23 10:31:01','2023-06-23
10:31:01',NULL,'1394',NULL,NULL),(4532,1394,'SWT','applicants_certifications/
U1394T1687516310.jpg','applicants_certifications','enhancement2006.jpg','U1394T1687
516310.jpg','2023-06-23 10:31:50','2023-06-23 10:31:50',NULL,'1394',NULL,NULL),
(4533,1394,'SWT','applicants_certifications/
U1394T1687516362.jpg','applicants_certifications','archives2003.jpg','U1394T1687516
362.jpg','2023-06-23 10:32:42','2023-06-23 10:32:42',NULL,'1394',NULL,NULL),
(4534,1394,'SWT','applicants_certifications/
U1394T1687516412.jpg','applicants_certifications','admincase2000.jpg','U1394T168751
6412.jpg','2023-06-23 10:33:32','2023-06-23 10:33:32',NULL,'1394',NULL,NULL),
(4535,1394,'SWT','applicants_certifications/
U1394T1687517054.jpg','applicants_certifications','CamScanner 06-23-2023
18.03.jpg','U1394T1687517054.jpg','2023-06-23 10:44:14','2023-06-23
10:44:14',NULL,'1394',NULL,NULL),(4548,1218,'TOR','applicants_certifications/
U1218T1687529951.pdf','applicants_certifications','TOR - Abara, Karen VIvien
L..pdf','U1218T1687529951.pdf','2023-06-23 14:19:11','2023-06-23
14:19:11',NULL,'1218',NULL,NULL),(4549,1218,'PDS','applicants_certifications/
U1218T1687530164.pdf','applicants_certifications','PDS - Abara, Karen VIvien
L..pdf','U1218T1687530164.pdf','2023-06-23 14:22:44','2023-06-23
14:22:44',NULL,'1218',NULL,NULL),(4550,1218,'COE','applicants_certifications/
U1218T1687530372.pdf','applicants_certifications','COE - (RBBI-SASN-AMIC-
RCD).pdf','U1218T1687530372.pdf','2023-06-23 14:26:12','2023-06-23
14:26:12',NULL,'1218',NULL,NULL),(4551,1218,'SWT','applicants_certifications/
U1218T1687530573.pdf','applicants_certifications','Certificates - Abara, Karen
Vivien L..pdf','U1218T1687530573.pdf','2023-06-23 14:29:33','2023-06-23
14:29:33',NULL,'1218',NULL,NULL),(4554,1441,'COE','applicants_certifications/
U1441T1687555224.pdf','applicants_certifications','inbound1918434967583593414.pdf',
'U1441T1687555224.pdf','2023-06-23 21:20:24','2023-06-23
21:20:24',NULL,'1441',NULL,NULL),
(4555,1441,'ELIGIBILITY','applicants_certifications/
U1441T1687555311.pdf','applicants_certifications','inbound8808924218096236209.pdf',
'U1441T1687555311.pdf','2023-06-23 21:21:51','2023-06-23
21:21:51',NULL,'1441',NULL,NULL),(4557,1441,'SWT','applicants_certifications/
U1441T1687558773.pdf','applicants_certifications','inbound4734336117706746328.pdf',
'U1441T1687558773.pdf','2023-06-23 22:19:33','2023-06-23
22:19:33',NULL,'1441',NULL,NULL),(4558,1441,'PDS','applicants_certifications/
U1441T1687558794.xlsx','applicants_certifications','inbound4220284423624761235.xlsx
','U1441T1687558794.xlsx','2023-06-23 22:19:54','2023-06-23
22:19:54',NULL,'1441',NULL,NULL),(4559,1068,'TOR','applicants_certifications/
U1068T1687583034.jpg','applicants_certifications','inbound3533860263384181472.jpg',
'U1068T1687583034.jpg','2023-06-24 05:03:54','2023-06-24
05:03:54',NULL,'1068',NULL,NULL),(4560,1068,'TOR','applicants_certifications/
U1068T1687583261.jpg','applicants_certifications','inbound812208798176337772.jpg','
U1068T1687583261.jpg','2023-06-24 05:07:41','2023-06-24
05:07:41',NULL,'1068',NULL,NULL),(4561,1068,'TOR','applicants_certifications/
U1068T1687583403.jpg','applicants_certifications','inbound2039585989601534510.jpg',
'U1068T1687583403.jpg','2023-06-24 05:10:03','2023-06-24
05:10:03',NULL,'1068',NULL,NULL),(4562,1068,'COE','applicants_certifications/
U1068T1687583568.jpg','applicants_certifications','inbound4611092023566699944.jpg',
'U1068T1687583568.jpg','2023-06-24 05:12:48','2023-06-24
05:12:48',NULL,'1068',NULL,NULL),(4563,1068,'SWT','applicants_certifications/
U1068T1687583705.jpg','applicants_certifications','inbound5063652656829429118.jpg',
'U1068T1687583705.jpg','2023-06-24 05:15:05','2023-06-24
05:15:05',NULL,'1068',NULL,NULL),(4564,1068,'SWT','applicants_certifications/
U1068T1687583840.jpg','applicants_certifications','inbound432798460578110397.jpg','
U1068T1687583840.jpg','2023-06-24 05:17:20','2023-06-24
05:17:20',NULL,'1068',NULL,NULL),(4565,1068,'SWT','applicants_certifications/
U1068T1687583975.jpg','applicants_certifications','inbound5350934748485258620.jpg',
'U1068T1687583975.jpg','2023-06-24 05:19:35','2023-06-24
05:19:35',NULL,'1068',NULL,NULL),
(4566,1068,'ELIGIBILITY','applicants_certifications/
U1068T1687584186.jpg','applicants_certifications','inbound6733351905807113345.jpg',
'U1068T1687584186.jpg','2023-06-24 05:23:06','2023-06-24
05:23:06',NULL,'1068',NULL,NULL),(4567,1068,'PDS','applicants_certifications/
U1068T1687584351.jpg','applicants_certifications','inbound7630448312141017973.jpg',
'U1068T1687584351.jpg','2023-06-24 05:25:51','2023-06-24
05:25:51',NULL,'1068',NULL,NULL),(4568,1068,'PDS','applicants_certifications/
U1068T1687584498.jpg','applicants_certifications','inbound4654136522685242318.jpg',
'U1068T1687584498.jpg','2023-06-24 05:28:18','2023-06-24
05:28:18',NULL,'1068',NULL,NULL),(4569,1068,'PDS','applicants_certifications/
U1068T1687584582.jpg','applicants_certifications','inbound3280112379100040867.jpg',
'U1068T1687584582.jpg','2023-06-24 05:29:42','2023-06-24
05:29:42',NULL,'1068',NULL,NULL),(4570,1068,'PDS','applicants_certifications/
U1068T1687584707.jpg','applicants_certifications','inbound909205284992663524.jpg','
U1068T1687584707.jpg','2023-06-24 05:31:47','2023-06-24
05:31:47',NULL,'1068',NULL,NULL),(4571,1398,'SWT','applicants_certifications/
U1398T1687590754.pdf','applicants_certifications','IMG_20230624_0004.pdf','U1398T16
87590754.pdf','2023-06-24 07:12:34','2023-06-24 07:12:34',NULL,'1398',NULL,NULL),
(4572,1398,'SWT','applicants_certifications/
U1398T1687590783.pdf','applicants_certifications','IMG_20230624_0005.pdf','U1398T16
87590783.pdf','2023-06-24 07:13:03','2023-06-24 07:13:03',NULL,'1398',NULL,NULL),
(4573,1398,'SWT','applicants_certifications/
U1398T1687591072.pdf','applicants_certifications','IMG_20230619_0002.pdf','U1398T16
87591072.pdf','2023-06-24 07:17:52','2023-06-24 07:17:52',NULL,'1398',NULL,NULL),
(4574,1398,'SWT','applicants_certifications/
U1398T1687591171.pdf','applicants_certifications','IMG_20230624_0006.pdf','U1398T16
87591171.pdf','2023-06-24 07:19:31','2023-06-24 07:19:31',NULL,'1398',NULL,NULL),
(4575,1398,'SWT','applicants_certifications/
U1398T1687591328.pdf','applicants_certifications','IMG_20230624_0007.pdf','U1398T16
87591328.pdf','2023-06-24 07:22:08','2023-06-24 07:22:08',NULL,'1398',NULL,NULL),
(4577,1234,'PDS','applicants_certifications/
U1234T1687628539.xlsx','applicants_certifications','CS Form No. 212 Personal Data
Sheet revised(KharleneBelingon).xlsx','U1234T1687628539.xlsx','2023-06-24
17:42:19','2023-06-24 17:42:19',NULL,'1234',NULL,NULL),
(4578,1454,'COE','applicants_certifications/
U1454T1687660828.jpg','applicants_certifications','CO
Employment.jpg','U1454T1687660828.jpg','2023-06-25 02:40:28','2023-06-25
02:40:28',NULL,'1454',NULL,NULL),
(4579,1454,'ELIGIBILITY','applicants_certifications/
U1454T1687665172.pdf','applicants_certifications','Notice of
Rating.pdf','U1454T1687665172.pdf','2023-06-25 03:52:52','2023-06-25
03:52:52',NULL,'1454',NULL,NULL),(4581,1454,'SWT','applicants_certifications/
U1454T1687666093.pdf','applicants_certifications','SEMINAR TRAINING
CERT.pdf','U1454T1687666093.pdf','2023-06-25 04:08:13','2023-06-25
04:08:13',NULL,'1454',NULL,NULL),
(4582,1454,'ELIGIBILITY','applicants_certifications/
U1454T1687667066.jpg','applicants_certifications','Tax
Pro.jpg','U1454T1687667066.jpg','2023-06-25 04:24:26','2023-06-25
04:24:26',NULL,'1454',NULL,NULL),(4584,1259,'COE','applicants_certifications/
U1259T1687700481.pdf','applicants_certifications','Cable Television Network,
Inc..pdf','U1259T1687700481.pdf','2023-06-25 13:41:21','2023-06-25
13:41:21',NULL,'1259',NULL,NULL),(4585,1259,'COE','applicants_certifications/
U1259T1687700511.pdf','applicants_certifications','Rural
Bank of Bambang (N.V.), Inc..pdf','U1259T1687700511.pdf','2023-06-25
13:41:51','2023-06-25 13:41:51',NULL,'1259',NULL,NULL),
(4586,1259,'COE','applicants_certifications/
U1259T1687700526.pdf','applicants_certifications','Lagawe Multipurpose Development
Cooperative.pdf','U1259T1687700526.pdf','2023-06-25 13:42:06','2023-06-25
13:42:06',NULL,'1259',NULL,NULL),(4587,1259,'COE','applicants_certifications/
U1259T1687700579.pdf','applicants_certifications','Commission on Elections
2022.pdf','U1259T1687700579.pdf','2023-06-25 13:42:59','2023-06-25
13:42:59',NULL,'1259',NULL,NULL),(4588,1475,'TOR','applicants_certifications/
U1475T1687700643.pdf','applicants_certifications','TOR MASTER OF ARTS IN
EDUC.pdf','U1475T1687700643.pdf','2023-06-25 13:44:03','2023-06-25
13:44:03',NULL,'1475',NULL,NULL),(4589,1475,'TOR','applicants_certifications/
U1475T1687700673.pdf','applicants_certifications','TOR-BACHELOR IN SECONDARY
EDUC.pdf','U1475T1687700673.pdf','2023-06-25 13:44:33','2023-06-25
13:44:33',NULL,'1475',NULL,NULL),(4590,1475,'TOR','applicants_certifications/
U1475T1687700694.pdf','applicants_certifications','TOR-BACHELOR IN SECONDARY EDUC-
PAGE 2.pdf','U1475T1687700694.pdf','2023-06-25 13:44:54','2023-06-25
13:44:54',NULL,'1475',NULL,NULL),
(4593,1475,'ELIGIBILITY','applicants_certifications/
U1475T1687701143.pdf','applicants_certifications','CERT. OF
RATING.pdf','U1475T1687701143.pdf','2023-06-25 13:52:23','2023-06-25
13:52:23',NULL,'1475',NULL,NULL),(4595,1475,'SWT','applicants_certifications/
U1475T1687701234.pdf','applicants_certifications','PhilComp
Cert..pdf','U1475T1687701234.pdf','2023-06-25 13:53:54','2023-06-25
13:53:54',NULL,'1475',NULL,NULL),(4596,1475,'SWT','applicants_certifications/
U1475T1687701263.pdf','applicants_certifications','Laboratory Management
Training.pdf','U1475T1687701263.pdf','2023-06-25 13:54:23','2023-06-25
13:54:23',NULL,'1475',NULL,NULL),(4597,1475,'SWT','applicants_certifications/
U1475T1687701302.pdf','applicants_certifications','CSS TESDA
Certificate.pdf','U1475T1687701302.pdf','2023-06-25 13:55:02','2023-06-25
13:55:02',NULL,'1475',NULL,NULL),(4598,1475,'SWT','applicants_certifications/
U1475T1687701365.pdf','applicants_certifications','TM TRAINING
CERT.pdf','U1475T1687701365.pdf','2023-06-25 13:56:05','2023-06-25
13:56:05',NULL,'1475',NULL,NULL),(4599,1475,'SWT','applicants_certifications/
U1475T1687701388.pdf','applicants_certifications','TM
CERT.pdf','U1475T1687701388.pdf','2023-06-25 13:56:28','2023-06-25
13:56:28',NULL,'1475',NULL,NULL),(4600,1386,'COE','applicants_certifications/
U1386T1687701428.pdf','applicants_certifications','Certificate of
Employment.pdf','U1386T1687701428.pdf','2023-06-25 13:57:08','2023-06-25
13:57:08',NULL,'1386',NULL,NULL),
(4601,1475,'ELIGIBILITY','applicants_certifications/
U1475T1687701478.pdf','applicants_certifications','PRC ID
LICENSE.pdf','U1475T1687701478.pdf','2023-06-25 13:57:58','2023-06-25
13:57:58',NULL,'1475',NULL,NULL),
(4606,1386,'ELIGIBILITY','applicants_certifications/
U1386T1687701888.pdf','applicants_certifications','Certificate of
Eligibility.pdf','U1386T1687701888.pdf','2023-06-25 14:04:48','2023-06-25
14:04:48',NULL,'1386',NULL,NULL),(4607,1386,'SWT','applicants_certifications/
U1386T1687702045.pdf','applicants_certifications','Audit Simulation
Certificate.pdf','U1386T1687702045.pdf','2023-06-25 14:07:25','2023-06-25
14:07:25',NULL,'1386',NULL,NULL),(4608,1386,'SWT','applicants_certifications/
U1386T1687702153.pdf','applicants_certifications','HACKS4GROWTH Training
Certificate.pdf','U1386T1687702153.pdf','2023-06-25 14:09:13','2023-06-25
14:09:13',NULL,'1386',NULL,NULL),
(4609,1259,'ELIGIBILITY','applicants_certifications/
U1259T1687704261.txt','applicants_certifications','Claiming of
Certificate.txt','U1259T1687704261.txt','2023-06-25 14:44:21','2023-06-25
14:44:21',NULL,'1259',NULL,NULL),(4610,1468,'TOR','applicants_certifications/
U1468T1687709024.pdf','applicants_certifications','CORTEZ - TOR Bachelor\'s
Degree.pdf','U1468T1687709024.pdf','2023-06-25 16:03:44','2023-06-25
16:03:44',NULL,'1468',NULL,NULL),(4611,1468,'TOR','applicants_certifications/
U1468T1687709051.jpg','applicants_certifications','CORTEZ -
MARE.jpg','U1468T1687709051.jpg','2023-06-25 16:04:11','2023-06-25
16:04:11',NULL,'1468',NULL,NULL),(4612,1468,'TOR','applicants_certifications/
U1468T1687709068.pdf','applicants_certifications','CORTEZ - MAEd UP Academic
Requirments Completed.pdf','U1468T1687709068.pdf','2023-06-25 16:04:28','2023-06-25
16:04:28',NULL,'1468',NULL,NULL),(4613,1468,'TOR','applicants_certifications/
U1468T1687709087.pdf','applicants_certifications','CORTEZ - MAEd UP
(TCG).pdf','U1468T1687709087.pdf','2023-06-25 16:04:47','2023-06-25
16:04:47',NULL,'1468',NULL,NULL),(4614,1468,'TOR','applicants_certifications/
U1468T1687709100.jpg','applicants_certifications','CORTEZ - MPA Academic
Requirements Completed - ISU.jpg','U1468T1687709100.jpg','2023-06-25
16:05:00','2023-06-25 16:05:00',NULL,'1468',NULL,NULL),
(4615,1468,'ELIGIBILITY','applicants_certifications/
U1468T1687709114.jpg','applicants_certifications','CORTEZ - PRC
LICENSE.jpg','U1468T1687709114.jpg','2023-06-25 16:05:14','2023-06-25
16:05:14',NULL,'1468',NULL,NULL),
(4616,1468,'ELIGIBILITY','applicants_certifications/
U1468T1687709128.jpg','applicants_certifications','CORTEZ - CERTIFICATION OF BOARD
RATING.jpg','U1468T1687709128.jpg','2023-06-25 16:05:28','2023-06-25
16:05:28',NULL,'1468',NULL,NULL),(4617,1468,'PDS','applicants_certifications/
U1468T1687709180.pdf','applicants_certifications','PDS - JOEY M.
CORTEZ.pdf','U1468T1687709180.pdf','2023-06-25 16:06:20','2023-06-25
16:06:20',NULL,'1468',NULL,NULL),(4618,1468,'COE','applicants_certifications/
U1468T1687709746.pdf','applicants_certifications','Certificate of Employment and
Service Record.pdf','U1468T1687709746.pdf','2023-06-25 16:15:46','2023-06-25
16:15:46',NULL,'1468',NULL,NULL),(4620,1468,'SWT','applicants_certifications/
U1468T1687710229.jpg','applicants_certifications','355820555_661402675320730_489751
3974063192536_n.jpg','U1468T1687710229.jpg','2023-06-25 16:23:49','2023-06-25
16:23:49',NULL,'1468',NULL,NULL),(4621,1468,'SWT','applicants_certifications/
U1468T1687710242.jpg','applicants_certifications','356330185_1611405422720721_77778
53988712249965_n.jpg','U1468T1687710242.jpg','2023-06-25 16:24:02','2023-06-25
16:24:02',NULL,'1468',NULL,NULL),(4622,1468,'SWT','applicants_certifications/
U1468T1687710252.jpg','applicants_certifications','355896606_811235703845131_362836
796424136346_n.jpg','U1468T1687710252.jpg','2023-06-25 16:24:12','2023-06-25
16:24:12',NULL,'1468',NULL,NULL),(4623,1468,'SWT','applicants_certifications/
U1468T1687710262.jpg','applicants_certifications','356142798_568998658518431_666517
0820363086935_n.jpg','U1468T1687710262.jpg','2023-06-25 16:24:22','2023-06-25
16:24:22',NULL,'1468',NULL,NULL),(4624,1468,'SWT','applicants_certifications/
U1468T1687710272.jpg','applicants_certifications','355849364_216034201335802_841517
162860704482_n.jpg','U1468T1687710272.jpg','2023-06-25 16:24:32','2023-06-25
16:24:32',NULL,'1468',NULL,NULL),(4625,1468,'SWT','applicants_certifications/
U1468T1687710288.jpg','applicants_certifications','355735835_203757472632660_403958
1016239681280_n.jpg','U1468T1687710288.jpg','2023-06-25 16:24:48','2023-06-25
16:24:48',NULL,'1468',NULL,NULL),(4626,1468,'SWT','applicants_certifications/
U1468T1687710298.jpg','applicants_certifications','355809743_793150302260306_526167
510423689309_n.jpg','U1468T1687710298.jpg','2023-06-25 16:24:58','2023-06-25
16:24:58',NULL,'1468',NULL,NULL),(4627,1468,'SWT','applicants_certifications/
U1468T1687710312.pdf','applicants_certifications','[FUSION 2023] Certificate of
Participation - Joey M. Cortez.pdf','U1468T1687710312.pdf','2023-06-25
16:25:12','2023-06-25 16:25:12',NULL,'1468',NULL,NULL),
(4628,1468,'SWT','applicants_certifications/
U1468T1687710321.pdf','applicants_certifications','ACFrOgA0QOXTUcf9ee-
HQFvlaKIuvscLCfTFfVAwZ7O4L9tUp4P-
C4oO5y1T2Kijd2_JyNehtgMqlqUDZEHtKEtdmL5fjcLUViIndh6MAj1fHFDfZ3U4r9lmQCPjp2Q=.pdf','
U1468T1687710321.pdf','2023-06-25 16:25:21','2023-06-25
16:25:21',NULL,'1468',NULL,NULL),(4629,1468,'SWT','applicants_certifications/
U1468T1687710333.pdf','applicants_certifications','certificate -
PAGSTE.pdf','U1468T1687710333.pdf','2023-06-25 16:25:33','2023-06-25
16:25:33',NULL,'1468',NULL,NULL),(4630,1468,'SWT','applicants_certifications/
U1468T1687710344.pdf','applicants_certifications','Certificate of Appreciation -
JOEY M. CORTEZ.pdf','U1468T1687710344.pdf','2023-06-25 16:25:44','2023-06-25
16:25:44',NULL,'1468',NULL,NULL),(4631,1468,'SWT','applicants_certifications/
U1468T1687710355.pdf','applicants_certifications','Certificate of Participation -
Campus Adviser\'s Training.pdf','U1468T1687710355.pdf','2023-06-25 16:25:55','2023-
06-25 16:25:55',NULL,'1468',NULL,NULL),
(4632,1468,'SWT','applicants_certifications/
U1468T1687710366.pdf','applicants_certifications','Certificate of Recognition _
Joey M. Cortez _ Coach of 6th Placer in Traditional Poster Making (JHS) _
UNIVERSITY OF LA SALETTE, INCORPORATED HIGH SCHOOL
(1).pdf','U1468T1687710366.pdf','2023-06-25 16:26:06','2023-06-25
16:26:06',NULL,'1468',NULL,NULL),(4634,1468,'TOR','applicants_certifications/
U1468T1687710391.pdf','applicants_certifications','certificate-ASA210170-
240114.pdf','U1468T1687710391.pdf','2023-06-25 16:26:31','2023-06-25
16:26:31',NULL,'1468',NULL,NULL),(4635,1468,'SWT','applicants_certifications/
U1468T1687710405.pdf','applicants_certifications','CORTEZ.pdf','U1468T1687710405.pd
f','2023-06-25 16:26:45','2023-06-25 16:26:45',NULL,'1468',NULL,NULL),
(4636,1468,'SWT','applicants_certifications/
U1468T1687710416.pdf','applicants_certifications','ISU IPAG
Cert.pdf','U1468T1687710416.pdf','2023-06-25 16:26:56','2023-06-25
16:26:56',NULL,'1468',NULL,NULL),(4637,1468,'SWT','applicants_certifications/
U1468T1687710426.pdf','applicants_certifications','Joey M. Cortez-
2022191.pdf','U1468T1687710426.pdf','2023-06-25 16:27:06','2023-06-25
16:27:06',NULL,'1468',NULL,NULL),(4638,1468,'SWT','applicants_certifications/
U1468T1687710435.pdf','applicants_certifications','National Conference on
Curriculum Studies.pdf','U1468T1687710435.pdf','2023-06-25 16:27:15','2023-06-25
16:27:15',NULL,'1468',NULL,NULL),(4639,1468,'SWT','applicants_certifications/
U1468T1687710446.pdf','applicants_certifications','SLU
CERTIFICATE.pdf','U1468T1687710446.pdf','2023-06-25 16:27:26','2023-06-25
16:27:26',NULL,'1468',NULL,NULL),(4640,1468,'SWT','applicants_certifications/
U1468T1687710455.pdf','applicants_certifications','TSJ210447-
240114.pdf','U1468T1687710455.pdf','2023-06-25 16:27:35','2023-06-25
16:27:35',NULL,'1468',NULL,NULL),(4641,1468,'PDS','applicants_certifications/
U1468T1687712718.pdf','applicants_certifications','Resume - JOEY M.
CORTEZ.pdf','U1468T1687712718.pdf','2023-06-25 17:05:18','2023-06-25
17:05:18',NULL,'1468',NULL,NULL),(4642,1445,'TOR','applicants_certifications/
U1445T1687718027.jpg','applicants_certifications','20230626_015508.jpg','U1445T1687
718027.jpg','2023-06-25 18:33:47','2023-06-25 18:33:47',NULL,'1445',NULL,NULL),
(4643,1445,'ELIGIBILITY','applicants_certifications/
U1445T1687718116.jpg','applicants_certifications','20230626_015228.jpg','U1445T1687
718116.jpg','2023-06-25 18:35:16','2023-06-25 18:35:16',NULL,'1445',NULL,NULL),
(4644,1445,'SWT','applicants_certifications/
U1445T1687718282.jpg','applicants_certifications','20230626_024454.jpg','U1445T1687
718282.jpg','2023-06-25 18:38:02','2023-06-25 18:38:02',NULL,'1445',NULL,NULL),
(4645,1195,'ELIGIBILITY','applicants_certifications/
U1195T1687738503.pdf','applicants_certifications','Certification of
Eligibility.pdf','U1195T1687738503.pdf','2023-06-26 00:15:03','2023-06-26
00:15:03',NULL,'1195',NULL,NULL),(4646,1195,'PDS','applicants_certifications/
U1195T1687741580.pdf','applicants_certifications','Accomplished PDS 06-26-
2023.pdf','U1195T1687741580.pdf','2023-06-26 01:06:20','2023-06-26
01:06:20',NULL,'1195',NULL,NULL),(4649,1477,'TOR','applicants_certifications/
U1477T1687742699.jpg','applicants_certifications','inbound4550223463726906938.jpg',
'U1477T1687742699.jpg','2023-06-26 01:24:59','2023-06-26
01:24:59',NULL,'1477',NULL,NULL),(4651,1477,'TOR','applicants_certifications/
U1477T1687742754.jpg','applicants_certifications','inbound9010580345283702420.jpg',
'U1477T1687742754.jpg','2023-06-26 01:25:54','2023-06-26
01:25:54',NULL,'1477',NULL,NULL),
(4652,1477,'ELIGIBILITY','applicants_certifications/
U1477T1687742797.jpg','applicants_certifications','inbound4895466571329533860.jpg',
'U1477T1687742797.jpg','2023-06-26 01:26:37','2023-06-26
01:26:37',NULL,'1477',NULL,NULL),(4653,1413,'COE','applicants_certifications/
U1413T1687743747.pdf','applicants_certifications','IPCR.pdf','U1413T1687743747.pdf'
,'2023-06-26 01:42:27','2023-06-26 01:42:27',NULL,'1413',NULL,NULL),
(4654,1477,'SWT','applicants_certifications/
U1477T1687745843.jpg','applicants_certifications','inbound7101810890225975922.jpg',
'U1477T1687745843.jpg','2023-06-26 02:17:23','2023-06-26
02:17:23',NULL,'1477',NULL,NULL),(4656,1477,'SWT','applicants_certifications/
U1477T1687745950.jpg','applicants_certifications','inbound6709192710866466783.jpg',
'U1477T1687745950.jpg','2023-06-26 02:19:10','2023-06-26
02:19:10',NULL,'1477',NULL,NULL),(4657,1259,'PDS','applicants_certifications/
U1259T1687756017.pdf','applicants_certifications','Personal_Data_Sheet_-
_Daniel_T._Madamba.pdf','U1259T1687756017.pdf','2023-06-26 05:06:57','2023-06-26
05:06:57',NULL,'1259',NULL,NULL),(4658,1450,'TOR','applicants_certifications/
U1450T1702533465.pdf','applicants_certifications','TOR - Authenticated
Photocopy.pdf','U1450T1702533465.pdf','2023-12-14 13:57:45','2023-12-14
13:57:45',NULL,'1450',NULL,NULL),
(4660,1450,'ELIGIBILITY','applicants_certifications/
U1450T1687757851.pdf','applicants_certifications','Honor Graduate
Eligibility.pdf','U1450T1687757851.pdf','2023-06-26 05:37:31','2023-06-26
05:37:31',NULL,'1450',NULL,NULL),
(4661,1450,'ELIGIBILITY','applicants_certifications/
U1450T1687757872.pdf','applicants_certifications','Certification of Passing
(Authenticated).pdf','U1450T1687757872.pdf','2023-06-26 05:37:52','2023-06-26
05:37:52',NULL,'1450',NULL,NULL),(4662,1482,'PDS','applicants_certifications/
U1482T1687764065.','applicants_certifications','520478','U1482T1687764065.','2023-
06-26 07:21:05','2023-06-26 07:21:05',NULL,'1482',NULL,NULL),
(4663,1482,'ELIGIBILITY','applicants_certifications/
U1482T1687764136.','applicants_certifications','536877','U1482T1687764136.','2023-
06-26 07:22:16','2023-06-26 07:22:16',NULL,'1482',NULL,NULL),
(4664,1477,'PDS','applicants_certifications/
U1477T1687766442.xlsx','applicants_certifications','inbound1397776686179092093.xlsx
','U1477T1687766442.xlsx','2023-06-26 08:00:42','2023-06-26
08:00:42',NULL,'1477',NULL,NULL),
(4671,1363,'ELIGIBILITY','applicants_certifications/
U1363T1687774570.tmp','applicants_certifications','inbound-
1202916743.tmp','U1363T1687774570.tmp','2023-06-26 10:16:10','2023-06-26
10:16:10',NULL,'1363',NULL,NULL),(4672,1386,'TOR','applicants_certifications/
U1386T1687782863.pdf','applicants_certifications','Transcript of
Record.pdf','U1386T1687782863.pdf','2023-06-26 12:34:23','2023-06-26
12:34:23',NULL,'1386',NULL,NULL),(4674,1475,'COE','applicants_certifications/
U1475T1687797633.pdf','applicants_certifications','Cert. of
Employment.pdf','U1475T1687797633.pdf','2023-06-26 16:40:33','2023-06-26
16:40:33',NULL,'1475',NULL,NULL),(4675,1475,'SWT','applicants_certifications/
U1475T1687797751.jpg','applicants_certifications','21st Century Pedagogies,
Assesment & Development of Contextualized Learning Resources for Teachers Cum
Instructional Supervision Training of School Heads and MasterTeachers (2023
District InSet)2-61023.jpg','U1475T1687797751.jpg','2023-06-26 16:42:31','2023-06-
26 16:42:31',NULL,'1475',NULL,NULL),(4676,1475,'SWT','applicants_certifications/
U1475T1687797779.jpg','applicants_certifications','Division Training of Untrained
1st Year Teachers on the 2010 Secondary Education Curriculum (SEC)-August 11-13,
2011.jpg','U1475T1687797779.jpg','2023-06-26 16:42:59','2023-06-26
16:42:59',NULL,'1475',NULL,NULL),(4677,1475,'SWT','applicants_certifications/
U1475T1687797810.jpg','applicants_certifications','In-Service Training-October 24-
25, 2012.jpg','U1475T1687797810.jpg','2023-06-26 16:43:30','2023-06-26
16:43:30',NULL,'1475',NULL,NULL),(4678,1475,'SWT','applicants_certifications/
U1475T1687797835.jpg','applicants_certifications','LAC Session on Home Visitation
in the Senior High School Department-April 14,
2023.jpg','U1475T1687797835.jpg','2023-06-26 16:43:55','2023-06-26
16:43:55',NULL,'1475',NULL,NULL),(4679,1475,'SWT','applicants_certifications/
U1475T1687797864.jpg','applicants_certifications','LAC Session on Systematizing the
Reciprocal Relationship of Aritao NAtional High School and The Local Government
Unit of Aritao, Nueva Vizcaya-May 17, 2023.jpg','U1475T1687797864.jpg','2023-06-26
16:44:24','2023-06-26 16:44:24',NULL,'1475',NULL,NULL),
(4680,1475,'SWT','applicants_certifications/
U1475T1687797884.jpg','applicants_certifications','LAC Session on Teaching
Strategies in the New Normal-January 24, 2023
(2).jpg','U1475T1687797884.jpg','2023-06-26 16:44:44','2023-06-26
16:44:44',NULL,'1475',NULL,NULL),(4681,1475,'SWT','applicants_certifications/
U1475T1687798248.pdf','applicants_certifications','National TrainingSeminarWorkshop
on K-12 Curriculum with the theme Mastery In RubricWriting, Table of Specification,
Strategic Intervention MAterials (SIM) and Module Writing-Dec. 12-14,
2014.pdf','U1475T1687798248.pdf','2023-06-26 16:50:48','2023-06-26
16:50:48',NULL,'1475',NULL,NULL),(4682,1475,'SWT','applicants_certifications/
U1475T1687798280.jpg','applicants_certifications','PLDT Infoteach Outreach Program-
May 29-31, 2013.jpg','U1475T1687798280.jpg','2023-06-26 16:51:21','2023-06-26
16:51:21',NULL,'1475',NULL,NULL),(4683,1475,'SWT','applicants_certifications/
U1475T1687798312.jpg','applicants_certifications','Public Accountability and Values
Enhancement Seminar-24 hours-October 30-31, 2013.jpg','U1475T1687798312.jpg','2023-
06-26 16:51:52','2023-06-26 16:51:52',NULL,'1475',NULL,NULL),
(4684,1475,'SWT','applicants_certifications/
U1475T1687798332.jpg','applicants_certifications','Regional Training of Grade 7
Teachers in Technology and Livelihood Education-May 18-22,
2012.jpg','U1475T1687798332.jpg','2023-06-26 16:52:12','2023-06-26
16:52:12',NULL,'1475',NULL,NULL),(4685,1475,'SWT','applicants_certifications/
U1475T1687798353.jpg','applicants_certifications','Seminar-Workshop On Classroom
Action Research In Teaching- Nov. 23 and 30,
2013.jpg','U1475T1687798353.jpg','2023-06-26 16:52:33','2023-06-26
16:52:33',NULL,'1475',NULL,NULL),(4686,1475,'SWT','applicants_certifications/
U1475T1687798377.jpg','applicants_certifications','Seminar-Workshop sa
Ortograpiyang Pambansa at ny Wikang Filipino sa mga Hamon ng Bagong Patakaran sa
Edukasyon (K-12 at MTB-MLE) - February 8, 2014.jpg','U1475T1687798377.jpg','2023-
06-26 16:52:57','2023-06-26 16:52:57',NULL,'1475',NULL,NULL),
(4687,1475,'SWT','applicants_certifications/
U1475T1687798394.jpg','applicants_certifications','Training Program in Electrical
Installation and Maintenance-April 21, 2014-July 1, 2014--402
hours.jpg','U1475T1687798394.jpg','2023-06-26 16:53:14','2023-06-26
16:53:14',NULL,'1475',NULL,NULL),(4688,1475,'SWT','applicants_certifications/
U1475T1687798397.jpg','applicants_certifications','Training Program in Electrical
Installation and Maintenance-April 21, 2014-July 1, 2014--402
hours.jpg','U1475T1687798397.jpg','2023-06-26 16:53:17','2023-06-26
16:53:17',NULL,'1475',NULL,NULL),(4689,1475,'SWT','applicants_certifications/
U1475T1687798422.jpg','applicants_certifications','Upskilling of Private and
Untrained Public K-12 Teachers and Administrators on Index of Inclusive Education-
November 17-19, 2021.jpg','U1475T1687798422.jpg','2023-06-26 16:53:42','2023-06-26
16:53:42',NULL,'1475',NULL,NULL),(4693,1476,'TOR','applicants_certifications/
U1476T1687827101.jpg','applicants_certifications','inbou
nd3783632674397205577.jpg','U1476T1687827101.jpg','2023-06-27 00:51:41','2023-06-27
00:51:41',NULL,'1476',NULL,NULL),(4694,1476,'TOR','applicants_certifications/
U1476T1687827160.jpg','applicants_certifications','inbound5150752557452164593.jpg',
'U1476T1687827160.jpg','2023-06-27 00:52:40','2023-06-27
00:52:40',NULL,'1476',NULL,NULL),(4695,1476,'TOR','applicants_certifications/
U1476T1687827183.jpg','applicants_certifications','inbound3671949180366673963.jpg',
'U1476T1687827183.jpg','2023-06-27 00:53:03','2023-06-27
00:53:03',NULL,'1476',NULL,NULL),(4698,1365,'TOR','applicants_certifications/
U1365T1687827679.jpg','applicants_certifications','8.
TOR_00001.jpg','U1365T1687827679.jpg','2023-06-27 01:01:19','2023-06-27
01:01:19',NULL,'1365',NULL,NULL),(4699,1365,'TOR','applicants_certifications/
U1365T1687827701.jpg','applicants_certifications','8.
TOR_00002.jpg','U1365T1687827701.jpg','2023-06-27 01:01:41','2023-06-27
01:01:41',NULL,'1365',NULL,NULL),(4700,1365,'TOR','applicants_certifications/
U1365T1687827721.jpg','applicants_certifications','8.
TOR_00003.jpg','U1365T1687827721.jpg','2023-06-27 01:02:01','2023-06-27
01:02:01',NULL,'1365',NULL,NULL),(4701,1431,'SWT','applicants_certifications/
U1431T1687827804.pdf','applicants_certifications','certification
2.pdf','U1431T1687827804.pdf','2023-06-27 01:03:24','2023-06-27
01:03:24',NULL,'1431',NULL,NULL),(4702,1365,'COE','applicants_certifications/
U1365T1687827846.pdf','applicants_certifications','12. cert. of service
rendered.pdf','U1365T1687827846.pdf','2023-06-27 01:04:06','2023-06-27
01:04:06',NULL,'1365',NULL,NULL),(4703,1431,'SWT','applicants_certifications/
U1431T1687827879.pdf','applicants_certifications','certification
3.pdf','U1431T1687827879.pdf','2023-06-27 01:04:39','2023-06-27
01:04:39',NULL,'1431',NULL,NULL),(4704,1365,'PDS','applicants_certifications/
U1365T1687828611.pdf','applicants_certifications','2.pdf','U1365T1687828611.pdf','2
023-06-27 01:16:51','2023-06-27 01:16:51',NULL,'1365',NULL,NULL),
(4705,1365,'ELIGIBILITY','applicants_certifications/
U1365T1687828637.pdf','applicants_certifications','5. PRC
license.pdf','U1365T1687828637.pdf','2023-06-27 01:17:17','2023-06-27
01:17:17',NULL,'1365',NULL,NULL),(4706,1195,'COE','applicants_certifications/
U1195T1687830178.pdf','applicants_certifications','2022 - PSA - IPCR - Cariño,
Julius Ceasar_MP.pdf','U1195T1687830178.pdf','2023-06-27 01:42:58','2023-06-27
01:42:58',NULL,'1195',NULL,NULL),(4708,1422,'TOR','applicants_certifications/
U1422T1687834744.jpg','applicants_certifications','TOR in Tourism (Page
1).jpg','U1422T1687834744.jpg','2023-06-27 02:59:04','2023-06-27
02:59:04',NULL,'1422',NULL,NULL),(4709,1422,'TOR','applicants_certifications/
U1422T1687834788.jpg','applicants_certifications','TOR in Tourism (Page
2).jpg','U1422T1687834788.jpg','2023-06-27 02:59:48','2023-06-27
02:59:48',NULL,'1422',NULL,NULL),(4710,1422,'TOR','applicants_certifications/
U1422T1687834831.jpg','applicants_certifications','TOR in Tourism (Page
3).jpg','U1422T1687834831.jpg','2023-06-27 03:00:31','2023-06-27
03:00:31',NULL,'1422',NULL,NULL),(4711,1422,'TOR','applicants_certifications/
U1422T1687834864.jpg','applicants_certifications','TOR in HRM (Page
1).jpg','U1422T1687834864.jpg','2023-06-27 03:01:04','2023-06-27
03:01:04',NULL,'1422',NULL,NULL),(4712,1422,'TOR','applicants_certifications/
U1422T1687834900.jpg','applicants_certifications','TOR in HR (Page
2).jpg','U1422T1687834900.jpg','2023-06-27 03:01:40','2023-06-27
03:01:40',NULL,'1422',NULL,NULL),(4713,1422,'TOR','applicants_certifications/
U1422T1687834928.jpg','applicants_certifications','TOR in HR (Page
3).jpg','U1422T1687834928.jpg','2023-06-27 03:02:08','2023-06-27
03:02:08',NULL,'1422',NULL,NULL),(4714,1422,'COE','applicants_certifications/
U1422T1687834989.jpg','applicants_certifications','COE.jpg','U1422T1687834989.jpg',
'2023-06-27 03:03:09','2023-06-27 03:03:09',NULL,'1422',NULL,NULL),
(4715,1422,'SWT','applicants_certifications/
U1422T1687835016.jpg','applicants_certifications','Certificate of passing the IATA
Exam from Montreal Canada.jpg','U1422T1687835016.jpg','2023-06-27 03:03:36','2023-
06-27 03:03:36',NULL,'1422',NULL,NULL),
(4716,1422,'SWT','applicants_certifications/
U1422T1687835071.jpg','applicants_certifications','Diploma in
HRM.jpg','U1422T1687835071.jpg','2023-06-27 03:04:31','2023-06-27
03:04:31',NULL,'1422',NULL,NULL),(4717,1422,'SWT','applicants_certifications/
U1422T1687835147.jpg','applicants_certifications','DOT
Certificate.jpg','U1422T1687835147.jpg','2023-06-27 03:05:47','2023-06-27
03:05:47',NULL,'1422',NULL,NULL),(4718,1431,'SWT','applicants_certifications/
U1431T1687836181.pdf','applicants_certifications','certification
4.pdf','U1431T1687836181.pdf','2023-06-27 03:23:01','2023-06-27
03:23:01',NULL,'1431',NULL,NULL),(4719,1494,'TOR','applicants_certifications/
U1494T1687837181.pdf','applicants_certifications','TOR.pdf','U1494T1687837181.pdf',
'2023-06-27 03:39:41','2023-06-27 03:39:41',NULL,'1494',NULL,NULL),
(4720,1494,'ELIGIBILITY','applicants_certifications/
U1494T1687837196.pdf','applicants_certifications','ELIGIB.pdf','U1494T1687837196.pd
f','2023-06-27 03:39:56','2023-06-27 03:39:56',NULL,'1494',NULL,NULL),
(4721,1494,'PDS','applicants_certifications/
U1494T1687837209.pdf','applicants_certifications','PDS.pdf','U1494T1687837209.pdf',
'2023-06-27 03:40:09','2023-06-27 03:40:09',NULL,'1494',NULL,NULL),
(4722,1494,'SWT','applicants_certifications/
U1494T1687837286.pdf','applicants_certifications','CERT.pdf','U1494T1687837286.pdf'
,'2023-06-27 03:41:26','2023-06-27 03:41:26',NULL,'1494',NULL,NULL),
(4723,1363,'COE','applicants_certifications/
U1363T1687837309.tmp','applicants_certifications','inbound456302062.tmp','U1363T168
7837309.tmp','2023-06-27 03:41:49','2023-06-27 03:41:49',NULL,'1363',NULL,NULL),
(4724,1494,'COE','applicants_certifications/
U1494T1687837311.jpg','applicants_certifications','Image
(25).jpg','U1494T1687837311.jpg','2023-06-27 03:41:51','2023-06-27
03:41:51',NULL,'1494',NULL,NULL),(4725,1363,'SWT','applicants_certifications/
U1363T1687837634.tmp','applicants_certifications','inbound2024681735.tmp','U1363T16
87837634.tmp','2023-06-27 03:47:14','2023-06-27 03:47:14',NULL,'1363',NULL,NULL),
(4726,1363,'SWT','applicants_certifications/
U1363T1687837671.tmp','applicants_certifications','inbound235839420.tmp','U1363T168
7837671.tmp','2023-06-27 03:47:51','2023-06-27 03:47:51',NULL,'1363',NULL,NULL),
(4727,1363,'SWT','applicants_certifications/
U1363T1687837695.tmp','applicants_certifications','inbound1067951870.tmp','U1363T16
87837695.tmp','2023-06-27 03:48:15','2023-06-27 03:48:15',NULL,'1363',NULL,NULL),
(4728,1363,'SWT','applicants_certifications/
U1363T1687837715.tmp','applicants_certifications','inbound-
1650960660.tmp','U1363T1687837715.tmp','2023-06-27 03:48:35','2023-06-27
03:48:35',NULL,'1363',NULL,NULL),(4729,1363,'SWT','applicants_certifications/
U1363T1687837736.tmp','applicants_certifications','inbound-
30615444.tmp','U1363T1687837736.tmp','2023-06-27 03:48:56','2023-06-27
03:48:56',NULL,'1363',NULL,NULL),(4730,1363,'SWT','applicants_certifications/
U1363T1687837760.tmp','applicants_certifications','inbound515622673.tmp','U1363T168
7837760.tmp','2023-06-27 03:49:20','2023-06-27 03:49:20',NULL,'1363',NULL,NULL),
(4731,1363,'SWT','applicants_certifications/
U1363T1687837787.tmp','applicants_certifications','inbound162673291.tmp','U1363T168
7837787.tmp','2023-06-27 03:49:47','2023-06-27 03:49:47',NULL,'1363',NULL,NULL),
(4732,1363,'SWT','applicants_certifications/
U1363T1687837814.tmp','applicants_certifications','inbound-
1356246387.tmp','U1363T1687837814.tmp','2023-06-27 03:50:14','2023-06-27
03:50:14',NULL,'1363',NULL,NULL),(4733,1363,'SWT','applicants_certifications/
U1363T1687837842.tmp','applicants_certifications','inbound566511195.tmp','U1363T168
7837842.tmp','2023-06-27 03:50:42','2023-06-27 03:50:42',NULL,'1363',NULL,NULL),
(4734,1363,'SWT','applicants_certifications/
U1363T1687837865.tmp','applicants_certifications','inbound-
1235493225.tmp','U1363T1687837865.tmp','2023-06-27 03:51:05','2023-06-27
03:51:05',NULL,'1363',NULL,NULL),(4735,1363,'SWT','applicants_certifications/
U1363T1687837887.tmp','applicants_certifications','inbound1822518449.tmp','U1363T16
87837887.tmp','2023-06-27 03:51:27','2023-06-27 03:51:27',NULL,'1363',NULL,NULL),
(4736,1363,'COE','applicants_certifications/
U1363T1687838447.tmp','applicants_certifications','inbound-
1036929089.tmp','U1363T1687838447.tmp','2023-06-27 04:00:47','2023-06-27
04:00:47',NULL,'1363',NULL,NULL),(4737,1363,'SWT','applicants_certifications/
U1363T1687838746.tmp','applicants_certifications','inbound451076336.tmp','U1363T168
7838746.tmp','2023-06-27 04:05:46','2023-06-27 04:05:46',NULL,'1363',NULL,NULL),
(4743,1363,'PDS','applicants_certifications/
U1363T1687839959.tmp','applicants_certifications','inbound-
583344979.tmp','U1363T1687839959.tmp','2023-06-27 04:25:59','2023-06-27
04:25:59',NULL,'1363',NULL,NULL),(4744,1363,'PDS','applicants_certifications/
U1363T1687839987.tmp','applicants_certifications','inbound1667600325.tmp','U1363T16
87839987.tmp','2023-06-27 04:26:27','2023-06-27 04:26:27',NULL,'1363',NULL,NULL),
(4745,1475,'PDS','applicants_certifications/
U1475T1687839994.pdf','applicants_certifications','LMUP PDS PAGE 1 OF
4.pdf','U1475T1687839994.pdf','2023-06-27 04:26:34','2023-06-27
04:26:34',NULL,'1475',NULL,NULL),(4746,1363,'PDS','applicants_certifications/
U1363T1687840007.tmp','applicants_certifications','inbound-
620691292.tmp','U1363T1687840007.tmp','2023-06-27 04:26:47','2023-06-27
04:26:47',NULL,'1363',NULL,NULL),(4747,1475,'PDS','applicants_certifications/
U1475T1687840021.pdf','applicants_certifications','LMUP PDS PAGE 2 OF
4.pdf','U1475T1687840021.pdf','2023-06-27 04:27:01','2023-06-27
04:27:01',NULL,'1475',NULL,NULL),(4748,1363,'PDS','applicants_certifications/
U1363T1687840028.tmp','applicants_certifications','inbound987442617.tmp','U1363T168
7840028.tmp','2023-06-27 04:27:08','2023-06-27 04:27:08',NULL,'1363',NULL,NULL),
(4749,1475,'PDS','applicants_certifications/
U1475T1687840038.pdf','applicants_certifica
tions','LMUP PDS PAGE 3 OF 4.pdf','U1475T1687840038.pdf','2023-06-27
04:27:18','2023-06-27 04:27:18',NULL,'1475',NULL,NULL),
(4750,1475,'PDS','applicants_certifications/
U1475T1687840056.pdf','applicants_certifications','LMUP PDS PAGE 4 OF
4.pdf','U1475T1687840056.pdf','2023-06-27 04:27:36','2023-06-27
04:27:36',NULL,'1475',NULL,NULL),(4751,1363,'PDS','applicants_certifications/
U1363T1687840059.tmp','applicants_certifications','inbound1169304261.tmp','U1363T16
87840059.tmp','2023-06-27 04:27:39','2023-06-27 04:27:39',NULL,'1363',NULL,NULL),
(4752,987,'SWT','applicants_certifications/
U987T1687841455.pdf','applicants_certifications','CERT. OF
TRAININGS...pdf','U987T1687841455.pdf','2023-06-27 04:50:55','2023-06-27
04:50:55',NULL,'987',NULL,NULL),(4753,1454,'TOR','applicants_certifications/
U1454T1687847208.pdf','applicants_certifications','TOR-
Bangeng.pdf','U1454T1687847208.pdf','2023-06-27 06:26:48','2023-06-27
06:26:48',NULL,'1454',NULL,NULL),
(4754,1478,'ELIGIBILITY','applicants_certifications/
U1478T1687850847.pdf','applicants_certifications','Palberas,
Glyrel_Eligibility.pdf','U1478T1687850847.pdf','2023-06-27 07:27:27','2023-06-27
07:27:27',NULL,'1478',NULL,NULL),(4755,1478,'SWT','applicants_certifications/
U1478T1687851309.pdf','applicants_certifications','Palberas,
Glyrel_Certificates.pdf','U1478T1687851309.pdf','2023-06-27 07:35:09','2023-06-27
07:35:09',NULL,'1478',NULL,NULL),(4756,1454,'PDS','applicants_certifications/
U1454T1687852031.pdf','applicants_certifications','PDS-Bangeng, Yassi
Mae.pdf','U1454T1687852031.pdf','2023-06-27 07:47:11','2023-06-27
07:47:11',NULL,'1454',NULL,NULL),(4758,1368,'COE','applicants_certifications/
U1368T1687853167.pdf','applicants_certifications','IPCR.pdf','U1368T1687853167.pdf'
,'2023-06-27 08:06:07','2023-06-27 08:06:07',NULL,'1368',NULL,NULL),
(4761,1192,'TOR','applicants_certifications/
U1192T1687862885.jpg','applicants_certifications','CamScanner 06-27-2023
17.51_1.jpg','U1192T1687862885.jpg','2023-06-27 10:48:05','2023-06-27
10:48:05',NULL,'1192',NULL,NULL),(4762,1214,'PDS','applicants_certifications/
U1214T1687857829.pdf','applicants_certifications','PDS - Ester
Sison.pdf','U1214T1687857829.pdf','2023-06-27 09:23:49','2023-06-27
09:23:49',NULL,'1214',NULL,NULL),(4763,1214,'COE','applicants_certifications/
U1214T1687857845.pdf','applicants_certifications','COE - Ester
Sison.pdf','U1214T1687857845.pdf','2023-06-27 09:24:05','2023-06-27
09:24:05',NULL,'1214',NULL,NULL),(4764,1214,'SWT','applicants_certifications/
U1214T1687857879.pdf','applicants_certifications','Certificates -
Ester.pdf','U1214T1687857879.pdf','2023-06-27 09:24:39','2023-06-27
09:24:39',NULL,'1214',NULL,NULL),(4769,1192,'TOR','applicants_certifications/
U1192T1687862925.jpg','applicants_certifications','CamScanner 06-27-2023
17.51_2.jpg','U1192T1687862925.jpg','2023-06-27 10:48:45','2023-06-27
10:48:45',NULL,'1192',NULL,NULL),(4770,1192,'SWT','applicants_certifications/
U1192T1687862968.jpg','applicants_certifications','CamScanner 06-27-2023
17.51_3.jpg','U1192T1687862968.jpg','2023-06-27 10:49:28','2023-06-27
10:49:28',NULL,'1192',NULL,NULL),(4771,1192,'SWT','applicants_certifications/
U1192T1687863000.jpg','applicants_certifications','CamScanner 06-27-2023
17.51_4.jpg','U1192T1687863000.jpg','2023-06-27 10:50:00','2023-06-27
10:50:00',NULL,'1192',NULL,NULL),(4772,1192,'SWT','applicants_certifications/
U1192T1687863030.jpg','applicants_certifications','CamScanner 06-27-2023
17.51_5.jpg','U1192T1687863030.jpg','2023-06-27 10:50:30','2023-06-27
10:50:30',NULL,'1192',NULL,NULL),(4773,1192,'SWT','applicants_certifications/
U1192T1687863056.jpg','applicants_certifications','CamScanner 06-27-2023
17.51_6.jpg','U1192T1687863056.jpg','2023-06-27 10:50:56','2023-06-27
10:50:56',NULL,'1192',NULL,NULL),(4774,1192,'SWT','applicants_certifications/
U1192T1687863084.jpg','applicants_certifications','CamScanner 06-27-2023
17.51_7.jpg','U1192T1687863084.jpg','2023-06-27 10:51:24','2023-06-27
10:51:24',NULL,'1192',NULL,NULL),(4775,1192,'SWT','applicants_certifications/
U1192T1687863105.jpg','applicants_certifications','CamScanner 06-27-2023
17.51_8.jpg','U1192T1687863105.jpg','2023-06-27 10:51:45','2023-06-27
10:51:45',NULL,'1192',NULL,NULL),(4776,1192,'SWT','applicants_certifications/
U1192T1687863132.jpg','applicants_certifications','CamScanner 06-27-2023
17.51_9.jpg','U1192T1687863132.jpg','2023-06-27 10:52:12','2023-06-27
10:52:12',NULL,'1192',NULL,NULL),(4777,1192,'SWT','applicants_certifications/
U1192T1687863157.jpg','applicants_certifications','CamScanner 06-27-2023
17.51_10.jpg','U1192T1687863157.jpg','2023-06-27 10:52:37','2023-06-27
10:52:37',NULL,'1192',NULL,NULL),(4778,1192,'SWT','applicants_certifications/
U1192T1687863181.jpg','applicants_certifications','CamScanner 06-27-2023
17.51_11.jpg','U1192T1687863181.jpg','2023-06-27 10:53:01','2023-06-27
10:53:01',NULL,'1192',NULL,NULL),(4779,1192,'SWT','applicants_certifications/
U1192T1687863229.jpg','applicants_certifications','CamScanner 06-27-2023
17.51_13.jpg','U1192T1687863229.jpg','2023-06-27 10:53:49','2023-06-27
10:53:49',NULL,'1192',NULL,NULL),(4780,1192,'SWT','applicants_certifications/
U1192T1687863283.jpg','applicants_certifications','CamScanner 06-27-2023
17.51_15.jpg','U1192T1687863283.jpg','2023-06-27 10:54:43','2023-06-27
10:54:43',NULL,'1192',NULL,NULL),(4781,1192,'SWT','applicants_certifications/
U1192T1687863309.jpg','applicants_certifications','CamScanner 06-27-2023
17.51_16.jpg','U1192T1687863309.jpg','2023-06-27 10:55:09','2023-06-27
10:55:09',NULL,'1192',NULL,NULL),
(4782,1192,'ELIGIBILITY','applicants_certifications/
U1192T1687863334.jpg','applicants_certifications','CamScanner 06-27-2023
17.51_21.jpg','U1192T1687863334.jpg','2023-06-27 10:55:34','2023-06-27
10:55:34',NULL,'1192',NULL,NULL),(4783,1192,'PDS','applicants_certifications/
U1192T1687863361.jpg','applicants_certifications','CamScanner 06-27-2023
17.51_17.jpg','U1192T1687863361.jpg','2023-06-27 10:56:01','2023-06-27
10:56:01',NULL,'1192',NULL,NULL),(4784,1501,'PDS','applicants_certifications/
U1501T1687863381.xlsx','applicants_certifications','PDS_Jirah
Jamandre.xlsx','U1501T1687863381.xlsx','2023-06-27 10:56:21','2023-06-27
10:56:21',NULL,'1501',NULL,NULL),(4785,1192,'PDS','applicants_certifications/
U1192T1687863382.jpg','applicants_certifications','CamScanner 06-27-2023
17.51_18.jpg','U1192T1687863382.jpg','2023-06-27 10:56:22','2023-06-27
10:56:22',NULL,'1192',NULL,NULL),(4786,1192,'PDS','applicants_certifications/
U1192T1687863403.jpg','applicants_certifications','CamScanner 06-27-2023
17.51_19.jpg','U1192T1687863403.jpg','2023-06-27 10:56:43','2023-06-27
10:56:43',NULL,'1192',NULL,NULL),(4787,1192,'PDS','applicants_certifications/
U1192T1687863421.jpg','applicants_certifications','CamScanner 06-27-2023
17.51_20.jpg','U1192T1687863421.jpg','2023-06-27 10:57:01','2023-06-27
10:57:01',NULL,'1192',NULL,NULL),
(4788,1501,'ELIGIBILITY','applicants_certifications/
U1501T1687863555.jpg','applicants_certifications','CSC.jpg','U1501T1687863555.jpg',
'2023-06-27 10:59:15','2023-06-27 10:59:15',NULL,'1501',NULL,NULL),
(4789,1501,'COE','applicants_certifications/
U1501T1687863604.pdf','applicants_certifications','Cert-of-
Employment.pdf','U1501T1687863604.pdf','2023-06-27 11:00:04','2023-06-27
11:00:04',NULL,'1501',NULL,NULL),(4790,903,'PDS','applicants_certifications/
U903T1687863723.jpg','applicants_certifications','inbound6820953486141237720.jpg','
U903T1687863723.jpg','2023-06-27 11:02:03','2023-06-27
11:02:03',NULL,'903',NULL,NULL),(4792,1501,'TOR','applicants_certifications/
U1501T1687863861.pdf','applicants_certifications','TOR_Undergrad.pdf','U1501T168786
3861.pdf','2023-06-27 11:04:21','2023-06-27 11:04:21',NULL,'1501',NULL,NULL),
(4793,1501,'COE','applicants_certifications/
U1501T1687864017.jpg','applicants_certifications','COE
IFSU.jpg','U1501T1687864017.jpg','2023-06-27 11:06:57','2023-06-27
11:06:57',NULL,'1501',NULL,NULL),(4794,1501,'SWT','applicants_certifications/
U1501T1687864470.pdf','applicants_certifications','DTI R2-
Cagayan.pdf','U1501T1687864470.pdf','2023-06-27 11:14:30','2023-06-27
11:14:30',NULL,'1501',NULL,NULL),(4795,1501,'SWT','applicants_certifications/
U1501T1687864579.jpg','applicants_certifications','img20230426_14323901.jpg','U1501
T1687864579.jpg','2023-06-27 11:16:19','2023-06-27
11:16:19',NULL,'1501',NULL,NULL),(4796,1501,'SWT','applicants_certifications/
U1501T1687864591.jpg','applicants_certifications','img20230428_16102025.jpg','U1501
T1687864591.jpg','2023-06-27 11:16:31','2023-06-27
11:16:31',NULL,'1501',NULL,NULL),(4798,1501,'SWT','applicants_certifications/
U1501T1687864647.jpg','applicants_certifications','Sta
teresita.jpg','U1501T1687864647.jpg','2023-06-27 11:17:27','2023-06-27
11:17:27',NULL,'1501',NULL,NULL),(4799,1501,'SWT','applicants_certifications/
U1501T1687864686.pdf','applicants_certifications','Certification.pdf','U1501T168786
4686.pdf','2023-06-27 11:18:06','2023-06-27 11:18:06',NULL,'1501',NULL,NULL),
(4800,1501,'SWT','applicants_certifications/
U1501T1687864709.pdf','applicants_certifications','OATH.pdf','U1501T1687864709.pdf'
,'2023-06-27 11:18:29','2023-06-27 11:18:29',NULL,'1501',NULL,NULL),
(4801,1501,'SWT','applicants_certifications/
U1501T1687865095.pdf','applicants_certifications','Jirah
Mediation.pdf','U1501T1687865095.pdf','2023-06-27 11:24:55','2023-06-27
11:24:55',NULL,'1501',NULL,NULL),(4802,1423,'PDS','applicants_certifications/
U1423T1687868221.pdf','applicants_certifications','pds.pdf','U1423T1687868221.pdf',
'2023-06-27 12:17:01','2023-06-27 12:17:01',NULL,'1423',NULL,NULL),
(4803,1502,'TOR','applicants_certifications/
U1502T1687870466.pdf','applicants_certifications','pds.pdf','U1502T1687870466.pdf',
'2023-06-27 12:54:26','2023-06-27 12:54:26',NULL,'1502',NULL,NULL),
(4806,1493,'ELIGIBILITY','applicants_certifications/
U1493T1687902432.jpg','applicants_certifications','Document
45_4.jpg','U1493T1687902432.jpg','2023-06-27 21:47:12','2023-06-27
21:47:12',NULL,'1493',NULL,NULL),(4810,1502,'COE','applicants_certifications/
U1502T1687908104.pdf','applicants_certifications'
,'certificate of employment.pdf','U1502T1687908104.pdf','2023-06-27
23:21:44','2023-06-27 23:21:44',NULL,'1502',NULL,NULL),
(4811,1502,'ELIGIBILITY','applicants_certifications/
U1502T1687908146.pdf','applicants_certifications','certificate of
iligibility.pdf','U1502T1687908146.pdf','2023-06-27 23:22:26','2023-06-27
23:22:26',NULL,'1502',NULL,NULL),(4815,1504,'TOR','applicants_certifications/
U1504T1687915587.pdf','applicants_certifications','inbound3585789902226753136.pdf',
'U1504T1687915587.pdf','2023-06-28 01:26:27','2023-06-28
01:26:27',NULL,'1504',NULL,NULL),
(4816,1504,'ELIGIBILITY','applicants_certifications/
U1504T1687915646.pdf','applicants_certifications','inbound420413568533966442.pdf','
U1504T1687915646.pdf','2023-06-28 01:27:26','2023-06-28
01:27:26',NULL,'1504',NULL,NULL),(4817,1505,'COE','applicants_certifications/
U1505T1687923063.pdf','applicants_certifications','COE
Dswd.pdf','U1505T1687923063.pdf','2023-06-28 03:31:03','2023-06-28
03:31:03',NULL,'1505',NULL,NULL),(4818,1505,'COE','applicants_certifications/
U1505T1687923082.pdf','applicants_certifications','COE
IFSU.pdf','U1505T1687923082.pdf','2023-06-28 03:31:22','2023-06-28
03:31:22',NULL,'1505',NULL,NULL),(4819,1505,'COE','applicants_certifications/
U1505T1687923101.pdf','applicants_certifications','COE
PLGU.pdf','U1505T1687923101.pdf','2023-06-28 03:31:41','2023-06-28
03:31:41',NULL,'1505',NULL,NULL),(4820,1505,'PDS','applicants_certifications/
U1505T1687923144.pdf','applicants_certifications','PDS.pdf','U1505T1687923144.pdf',
'2023-06-28 03:32:24','2023-06-28 03:32:24',NULL,'1505',NULL,NULL),
(4821,1505,'SWT','applicants_certifications/
U1505T1687923195.pdf','applicants_certifications','SWT
certificate(1).pdf','U1505T1687923195.pdf','2023-06-28 03:33:15','2023-06-28
03:33:15',NULL,'1505',NULL,NULL),(4822,1505,'SWT','applicants_certifications/
U1505T1687923228.pdf','applicants_certifications','SWT
certificate(2).pdf','U1505T1687923228.pdf','2023-06-28 03:33:48','2023-06-28
03:33:48',NULL,'1505',NULL,NULL),(4825,1505,'SWT','applicants_certifications/
U1505T1687923278.pdf','applicants_certifications','SWT
certificate.pdf','U1505T1687923278.pdf','2023-06-28 03:34:38','2023-06-28
03:34:38',NULL,'1505',NULL,NULL),(4826,1505,'TOR','applicants_certifications/
U1505T1687923596.pdf','applicants_certifications','TOR
(1).pdf','U1505T1687923596.pdf','2023-06-28 03:39:56','2023-06-28
03:39:56',NULL,'1505',NULL,NULL),
(4827,1505,'ELIGIBILITY','applicants_certifications/
U1505T1687923619.pdf','applicants_certifications','PRC
rating.pdf','U1505T1687923619.pdf','2023-06-28 03:40:19','2023-06-28
03:40:19',NULL,'1505',NULL,NULL),(4828,1422,'PDS','applicants_certifications/
U1422T1687925113.docx','applicants_certifications','gen new
resume.docx','U1422T1687925113.docx','2023-06-28 04:05:13','2023-06-28
04:05:13',NULL,'1422',NULL,NULL),(4829,1223,'TOR','applicants_certifications/
U1223T1687926638.pdf','applicants_certifications','inbound2558037893847821285.pdf',
'U1223T1687926638.pdf','2023-06-28 04:30:38','2023-06-28
04:30:38',NULL,'1223',NULL,NULL),(4830,834,'TOR','applicants_certifications/
U834T1687926886.jpg','applicants_certifications','TOR
3.jpg','U834T1687926886.jpg','2023-06-28 04:34:46','2023-06-28
04:34:46',NULL,'834',NULL,NULL),(4832,834,'TOR','applicants_certifications/
U834T1687927040.jpg','applicants_certifications','TOR
2.jpg','U834T1687927040.jpg','2023-06-28 04:37:20','2023-06-28
04:37:20',NULL,'834',NULL,NULL),(4833,834,'TOR','applicants_certifications/
U834T1687927161.jpg','applicants_certifications','TOR
1.jpg','U834T1687927161.jpg','2023-06-28 04:39:21','2023-06-28
04:39:21',NULL,'834',NULL,NULL),(4834,834,'COE','applicants_certifications/
U834T1687927216.jpg','applicants_certifications','CERTIFICATE OF EMPLOYMENT
1.jpg','U834T1687927216.jpg','2023-06-28 04:40:16','2023-06-28
04:40:16',NULL,'834',NULL,NULL),(4835,834,'COE','applicants_certifications/
U834T1687927307.jpg','applicants_certifications','CERTIFICATE OF EMPLOYMENT
2.jpg','U834T1687927307.jpg','2023-06-28 04:41:47','2023-06-28
04:41:47',NULL,'834',NULL,NULL),
(4836,834,'ELIGIBILITY','applicants_certifications/
U834T1687927724.jpg','applicants_certifications','License.jpg','U834T1687927724.jpg
','2023-06-28 04:48:44','2023-06-28 04:48:44',NULL,'834',NULL,NULL),
(4837,834,'PDS','applicants_certifications/
U834T1687927774.jpg','applicants_certifications','PDS
1.jpg','U834T1687927774.jpg','2023-06-28 04:49:34','2023-06-28
04:49:34',NULL,'834',NULL,NULL),(4838,834,'PDS','applicants_certifications/
U834T1687927828.jpg','applicants_certifications','PDS
2.jpg','U834T1687927828.jpg','2023-06-28 04:50:28','2023-06-28
04:50:28',NULL,'834',NULL,NULL),(4839,834,'PDS','applicants_certifications/
U834T1687927861.jpg','applicants_certifications','PDS
3.jpg','U834T1687927861.jpg','2023-06-28 04:51:01','2023-06-28
04:51:01',NULL,'834',NULL,NULL),(4840,834,'PDS','applicants_certifications/
U834T1687927891.jpg','applicants_certifications','PDS
4.jpg','U834T1687927891.jpg','2023-06-28 04:51:31','2023-06-28
04:51:31',NULL,'834',NULL,NULL),(4841,1465,'TOR','applicants_certifications/
U1465T1687929341.pdf','applicants_certifications','inbound5112919043033817312.pdf',
'U1465T1687929341.pdf','2023-06-28 05:15:41','2023-06-28
05:15:41',NULL,'1465',NULL,NULL),(4844,1465,'PDS','applicants_certifications/
U1465T1687929569.pdf','applicants_certifications','inbound8696807586602467547.pdf',
'U1465T1687929569.pdf','2023-06-28 05:19:29','2023-06-28
05:19:29',NULL,'1465',NULL,NULL),(4847,1509,'TOR','applicants_certifications/
U1509T1687931132.pdf','applicants_certifications','DANIELS_TOR_Aldersgate.pdf','U15
09T1687931132.pdf','2023-06-28 05:45:32','2023-06-28
05:45:32',NULL,'1509',NULL,NULL),(4848,1509,'TOR','applicants_certifications/
U1509T1687931142.pdf','applicants_certifications','DANIELS_TOR_IFSU.pdf','U1509T168
7931142.pdf','2023-06-28 05:45:42','2023-06-28 05:45:42',NULL,'1509',NULL,NULL),
(4849,1509,'TOR','applicants_certifications/
U1509T1687931151.pdf','applicants_certifications','DANIELS_TOR_SLU.pdf','U1509T1687
931151.pdf','2023-06-28 05:45:51','2023-06-28 05:45:51',NULL,'1509',NULL,NULL),
(4850,1509,'TOR','applicants_certifications/
U1509T1687931159.pdf','applicants_certifications','DANIELS_UNITS_SMU.pdf','U1509T16
87931159.pdf','2023-06-28 05:45:59','2023-06-28 05:45:59',NULL,'1509',NULL,NULL),
(4851,1509,'COE','applicants_certifications/
U1509T1687931168.pdf','applicants_certifications','DANIELS_COE.pdf','U1509T16879311
68.pdf','2023-06-28 05:46:08','2023-06-28 05:46:08',NULL,'1509',NULL,NULL),
(4852,1509,'ELIGIBILITY','applicants_certifications/
U1509T1687931185.pdf','applicants_certifications','DANIELS_CSC.pdf','U1509T16879311
85.pdf','2023-06-28 05:46:25','2023-06-28 05:46:25',NULL,'1509',NULL,NULL),
(4853,1509,'PDS','applicants_certifications/
U1509T1687931194.pdf','applicants_certifications','DANIELS_PDS.pdf','U1509T16879311
94.pdf','2023-06-28 05:46:34','2023-06-28 05:46:34',NULL,'1509',NULL,NULL),
(4854,1509,'SWT','applicants_certifications/
U1509T1687932133.pdf','applicants_certifications','DANIELS_CERTIFICATES
2016.pdf','U1509T1687932133.pdf','2023-06-28 06:02:13','2023-06-28
06:02:13',NULL,'1509',NULL,NULL),(4855,1509,'SWT','applicants_certifications/
U1509T1687932143.pdf','applicants_certifications','DANIELS_CERTIFICATES
2017.pdf','U1509T1687932143.pdf','2023-06-28 06:02:23','2023-06-28
06:02:23',NULL,'1509',NULL,NULL),(4856,1509,'SWT','applicants_certifications/
U1509T1687932154.pdf','applicants_certifications','DANIELS_CERTIFICATES
2018.pdf','U1509T1687932154.pdf','2023-06-28 06:02:34','2023-06-28
06:02:34',NULL,'1509',NULL,NULL),(4857,1509,'SWT','applicants_certifications/
U1509T1687932164.pdf','applicants_certifications','DANIELS_CERTIFICATES
2019.pdf','U1509T1687932164.pdf','2023-06-28 06:02:44','2023-06-28
06:02:44',NULL,'1509',NULL,NULL),(4858,1509,'SWT','applicants_certifications/
U1509T1687932173.pdf','applicants_certifications','DANIELS_CERTIFICATES
2020.pdf','U1509T1687932173.pdf','2023-06-28 06:02:53','2023-06-28
06:02:53',NULL,'1509',NULL,NULL),(4859,1509,'SWT','applicants_certifications/
U1509T1687932199.pdf','applicants_certifications','DANIELS_CERTIFICATES
2022.pdf','U1509T1687932199.pdf','2023-06-28 06:03:19','2023-06-28
06:03:19',NULL,'1509',NULL,NULL),(4860,1509,'SWT','applicants_certifications/
U1509T1687932209.pdf','applicants_certifications','DANIELS_CERTIFICATES
2023.pdf','U1509T1687932209.pdf','2023-06-28 06:03:29','2023-06-28
06:03:29',NULL,'1509',NULL,NULL),(4861,1509,'SWT','applicants_certifications/
U1509T1687932353.pdf','applicants_certifications','DANIELS_CERTIFICATES 2021
(1).pdf','U1509T1687932353.pdf','2023-06-28 06:05:53','2023-06-28
06:05:53',NULL,'1509',NULL,NULL),(4862,1511,'TOR','applicants_certifications/
U1511T1687932536.pdf','applicants_certifications','4. Transcript of Records &
Diploma - Lingayo, Brandon.pdf','U1511T1687932536.pdf','2023-06-28 06:08:56','2023-
06-28 06:08:56',NULL,'1511',NULL,NULL),
(4863,1511,'COE','applicants_certifications/
U1511T1687932558.pdf','applicants_certifications','5. CERTIFICATE OF EMPLOYMENTS -
Brandon Lingayo.pdf','U1511T1687932558.pdf','2023-06-28 06:09:18','2023-06-28
06:09:18',NULL,'1511',NULL,NULL),
(4864,1511,'ELIGIBILITY','applicants_certifications/
U1511T1687932742.pdf','applicants_certifications','3. CSC ELIGIBILITY - Brandon
Lingayo.pdf','U1511T1687932742.pdf','2023-06-28 06:12:22','2023-06-28
06:12:22',NULL,'1511',NULL,NULL),(4865,1511,'PDS','applicants_certifications/
U1511T1687932766.pdf','applicants_certifications','2. CS Form No. 212 -
BrandonLingayo.pdf','U1511T1687932766.pdf','2023-06-28 06:12:46','2023-06-28
06:12:46',NULL,'1511',NULL,NULL),(4866,1512,'TOR','applicants_certifications/
U1512T1687937248.pdf','applicants_certifications','Immoliap,Shalou(TOR).pdf','U1512
T1687937248.pdf','2023-06-28 07:27:28','2023-06-28
07:27:28',NULL,'1512',NULL,NULL),(4867,1512,'COE','applicants_certifications/
U1512T1687937936.pdf','applicants_certifications','Immoliap,Shalou
(COE).pdf','U1512T1687937936.pdf','2023-06-28
07:38:56','2023-06-28 07:38:56',NULL,'1512',NULL,NULL),
(4868,1512,'PDS','applicants_certifications/
U1512T1687938008.pdf','applicants_certifications','Immoliap,Shalou(PDS).pdf','U1512
T1687938008.pdf','2023-06-28 07:40:08','2023-06-28
07:40:08',NULL,'1512',NULL,NULL),(4869,1512,'PDS','applicants_certifications/
U1512T1687938026.pdf','applicants_certifications','Immoliap,Shalou(Eligibility).pdf
','U1512T1687938026.pdf','2023-06-28 07:40:26','2023-06-28
07:40:26',NULL,'1512',NULL,NULL),(4870,1440,'TOR','applicants_certifications/
U1440T1687938255.pdf','applicants_certifications','TOR 1-
2.pdf','U1440T1687938255.pdf','2023-06-28 07:44:15','2023-06-28
07:44:15',NULL,'1440',NULL,NULL),(4871,1440,'TOR','applicants_certifications/
U1440T1687938359.pdf','applicants_certifications','TOR 2-
2.pdf','U1440T1687938359.pdf','2023-06-28 07:45:59','2023-06-28
07:45:59',NULL,'1440',NULL,NULL),(4872,1440,'COE','applicants_certifications/
U1440T1687938602.pdf','applicants_certifications','cert of employment LGU
Banaue .pdf','U1440T1687938602.pdf','2023-06-28 07:50:02','2023-06-28
07:50:02',NULL,'1440',NULL,NULL),(4873,1440,'COE','applicants_certifications/
U1440T1687938671.pdf','applicants_certifications','service
record.pdf','U1440T1687938671.pdf','2023-06-28 07:51:11','2023-06-28
07:51:11',NULL,'1440',NULL,NULL),(4874,1440,'SWT','applicants_certifications/
U1440T1687938701.pdf','applicants_certifications','certificate
1.pdf','U1440T1687938701.pdf','2023-06-28 07:51:41','2023-06-28
07:51:41',NULL,'1440',NULL,NULL),(4875,1440,'SWT','applicants_certifications/
U1440T1687938734.pdf','applicants_certifications','certificate
2.pdf','U1440T1687938734.pdf','2023-06-28 07:52:14','2023-06-28
07:52:14',NULL,'1440',NULL,NULL),(4876,1440,'SWT','applicants_certifications/
U1440T1687938764.pdf','applicants_certifications','certificate
3.pdf','U1440T1687938764.pdf','2023-06-28 07:52:44','2023-06-28
07:52:44',NULL,'1440',NULL,NULL),(4877,1440,'SWT','applicants_certifications/
U1440T1687938788.pdf','applicants_certifications','certificate
4.pdf','U1440T1687938788.pdf','2023-06-28 07:53:08','2023-06-28
07:53:08',NULL,'1440',NULL,NULL),(4878,1440,'SWT','applicants_certifications/
U1440T1687938821.pdf','applicants_certifications','certificate
5.pdf','U1440T1687938821.pdf','2023-06-28 07:53:41','2023-06-28
07:53:41',NULL,'1440',NULL,NULL),(4879,1440,'SWT','applicants_certifications/
U1440T1687938849.pdf','applicants_certifications','certificate
6.pdf','U1440T1687938849.pdf','2023-06-28 07:54:09','2023-06-28
07:54:09',NULL,'1440',NULL,NULL),(4880,1440,'SWT','applicants_certifications/
U1440T1687938876.pdf','applicants_certifications','certificate
7.pdf','U1440T1687938876.pdf','2023-06-28 07:54:36','2023-06-28
07:54:36',NULL,'1440',NULL,NULL),(4881,1440,'SWT','applicants_certifications/
U1440T1687938900.pdf','applicants_certifications','certificate
8.pdf','U1440T1687938900.pdf','2023-06-28 07:55:00','2023-06-28
07:55:00',NULL,'1440',NULL,NULL),(4882,1440,'SWT','applicants_certifications/
U1440T1687938924.pdf','applicants_certifications','certificate
9.pdf','U1440T1687938924.pdf','2023-06-28 07:55:24','2023-06-28
07:55:24',NULL,'1440',NULL,NULL),(4883,1440,'SWT','applicants_certifications/
U1440T1687938946.pdf','applicants_certifications','certificate
10.pdf','U1440T1687938946.pdf','2023-06-28 07:55:46','2023-06-28
07:55:46',NULL,'1440',NULL,NULL),(4884,1440,'SWT','applicants_certifications/
U1440T1687938966.pdf','applicants_certifications','certificate
11.pdf','U1440T1687938966.pdf','2023-06-28 07:56:06','2023-06-28
07:56:06',NULL,'1440',NULL,NULL),(4885,1440,'SWT','applicants_certifications/
U1440T1687938994.pdf','applicants_certifications','certificate
12.pdf','U1440T1687938994.pdf','2023-06-28 07:56:34','2023-06-28
07:56:34',NULL,'1440',NULL,NULL),(4886,1440,'SWT','applicants_certifications/
U1440T1687939019.pdf','applicants_certifications','certificate
13.pdf','U1440T1687939019.pdf','2023-06-28 07:56:59','2023-06-28
07:56:59',NULL,'1440',NULL,NULL),
(4887,1440,'ELIGIBILITY','applicants_certifications/
U1440T1687939053.pdf','applicants_certifications','CSC
eligibility .pdf','U1440T1687939053.pdf','2023-06-28 07:57:33','2023-06-28
07:57:33',NULL,'1440',NULL,NULL),(4888,1440,'PDS','applicants_certifications/
U1440T1687939080.pdf','applicants_certifications','PDS 1-
4.pdf','U1440T1687939080.pdf','2023-06-28 07:58:00','2023-06-28
07:58:00',NULL,'1440',NULL,NULL),(4889,1440,'PDS','applicants_certifications/
U1440T1687939102.pdf','applicants_certifications','PDS 2-
4.pdf','U1440T1687939102.pdf','2023-06-28 07:58:22','2023-06-28
07:58:22',NULL,'1440',NULL,NULL),(4890,1440,'PDS','applicants_certifications/
U1440T1687939129.pdf','applicants_certifications','PDS 3-
4.pdf','U1440T1687939129.pdf','2023-06-28 07:58:49','2023-06-28
07:58:49',NULL,'1440',NULL,NULL),(4891,1440,'PDS','applicants_certifications/
U1440T1687939159.pdf','applicants_certifications','PDS 4-
4.pdf','U1440T1687939159.pdf','2023-06-28 07:59:19','2023-06-28
07:59:19',NULL,'1440',NULL,NULL),(4892,1440,'PDS','applicants_certifications/
U1440T1687939191.pdf','applicants_certifications','work experience 1-
2.pdf','U1440T1687939191.pdf','2023-06-28 07:59:51','2023-06-28
07:59:51',NULL,'1440',NULL,NULL),(4893,1440,'PDS','applicants_certifications/
U1440T1687939219.pdf','applicants_certifications','work experience 2-
2.pdf','U1440T1687939219.pdf','2023-06-28 08:00:19','2023-06-28
08:00:19',NULL,'1440',NULL,NULL),
(4894,1384,'ELIGIBILITY','applicants_certifications/
U1384T1687950368.docx','applicants_certifications','PRC
LICENSE.docx','U1384T1687950368.docx','2023-06-28 11:06:08','2023-06-28
11:06:08',NULL,'1384',NULL,NULL),(4895,1384,'SWT','applicants_certifications/
U1384T1687950394.docx','applicants_certifications','CERTIFICATES.docx','U1384T16879
50394.docx','2023-06-28 11:06:34','2023-06-28 11:06:34',NULL,'1384',NULL,NULL),
(4896,1384,'PDS','applicants_certifications/
U1384T1687950447.pdf','applicants_certifications','Medico-Personal Data
Sheet.pdf','U1384T1687950447.pdf','2023-06-28 11:07:27','2023-06-28
11:07:27',NULL,'1384',NULL,NULL),(4897,1445,'COE','applicants_certifications/
U1445T1687950993.jpg','applicants_certifications','20230628_192223.jpg','U1445T1687
950993.jpg','2023-06-28 11:16:33','2023-06-28 11:16:33',NULL,'1445',NULL,NULL),
(4898,1384,'TOR','applicants_certifications/
U1384T1687951059.docx','applicants_certifications','TRANSCRIPT OF RECORDS
2.docx','U1384T1687951059.docx','2023-06-28 11:17:39','2023-06-28
11:17:39',NULL,'1384',NULL,NULL),
(4899,1384,'ELIGIBILITY','applicants_certifications/
U1384T1687951189.png','applicants_certifications','Screenshot 2023-06-28
191927.png','U1384T1687951189.png','2023-06-28 11:19:49','2023-06-28
11:19:49',NULL,'1384',NULL,NULL),(4900,1445,'SWT','applicants_certifications/
U1445T1687951278.jpg','applicants_certifications','20230628_192712.jpg','U1445T1687
951278.jpg','2023-06-28 11:21:18','2023-06-28 11:21:18',NULL,'1445',NULL,NULL),
(4901,1445,'SWT','applicants_certifications/
U1445T1687951329.jpg','applicants_certifications','20230628_192756.jpg','U1445T1687
951329.jpg','2023-06-28 11:22:09','2023-06-28 11:22:09',NULL,'1445',NULL,NULL),
(4902,1465,'SWT','applicants_certifications/
U1465T1687952581.pdf','applicants_certifications','inbound2841224494300399838.pdf',
'U1465T1687952581.pdf','2023-06-28 11:43:01','2023-06-28
11:43:01',NULL,'1465',NULL,NULL),(4903,1108,'SWT','applicants_certifications/
U1108T1687956031.docx','applicants_certifications','inbound2790541167535535085.docx
','U1108T1687956031.docx','2023-06-28 12:40:31','2023-06-28
12:40:31',NULL,'1108',NULL,NULL),(4904,1108,'TOR','applicants_certifications/
U1108T1687956260.pdf','applicants_certifications','inbound6662794123294610700.pdf',
'U1108T1687956260.pdf','2023-06-28 12:44:20','2023-06-28
12:44:20',NULL,'1108',NULL,NULL),(4905,1516,'TOR','applicants_certifications/
U1516T1687956930.pdf','applicants_certifications','inbound5412664285775400838.pdf',
'U1516T1687956930.pdf','2023-06-28 12:55:30','2023-06-28
12:55:30',NULL,'1516',NULL,NULL),(4906,1516,'SWT','applicants_certifications/
U1516T1687957008.pdf','applicants_certifications','inbound1937550243024205060.pdf',
'U1516T1687957008.pdf','2023-06-28 12:56:48','2023-06-28
12:56:48',NULL,'1516',NULL,NULL),(4907,1516,'PDS','applicants_certifications/
U1516T1687957183.pdf','applicants_certifications','inbound8948458678018699265.pdf',
'U1516T1687957183.pdf','2023-06-28 12:59:43','2023-06-28
12:59:43',NULL,'1516',NULL,NULL),(4910,1514,'COE','applicants_certifications/
U1514T1687960551.pdf','applicants_certifications','CERTIFICATE OF EMPLOYMENT-
DSWD.pdf','U1514T1687960551.pdf','2023-06-28 13:55:51','2023-06-28
13:55:51',NULL,'1514',NULL,NULL),(4911,1514,'TOR','applicants_certifications/
U1514T1687960591.pdf','applicants_certifications','DIPLOMA.pdf','U1514T1687960591.p
df','2023-06-28 13:56:31','2023-06-28 13:56:31',NULL,'1514',NULL,NULL),
(4912,1513,'TOR','applicants_certifications/
U1513T1687960602.pdf','applicants_certifications','TOR.pdf','U1513T1687960602.pdf',
'2023-06-28 13:56:42','2023-06-28 13:56:42',NULL,'1513',NULL,NULL),
(4913,1513,'PDS','applicants_certifications/
U1513T1687960644.pdf','applicants_certifications','PDS.pdf','U1513T1687960644.pdf',
'2023-06-28 13:57:24','2023-06-28 13:57:24',NULL,'1513',NULL,NULL),
(4914,1514,'TOR','applicants_certifications/
U1514T1687960705.pdf','applicants_certifications','TRANSCRIPT OF
RECORDS.pdf','U1514T1687960705.pdf','2023-06-28 13:58:25','2023-06-28
13:58:25',NULL,'1514',NULL,NULL),(4915,1514,'COE','applicants_certifications/
U1514T1687960726.pdf','applicants_certifications','CERTIFICATE OF EMPLOYMENT-
DA.pdf','U1514T1687960726.pdf','2023-06-28 13:58:46','2023-06-28
13:58:46',NULL,'1514',NULL,NULL),(4916,1514,'COE','applicants_certifications/
U1514T1687960744.pdf','applicants_certifications','CERTIFICATE OF EMPLOYMENT-
IFSU.pdf','U1514T1687960744.pdf','2023-06-28 13:59:04','2023-06-28
13:59:04',NULL,'1514',NULL,NULL),(4917,1514,'COE','applicants_certifications/
U1514T1687960769.pdf','applicants_certifications','CERTIFICATE
OF EMPLOYMENT TESDA.pdf','U1514T1687960769.pdf','2023-06-28 13:59:29','2023-06-28
13:59:29',NULL,'1514',NULL,NULL),(4918,1514,'COE','applicants_certifications/
U1514T1687960793.pdf','applicants_certifications','CERTIFICATE OF EMPLOYMENT
LGU.pdf','U1514T1687960793.pdf','2023-06-28 13:59:53','2023-06-28
13:59:53',NULL,'1514',NULL,NULL),(4919,1514,'COE','applicants_certifications/
U1514T1687960808.pdf','applicants_certifications','CERTIFICATE OF EMPLOYMENT CDR
KING.pdf','U1514T1687960808.pdf','2023-06-28 14:00:08','2023-06-28
14:00:08',NULL,'1514',NULL,NULL),(4920,1514,'SWT','applicants_certifications/
U1514T1687960839.pdf','applicants_certifications','AGIA-PHILIPPINE
BUDGETING.pdf','U1514T1687960839.pdf','2023-06-28 14:00:39','2023-06-28
14:00:39',NULL,'1514',NULL,NULL),(4921,1514,'SWT','applicants_certifications/
U1514T1687960863.pdf','applicants_certifications','BFP- FIRST AID WITH BASIC LIFE
SUPPORT.pdf','U1514T1687960863.pdf','2023-06-28 14:01:03','2023-06-28
14:01:03',NULL,'1514',NULL,NULL),(4923,1514,'SWT','applicants_certifications/
U1514T1687960888.pdf','applicants_certifications','AGIA-
LARGE.pdf','U1514T1687960888.pdf','2023-06-28 14:01:28','2023-06-28
14:01:28',NULL,'1514',NULL,NULL),(4924,1514,'SWT','applicants_certifications/
U1514T1687960918.pdf','applicants_certifications','AGIA-BASIC
ACCOUNTING.pdf','U1514T1687960918.pdf','2023-06-28 14:01:58','2023-06-28
14:01:58',NULL,'1514',NULL,NULL),(4925,1514,'TOR','applicants_certifications/
U1514T1687960933.pdf','applicants_certifications','IFSU-
GAD.pdf','U1514T1687960933.pdf','2023-06-28 14:02:13','2023-06-28
14:02:13',NULL,'1514',NULL,NULL),(4926,1514,'SWT','applicants_certifications/
U1514T1687960959.pdf','applicants_certifications','DOST-FINANCIAL
MANAGEMENT.pdf','U1514T1687960959.pdf','2023-06-28 14:02:39','2023-06-28
14:02:39',NULL,'1514',NULL,NULL),(4927,1514,'SWT','applicants_certifications/
U1514T1687960982.pdf','applicants_certifications','SLU-TIKTAK ORAS
NA.pdf','U1514T1687960982.pdf','2023-06-28 14:03:02','2023-06-28
14:03:02',NULL,'1514',NULL,NULL),(4928,1514,'SWT','applicants_certifications/
U1514T1687960998.pdf','applicants_certifications','SLU-TATAK ENTRE
PINOY.pdf','U1514T1687960998.pdf','2023-06-28 14:03:18','2023-06-28
14:03:18',NULL,'1514',NULL,NULL),(4930,1008,'TOR','applicants_certifications/
U1008T1687961050.pdf','applicants_certifications','OTR_ANNALYN GRACE
MEDINA.pdf','U1008T1687961050.pdf','2023-06-28 14:04:10','2023-06-28
14:04:10',NULL,'1008',NULL,NULL),
(4931,1514,'ELIGIBILITY','applicants_certifications/
U1514T1687961227.pdf','applicants_certifications','CIVIL SERVICE ELIGIBILITY-
CSC.pdf','U1514T1687961227.pdf','2023-06-28 14:07:07','2023-06-28
14:07:07',NULL,'1514',NULL,NULL),
(4932,1514,'ELIGIBILITY','applicants_certifications/
U1514T1687961242.pdf','applicants_certifications','CERTIFICATE OF ELIGIBILITY-
DL.pdf','U1514T1687961242.pdf','2023-06-28 14:07:22','2023-06-28
14:07:22',NULL,'1514',NULL,NULL),(4934,1513,'SWT','applicants_certifications/
U1513T1687961682.pdf','applicants_certifications','Certificate_of Admin. Assistant
for_Melvin_Jay_Banson.pdf','U1513T1687961682.pdf','2023-06-28 14:14:42','2023-06-28
14:14:42',NULL,'1513',NULL,NULL),
(4935,1513,'ELIGIBILITY','applicants_certifications/
U1513T1687961713.pdf','applicants_certifications','CS
PROF.pdf.pdf','U1513T1687961713.pdf','2023-06-28 14:15:13','2023-06-28
14:15:13',NULL,'1513',NULL,NULL),(4936,1513,'COE','applicants_certifications/
U1513T1687961752.pdf','applicants_certifications','COE-Melvin
Banson_1(1).pdf','U1513T1687961752.pdf','2023-06-28 14:15:52','2023-06-28
14:15:52',NULL,'1513',NULL,NULL),(4937,1513,'SWT','applicants_certifications/
U1513T1687961855.pdf','applicants_certifications','HSS Certificate Stress
Management Seminar - Melvin Jay A. Banson.pdf','U1513T1687961855.pdf','2023-06-28
14:17:35','2023-06-28 14:17:35',NULL,'1513',NULL,NULL),
(4938,1513,'SWT','applicants_certifications/
U1513T1687961884.pdf','applicants_certifications','HSS Effective Communication
Certificate - Melvin Jay A. Banson.pdf','U1513T1687961884.pdf','2023-06-28
14:18:04','2023-06-28 14:18:04',NULL,'1513',NULL,NULL),
(4939,1513,'SWT','applicants_certifications/
U1513T1687962018.pdf','applicants_certifications','computer
troubleshooting.pdf','U1513T1687962018.pdf','2023-06-28 14:20:18','2023-06-28
14:20:18',NULL,'1513',NULL,NULL),(4940,1513,'COE','applicants_certifications/
U1513T1687962115.pdf','applicants_certifications','COE
1.pdf','U1513T1687962115.pdf','2023-06-28 14:21:55','2023-06-28
14:21:55',NULL,'1513',NULL,NULL),(4941,1452,'TOR','applicants_certifications/
U1452T1687962337.jpg','applicants_certifications','CamScanner 06-28-2023
22.13_1.jpg','U1452T1687962337.jpg','2023-06-28 14:25:37','2023-06-28
14:25:37',NULL,'1452',NULL,NULL),(4942,1452,'TOR','applicants_certifications/
U1452T1687962367.jpg','applicants_certifications','CamScanner 06-28-2023
22.15_1.jpg','U1452T1687962367.jpg','2023-06-28 14:26:07','2023-06-28
14:26:07',NULL,'1452',NULL,NULL),(4943,1452,'TOR','applicants_certifications/
U1452T1687962396.jpg','applicants_certifications','CamScanner 06-28-2023
22.17_1.jpg','U1452T1687962396.jpg','2023-06-28 14:26:36','2023-06-28
14:26:36',NULL,'1452',NULL,NULL),(4949,1452,'SWT','applicants_certifications/
U1452T1687963614.jpg','applicants_certifications','CamScanner 06-28-2023
22.30_1.jpg','U1452T1687963614.jpg','2023-06-28 14:46:54','2023-06-28
14:46:54',NULL,'1452',NULL,NULL),(4950,1452,'SWT','applicants_certifications/
U1452T1687963666.jpg','applicants_certifications','CamScanner 06-28-2023
22.37_1.jpg','U1452T1687963666.jpg','2023-06-28 14:47:46','2023-06-28
14:47:46',NULL,'1452',NULL,NULL),(4951,1452,'SWT','applicants_certifications/
U1452T1687963685.jpg','applicants_certifications','CamScanner 06-28-2023
22.34_1.jpg','U1452T1687963685.jpg','2023-06-28 14:48:05','2023-06-28
14:48:05',NULL,'1452',NULL,NULL),(4952,1452,'SWT','applicants_certifications/
U1452T1687963705.jpg','applicants_certifications','CamScanner 06-28-2023
22.35_1.jpg','U1452T1687963705.jpg','2023-06-28 14:48:25','2023-06-28
14:48:25',NULL,'1452',NULL,NULL),(4953,1452,'SWT','applicants_certifications/
U1452T1687963882.jpg','applicants_certifications','CamScanner 06-28-2023
22.29_1.jpg','U1452T1687963882.jpg','2023-06-28 14:51:22','2023-06-28
14:51:22',NULL,'1452',NULL,NULL),(4955,1452,'SWT','applicants_certifications/
U1452T1687963930.jpg','applicants_certifications','CamScanner 06-28-2023
22.28_1.jpg','U1452T1687963930.jpg','2023-06-28 14:52:10','2023-06-28
14:52:10',NULL,'1452',NULL,NULL),(4962,1519,'SWT','applicants_certifications/
U1519T1687964667.jpg','applicants_certifications','inbound4766028769331262351.jpg',
'U1519T1687964667.jpg','2023-06-28 15:04:27','2023-06-28
15:04:27',NULL,'1519',NULL,NULL),(4964,1521,'SWT','applicants_certifications/
U1521T1687964821.pdf','applicants_certifications','Matlab
Onramp.pdf','U1521T1687964821.pdf','2023-06-28 15:07:01','2023-06-28
15:07:01',NULL,'1521',NULL,NULL),(4965,1519,'SWT','applicants_certifications/
U1519T1687964834.jpg','applicants_certifications','inbound7042736794061022910.jpg',
'U1519T1687964834.jpg','2023-06-28 15:07:14','2023-06-28
15:07:14',NULL,'1519',NULL,NULL),(4966,1519,'SWT','applicants_certifications/
U1519T1687964852.jpg','applicants_certifications','inbound5986093186035610253.jpg',
'U1519T1687964852.jpg','2023-06-28 15:07:32','2023-06-28
15:07:32',NULL,'1519',NULL,NULL),(4967,1521,'SWT','applicants_certifications/
U1521T1687964871.pdf','applicants_certifications','Simulink
Onramp.pdf','U1521T1687964871.pdf','2023-06-28 15:07:51','2023-06-28
15:07:51',NULL,'1521',NULL,NULL),(4968,1519,'SWT','applicants_certifications/
U1519T1687964871.jpg','applicants_certifications','inbound214129261687362317.jpg','
U1519T1687964871.jpg','2023-06-28 15:07:51','2023-06-28
15:07:51',NULL,'1519',NULL,NULL),(4969,1521,'SWT','applicants_certifications/
U1521T1687964886.pdf','applicants_certifications','Programming for
Beginners.pdf','U1521T1687964886.pdf','2023-06-28 15:08:06','2023-06-28
15:08:06',NULL,'1521',NULL,NULL),(4970,1519,'COE','applicants_certifications/
U1519T1687964894.jpg','applicants_certifications','inbound3402088316692426849.jpg',
'U1519T1687964894.jpg','2023-06-28 15:08:14','2023-06-28
15:08:14',NULL,'1519',NULL,NULL),(4971,1519,'COE','applicants_certifications/
U1519T1687964912.jpg','applicants_certifications','inbound1851177671373445812.jpg',
'U1519T1687964912.jpg','2023-06-28 15:08:32','2023-06-28
15:08:32',NULL,'1519',NULL,NULL),(4972,1299,'PDS','applicants_certifications/
U1299T1687965025.jpg','applicants_certifications','PERSONAL DATA
SHEET_1.jpg','U1299T1687965025.jpg','2023-06-28 15:10:25','2023-06-28
15:10:25',NULL,'1299',NULL,NULL),(4973,1299,'PDS','applicants_certifications/
U1299T1687965044.jpg','applicants_certifications','PERSONAL DATA
SHEET_2.jpg','U1299T1687965044.jpg','2023-06-28 15:10:44','2023-06-28
15:10:44',NULL,'1299',NULL,NULL),(4974,1299,'PDS','applicants_certifications/
U1299T1687965061.jpg','applicants_certifications','PERSONAL DATA
SHEET_3.jpg','U1299T1687965061.jpg','2023-06-28 15:11:01','2023-06-28
15:11:01',NULL,'1299',NULL,NULL),(4975,1299,'PDS','applicants_certifications/
U1299T1687965080.jpg','applicants_certifications','PERSONAL DATA
SHEET_4.jpg','U1299T1687965080.jpg','2023-06-28 15:11:20','2023-06-28
15:11:20',NULL,'1299',NULL,NULL),(4976,1299,'PDS','applicants_certifications/
U1299T1687965097.jpg','applicants_certifications','PERSONAL DATA
SHEET_5.jpg','U1299T1687965097.jpg','2023-06-28 15:11:37','2023-06-28
15:11:37',NULL,'1299',NULL,NULL),(4977,1299,'PDS','applicants_certifications/
U1299T1687965114.jpg','applicants_certifications','PERSONAL DATA
SHEET_6.jpg','U1299T1687965114.jpg','2023-06-28 15:11:54','2023-06-28
15:11:54',NULL,'1299',NULL,NULL),
(4978,1519,'ELIGIBILITY','applicants_certifications/
U1519T1687965182.jpg','applicants_certifications','inbound1525509191767639944.jpg',
'U1519T1687965182.jpg','2023-06-28 15:13:02','2023-06-28
15:13:02',NULL,'1519',NULL,NULL),
(4980,1519,'ELIGIBILITY','applicants_certifications/U1519T1687965223.jpg','applic
ants_certifications','inbound4064426164136542257.jpg','U1519T1687965223.jpg','2023-
06-28 15:13:43','2023-06-28 15:13:43',NULL,'1519',NULL,NULL),
(4981,1519,'TOR','applicants_certifications/
U1519T1687965445.jpg','applicants_certifications','inbound127361430538856600.jpg','
U1519T1687965445.jpg','2023-06-28 15:17:25','2023-06-28
15:17:25',NULL,'1519',NULL,NULL),(4982,1519,'TOR','applicants_certifications/
U1519T1687965459.jpg','applicants_certifications','inbound1350714201527050339.jpg',
'U1519T1687965459.jpg','2023-06-28 15:17:39','2023-06-28
15:17:39',NULL,'1519',NULL,NULL),(4983,1519,'TOR','applicants_certifications/
U1519T1687965475.jpg','applicants_certifications','inbound4845095834367814905.jpg',
'U1519T1687965475.jpg','2023-06-28 15:17:55','2023-06-28
15:17:55',NULL,'1519',NULL,NULL),(4985,1299,'SWT','applicants_certifications/
U1299T1687965773.jpg','applicants_certifications','First Aid
Training.jpg','U1299T1687965773.jpg','2023-06-28 15:22:53','2023-06-28
15:22:53',NULL,'1299',NULL,NULL),(4986,1299,'SWT','applicants_certifications/
U1299T1687965846.jpg','applicants_certifications','Internal Auditing
Seminar.jpg','U1299T1687965846.jpg','2023-06-28 15:24:06','2023-06-28
15:24:06',NULL,'1299',NULL,NULL),(4987,1299,'TOR','applicants_certifications/
U1299T1687966500.pdf','applicants_certifications','TOR.pdf','U1299T1687966500.pdf',
'2023-06-28 15:35:00','2023-06-28 15:35:00',NULL,'1299',NULL,NULL),
(4988,1299,'ELIGIBILITY','applicants_certifications/
U1299T1687966536.pdf','applicants_certifications','CS.pdf','U1299T1687966536.pdf','
2023-06-28 15:35:36','2023-06-28 15:35:36',NULL,'1299',NULL,NULL),
(4989,1299,'SWT','applicants_certifications/
U1299T1687966601.jpg','applicants_certifications','Dean\'s Lister 2012-
2013.jpg','U1299T1687966601.jpg','2023-06-28 15:36:41','2023-06-28
15:36:41',NULL,'1299',NULL,NULL),(4990,1299,'SWT','applicants_certifications/
U1299T1687966649.jpg','applicants_certifications','Dean\'s Lister 2011-
2012.jpg','U1299T1687966649.jpg','2023-06-28 15:37:29','2023-06-28
15:37:29',NULL,'1299',NULL,NULL),(4991,1299,'SWT','applicants_certifications/
U1299T1687966699.jpg','applicants_certifications','Dean\'s Lister 2010-2011
(1).jpg','U1299T1687966699.jpg','2023-06-28 15:38:19','2023-06-28
15:38:19',NULL,'1299',NULL,NULL),(4992,1299,'SWT','applicants_certifications/
U1299T1687966721.jpg','applicants_certifications','Entrance Scholar
2011.jpg','U1299T1687966721.jpg','2023-06-28 15:38:41','2023-06-28
15:38:41',NULL,'1299',NULL,NULL),(4993,1299,'SWT','applicants_certifications/
U1299T1687966739.jpg','applicants_certifications','Entrance Scholar
2010.jpg','U1299T1687966739.jpg','2023-06-28 15:38:59','2023-06-28
15:38:59',NULL,'1299',NULL,NULL),(4994,1299,'SWT','applicants_certifications/
U1299T1687966764.jpg','applicants_certifications','Athlete of the year
cert.jpg','U1299T1687966764.jpg','2023-06-28 15:39:24','2023-06-28
15:39:24',NULL,'1299',NULL,NULL),(4995,1299,'SWT','applicants_certifications/
U1299T1687966781.jpg','applicants_certifications','Cert of Recognition-BIBAK
ORG.jpg','U1299T1687966781.jpg','2023-06-28 15:39:41','2023-06-28
15:39:41',NULL,'1299',NULL,NULL),(4996,1350,'TOR','applicants_certifications/
U1350T1687992982.pdf','applicants_certifications','TOR.pdf','U1350T1687992982.pdf',
'2023-06-28 22:56:22','2023-06-28 22:56:22',NULL,'1350',NULL,NULL),
(4997,1350,'ELIGIBILITY','applicants_certifications/
U1350T1687993026.pdf','applicants_certifications','Civil
Service.pdf','U1350T1687993026.pdf','2023-06-28 22:57:06','2023-06-28
22:57:06',NULL,'1350',NULL,NULL),(4998,1350,'PDS','applicants_certifications/
U1350T1687993441.pdf','applicants_certifications','PDS
(3).pdf','U1350T1687993441.pdf','2023-06-28 23:04:01','2023-06-28
23:04:01',NULL,'1350',NULL,NULL),(4999,1008,'COE','applicants_certifications/
U1008T1687999348.pdf','applicants_certifications','Certificates of
Employment.pdf','U1008T1687999348.pdf','2023-06-29 00:42:28','2023-06-29
00:42:28',NULL,'1008',NULL,NULL),
(5000,1008,'ELIGIBILITY','applicants_certifications/
U1008T1688000445.pdf','applicants_certifications','Certificate of
Eligibility.pdf','U1008T1688000445.pdf','2023-06-29 01:00:45','2023-06-29
01:00:45',NULL,'1008',NULL,NULL),(5001,1008,'SWT','applicants_certifications/
U1008T1688000535.pdf','applicants_certifications','Seminar Workshop & Training
Certificates.pdf','U1008T1688000535.pdf','2023-06-29 01:02:15','2023-06-29
01:02:15',NULL,'1008',NULL,NULL),(5002,1493,'TOR','applicants_certifications/
U1493T1688000565.jpg','applicants_certifications','Document
45_2.jpg','U1493T1688000565.jpg','2023-06-29 01:02:45','2023-06-29
01:02:45',NULL,'1493',NULL,NULL),(5003,1493,'TOR','applicants_certifications/
U1493T1688001072.jpg','applicants_certifications','Document
45_3.jpg','U1493T1688001072.jpg','2023-06-29 01:11:12','2023-06-29
01:11:12',NULL,'1493',NULL,NULL),(5004,1493,'COE','applicants_certifications/
U1493T1688001155.jpg','applicants_certifications','Document
45_5.jpg','U1493T1688001155.jpg','2023-06-29 01:12:35','2023-06-29
01:12:35',NULL,'1493',NULL,NULL),
(5005,1434,'ELIGIBILITY','applicants_certifications/
U1434T1688006648.pdf','applicants_certifications','Eligibility.pdf','U1434T16880066
48.pdf','2023-06-29 02:44:08','2023-06-29 02:44:08',NULL,'1434',NULL,NULL),
(5006,1434,'TOR','applicants_certifications/
U1434T1688007374.pdf','applicants_certifications','TOR3.pdf','U1434T1688007374.pdf'
,'2023-06-29 02:56:14','2023-06-29 02:56:14',NULL,'1434',NULL,NULL),
(5007,1465,'SWT','applicants_certifications/
U1465T1688009121.pdf','applicants_certifications','inbound300066188589973588.pdf','
U1465T1688009121.pdf','2023-06-29 03:25:21','2023-06-29
03:25:21',NULL,'1465',NULL,NULL),(5008,1502,'SWT','applicants_certifications/
U1502T1688010364.jpg','applicants_certifications','IMG_20230627_0001.jpg','U1502T16
88010364.jpg','2023-06-29 03:46:04','2023-06-29 03:46:04',NULL,'1502',NULL,NULL),
(5009,1434,'COE','applicants_certifications/
U1434T1688010880.pdf','applicants_certifications','Service
Record.pdf','U1434T1688010880.pdf','2023-06-29 03:54:40','2023-06-29
03:54:40',NULL,'1434',NULL,NULL),(5011,1434,'SWT','applicants_certifications/
U1434T1688010920.pdf','applicants_certifications','Trainings_compressed.pdf','U1434
T1688010920.pdf','2023-06-29 03:55:20','2023-06-29
03:55:20',NULL,'1434',NULL,NULL),(5012,1434,'PDS','applicants_certifications/
U1434T1688010937.pdf','applicants_certifications','PDS_compressed.pdf','U1434T16880
10937.pdf','2023-06-29 03:55:37','2023-06-29 03:55:37',NULL,'1434',NULL,NULL),
(5013,1502,'PDS','applicants_certifications/
U1502T1688011962.pdf','applicants_certifications','pds
file.pdf','U1502T1688011962.pdf','2023-06-29 04:12:42','2023-06-29
04:12:42',NULL,'1502',NULL,NULL),
(5014,1411,'ELIGIBILITY','applicants_certifications/
U1411T1688013622.pdf','applicants_certifications','Notice-of-
Rating.pdf','U1411T1688013622.pdf','2023-06-29 04:40:22','2023-06-29
04:40:22',NULL,'1411',NULL,NULL),(5015,1411,'PDS','applicants_certifications/
U1411T1688013821.xlsx','applicants_certifications','PDS.xlsx','U1411T1688013821.xls
x','2023-06-29 04:43:41','2023-06-29 04:43:41',NULL,'1411',NULL,NULL),
(5017,1510,'ELIGIBILITY','applicants_certifications/
U1510T1688018125.pdf','applicants_certifications','AUTHENTICATED
ELIGIBILITY.pdf','U1510T1688018125.pdf','2023-06-29 05:55:25','2023-06-29
05:55:25',NULL,'1510',NULL,NULL),(5018,1498,'TOR','applicants_certifications/
U1498T1688018353.pdf','applicants_certifications','Transcript of
Records.pdf','U1498T1688018353.pdf','2023-06-29 05:59:13','2023-06-29
05:59:13',NULL,'1498',NULL,NULL),
(5019,1498,'ELIGIBILITY','applicants_certifications/
U1498T1688018380.pdf','applicants_certifications','CERTIFICATE OF
ELIGIBILITY.pdf','U1498T1688018380.pdf','2023-06-29 05:59:40','2023-06-29
05:59:40',NULL,'1498',NULL,NULL),(5020,1522,'TOR','applicants_certifications/
U1522T1688018395.pdf','applicants_certifications','tor.pdf','U1522T1688018395.pdf',
'2023-06-29 05:59:55','2023-06-29 05:59:55',NULL,'1522',NULL,NULL),
(5022,1498,'SWT','applicants_certifications/
U1498T1688020197.pdf','applicants_certifications','CERTIFICATE OF TRAININGS
1.pdf','U1498T1688020197.pdf','2023-06-29 06:29:57','2023-06-29
06:29:57',NULL,'1498',NULL,NULL),(5023,1498,'SWT','applicants_certifications/
U1498T1688020218.pdf','applicants_certifications','CERTIFICATE OF TRAININGS
2.pdf','U1498T1688020218.pdf','2023-06-29 06:30:18','2023-06-29
06:30:18',NULL,'1498',NULL,NULL),
(5024,1528,'ELIGIBILITY','applicants_certifications/
U1528T1688020261.pdf','applicants_certifications','PRC
ID.pdf','U1528T1688020261.pdf','2023-06-29 06:31:01','2023-06-29
06:31:01',NULL,'1528',NULL,NULL),(5025,1498,'COE','applicants_certifications/
U1498T1688022273.pdf','applicants_certifications','CERTIFICATE OF EMPLOYMENT &
APPOINTMENT.pdf','U1498T1688022273.pdf','2023-06-29 07:04:33','2023-06-29
07:04:33',NULL,'1498',NULL,NULL),
(5026,1460,'ELIGIBILITY','applicants_certifications/
U1460T1688023159.pdf','applicants_certifications','LISCENSE.pdf','U1460T1688023159.
pdf','2023-06-29 07:19:19','2023-06-29 07:19:19',NULL,'1460',NULL,NULL),
(5029,1460,'COE','applicants_certifications/
U1460T1688023428.pdf','applicants_certifications','COE.pdf','U1460T1688023428.pdf',
'2023-06-29 07:23:48','2023-06-29 07:23:48',NULL,'1460',NULL,NULL),
(5033,1391,'TOR','applicants_certifications/
U1391T1688024305.pdf','applicants_certifications','Transcript_of_Records-
_Leumae_Shine_Dulnuan[1].pdf','U1391T1688024305.pdf','2023-06-29 07:38:25','2023-
06-29 07:38:25',NULL,'1391',NULL,NULL),
(5034,1510,'COE','applicants_certifications/
U1510T1688024339.pdf','applicants_certifications','Certficate of
Employment.pdf','U1510T1688024339.pdf','2023-06-29 07:38:59','2023-06-29
07:38:59',NULL,'1510',NULL,NULL),
(5037,1391,'ELIGIBILITY','applicants_certifications/
U1391T1688024464.pdf','applicants_certifications','Authenticated_PRC_License-
_Leumae_Shine_Dulnuan[1].pdf','U1391T1688024464.pdf','2023-06-29 07:41:04','2023-
06-29 07:41:04',NULL,'1391',NULL,NULL),
(5039,1510,'SWT','applicants_certifications/
U1510T1688024615.pdf','applicants_certifications','Traini
ngs.pdf','U1510T1688024615.pdf','2023-06-29 07:43:35','2023-06-29
07:43:35',NULL,'1510',NULL,NULL),(5040,1498,'PDS','applicants_certifications/
U1498T1688024662.pdf','applicants_certifications','PDS.pdf','U1498T1688024662.pdf',
'2023-06-29 07:44:22','2023-06-29 07:44:22',NULL,'1498',NULL,NULL),
(5041,1479,'TOR','applicants_certifications/
U1479T1688025428.pdf','applicants_certifications','TOR-
BIMMOY.pdf','U1479T1688025428.pdf','2023-06-29 07:57:08','2023-06-29
07:57:08',NULL,'1479',NULL,NULL),
(5042,1479,'ELIGIBILITY','applicants_certifications/
U1479T1688025579.pdf','applicants_certifications','eligibility-
Bimmoy.pdf','U1479T1688025579.pdf','2023-06-29 07:59:39','2023-06-29
07:59:39',NULL,'1479',NULL,NULL),(5046,1479,'COE','applicants_certifications/
U1479T1688027942.pdf','applicants_certifications','Not
Applicable.pdf','U1479T1688027942.pdf','2023-06-29 08:39:02','2023-06-29
08:39:02',NULL,'1479',NULL,NULL),(5047,1479,'SWT','applicants_certifications/
U1479T1688027967.pdf','applicants_certifications','Not
Applicable.pdf','U1479T1688027967.pdf','2023-06-29 08:39:27','2023-06-29
08:39:27',NULL,'1479',NULL,NULL),(5049,1514,'PDS','applicants_certifications/
U1514T1688028505.pdf','applicants_certifications','PDS WITH
WES.pdf','U1514T1688028505.pdf','2023-06-29 08:48:25','2023-06-29
08:48:25',NULL,'1514',NULL,NULL),(5052,1532,'SWT','applicants_certifications/
U1532T1688028631.jpg','applicants_certifications','inbound4543427268092658427.jpg',
'U1532T1688028631.jpg','2023-06-29 08:50:31','2023-06-29
08:50:31',NULL,'1532',NULL,NULL),(5054,1532,'SWT','applicants_certifications/
U1532T1688028671.jpg','applicants_certifications','inbound4292484225458034714.jpg',
'U1532T1688028671.jpg','2023-06-29 08:51:11','2023-06-29
08:51:11',NULL,'1532',NULL,NULL),(5055,1532,'TOR','applicants_certifications/
U1532T1688028853.jpg','applicants_certifications','inbound7299187349117420972.jpg',
'U1532T1688028853.jpg','2023-06-29 08:54:13','2023-06-29
08:54:13',NULL,'1532',NULL,NULL),(5056,1532,'TOR','applicants_certifications/
U1532T1688028895.jpg','applicants_certifications','inbound6208807027684230354.jpg',
'U1532T1688028895.jpg','2023-06-29 08:54:55','2023-06-29
08:54:55',NULL,'1532',NULL,NULL),(5057,1522,'SWT','applicants_certifications/
U1522T1688029087.pdf','applicants_certifications','2021 02 04 - Certificate of
Appreciation - JOMAR N. BALLITOC.pdf','U1522T1688029087.pdf','2023-06-29
08:58:07','2023-06-29 08:58:07',NULL,'1522',NULL,NULL),
(5058,1530,'TOR','applicants_certifications/
U1530T1688029132.jpg','applicants_certifications','CamScanner 06-29-2023
15.50_7.jpg','U1530T1688029132.jpg','2023-06-29 08:58:52','2023-06-29
08:58:52',NULL,'1530',NULL,NULL),(5060,1530,'TOR','applicants_certifications/
U1530T1688029311.jpg','applicants_certifications','CamScanner 06-29-2023
15.50_6.jpg','U1530T1688029311.jpg','2023-06-29 09:01:51','2023-06-29
09:01:51',NULL,'1530',NULL,NULL),
(5061,1530,'ELIGIBILITY','applicants_certifications/
U1530T1688029407.jpg','applicants_certifications','CamScanner 06-29-2023
15.50_8.jpg','U1530T1688029407.jpg','2023-06-29 09:03:27','2023-06-29
09:03:27',NULL,'1530',NULL,NULL),(5062,1530,'PDS','applicants_certifications/
U1530T1688029493.jpg','applicants_certifications','CamScanner 06-29-2023
15.50_5.jpg','U1530T1688029493.jpg','2023-06-29 09:04:53','2023-06-29
09:04:53',NULL,'1530',NULL,NULL),(5063,1530,'PDS','applicants_certifications/
U1530T1688029532.jpg','applicants_certifications','CamScanner 06-29-2023
15.50_4.jpg','U1530T1688029532.jpg','2023-06-29 09:05:32','2023-06-29
09:05:32',NULL,'1530',NULL,NULL),(5064,1530,'PDS','applicants_certifications/
U1530T1688029565.jpg','applicants_certifications','CamScanner 06-29-2023
15.50_3.jpg','U1530T1688029565.jpg','2023-06-29 09:06:05','2023-06-29
09:06:05',NULL,'1530',NULL,NULL),(5065,1530,'PDS','applicants_certifications/
U1530T1688029599.jpg','applicants_certifications','CamScanner 06-29-2023
15.50_2.jpg','U1530T1688029599.jpg','2023-06-29 09:06:39','2023-06-29
09:06:39',NULL,'1530',NULL,NULL),
(5066,1485,'ELIGIBILITY','applicants_certifications/
U1485T1688029824.pdf','applicants_certifications','PRC
License.pdf','U1485T1688029824.pdf','2023-06-29 09:10:24','2023-06-29
09:10:24',NULL,'1485',NULL,NULL),(5067,1526,'COE','applicants_certifications/
U1526T1688029869.pdf','applicants_certifications','Certificate of
Employment.pdf','U1526T1688029869.pdf','2023-06-29 09:11:09','2023-06-29
09:11:09',NULL,'1526',NULL,NULL),
(5068,1526,'ELIGIBILITY','applicants_certifications/
U1526T1688029970.pdf','applicants_certifications','Certificate of
Eligibility.pdf','U1526T1688029970.pdf','2023-06-29 09:12:50','2023-06-29
09:12:50',NULL,'1526',NULL,NULL),(5069,1485,'TOR','applicants_certifications/
U1485T1688030006.pdf','applicants_certifications','TOR1.pdf','U1485T1688030006.pdf'
,'2023-06-29 09:13:26','2023-06-29 09:13:26',NULL,'1485',NULL,NULL),
(5070,1485,'TOR','applicants_certifications/
U1485T1688030067.pdf','applicants_certifications','TOR2.pdf','U1485T1688030067.pdf'
,'2023-06-29 09:14:27','2023-06-29 09:14:27',NULL,'1485',NULL,NULL),
(5071,1510,'TOR','applicants_certifications/
U1510T1688030189.pdf','applicants_certifications','TOR.pdf','U1510T1688030189.pdf',
'2023-06-29 09:16:29','2023-06-29 09:16:29',NULL,'1510',NULL,NULL),
(5072,1526,'SWT','applicants_certifications/
U1526T1688030257.png','applicants_certifications','Infographics
Training.png','U1526T1688030257.png','2023-06-29 09:17:37','2023-06-29
09:17:37',NULL,'1526',NULL,NULL),(5073,1485,'COE','applicants_certifications/
U1485T1688030339.pdf','applicants_certifications','Cert of
Employment.pdf','U1485T1688030339.pdf','2023-06-29 09:18:59','2023-06-29
09:18:59',NULL,'1485',NULL,NULL),(5075,1485,'TOR','applicants_certifications/
U1485T1688030438.pdf','applicants_certifications','Cert of Grades
Masters.pdf','U1485T1688030438.pdf','2023-06-29 09:20:38','2023-06-29
09:20:38',NULL,'1485',NULL,NULL),(5077,1485,'COE','applicants_certifications/
U1485T1688030579.pdf','applicants_certifications','Service
Record.pdf','U1485T1688030579.pdf','2023-06-29 09:22:59','2023-06-29
09:22:59',NULL,'1485',NULL,NULL),(5078,1485,'SWT','applicants_certifications/
U1485T1688030753.pdf','applicants_certifications','Cert1.pdf','U1485T1688030753.pdf
','2023-06-29 09:25:53','2023-06-29 09:25:53',NULL,'1485',NULL,NULL),
(5079,1485,'SWT','applicants_certifications/
U1485T1688030870.pdf','applicants_certifications','cert2.pdf','U1485T1688030870.pdf
','2023-06-29 09:27:50','2023-06-29 09:27:50',NULL,'1485',NULL,NULL),
(5081,1485,'SWT','applicants_certifications/
U1485T1688030967.pdf','applicants_certifications','Cert
3.pdf','U1485T1688030967.pdf','2023-06-29 09:29:27','2023-06-29
09:29:27',NULL,'1485',NULL,NULL),(5082,1485,'SWT','applicants_certifications/
U1485T1688031045.pdf','applicants_certifications','Cert
4.pdf','U1485T1688031045.pdf','2023-06-29 09:30:45','2023-06-29
09:30:45',NULL,'1485',NULL,NULL),(5083,1485,'SWT','applicants_certifications/
U1485T1688031111.pdf','applicants_certifications','Cert
5.pdf','U1485T1688031111.pdf','2023-06-29 09:31:51','2023-06-29
09:31:51',NULL,'1485',NULL,NULL),(5084,1485,'PDS','applicants_certifications/
U1485T1688031389.pdf','applicants_certifications','PDS1.pdf','U1485T1688031389.pdf'
,'2023-06-29 09:36:29','2023-06-29 09:36:29',NULL,'1485',NULL,NULL),
(5085,1485,'PDS','applicants_certifications/
U1485T1688031416.pdf','applicants_certifications','PDS2.pdf','U1485T1688031416.pdf'
,'2023-06-29 09:36:56','2023-06-29 09:36:56',NULL,'1485',NULL,NULL),
(5087,1485,'PDS','applicants_certifications/
U1485T1688031486.pdf','applicants_certifications','PDS3.pdf','U1485T1688031486.pdf'
,'2023-06-29 09:38:06','2023-06-29 09:38:06',NULL,'1485',NULL,NULL),
(5089,1485,'PDS','applicants_certifications/
U1485T1688031558.pdf','applicants_certifications','PDS4.pdf','U1485T1688031558.pdf'
,'2023-06-29 09:39:18','2023-06-29 09:39:18',NULL,'1485',NULL,NULL),
(5090,1530,'SWT','applicants_certifications/
U1530T1688031558.jpg','applicants_certifications','CamScanner 06-29-2023
17.14_2(2).jpg','U1530T1688031558.jpg','2023-06-29 09:39:18','2023-06-29
09:39:18',NULL,'1530',NULL,NULL),(5092,1530,'SWT','applicants_certifications/
U1530T1688031587.jpg','applicants_certifications','CamScanner 06-29-2023
17.14_3(2).jpg','U1530T1688031587.jpg','2023-06-29 09:39:47','2023-06-29
09:39:47',NULL,'1530',NULL,NULL),(5093,1530,'SWT','applicants_certifications/
U1530T1688031656.jpg','applicants_certifications','CamScanner 06-29-2023
17.14_4(2).jpg','U1530T1688031656.jpg','2023-06-29 09:40:56','2023-06-29
09:40:56',NULL,'1530',NULL,NULL),(5094,1485,'PDS','applicants_certifications/
U1485T1688031670.pdf','applicants_certifications','Work Experience
Sheet.pdf','U1485T1688031670.pdf','2023-06-29 09:41:10','2023-06-29
09:41:10',NULL,'1485',NULL,NULL),(5095,1530,'SWT','applicants_certifications/
U1530T1688031685.jpg','applicants_certifications','CamScanner 06-29-2023
17.14_1(2).jpg','U1530T1688031685.jpg','2023-06-29 09:41:25','2023-06-29
09:41:25',NULL,'1530',NULL,NULL),(5096,1530,'COE','applicants_certifications/
U1530T1688031703.jpg','applicants_certifications','CamScanner 06-29-2023
17.14_5.jpg','U1530T1688031703.jpg','2023-06-29 09:41:43','2023-06-29
09:41:43',NULL,'1530',NULL,NULL),(5097,1485,'PDS','applicants_certifications/
U1485T1688031738.pdf','applicants_certifications','Work Experience
Sheet2.pdf','U1485T1688031738.pdf','2023-06-29 09:42:18','2023-06-29
09:42:18',NULL,'1485',NULL,NULL),(5098,1485,'PDS','applicants_certifications/
U1485T1688031784.pdf','applicants_certifications','Work Experience
Sheet3.pdf','U1485T1688031784.pdf','2023-06-29 09:43:04','2023-06-29
09:43:04',NULL,'1485',NULL,NULL),(5099,1338,'PDS','applicants_certifications/
U1338T1688033284.pdf','applicants_certifications','APPLICATION
LETTER.pdf','U1338T1688033284.pdf','2023-06-29 10:08:04','2023-06-29
10:08:04',NULL,'1338',NULL,NULL),
(5100,1338,'ELIGIBILITY','applicants_certifications/
U1338T1688033311.pdf','applicants_certifications','Cert of
eligibility.pdf','U1338T1688033311.pdf','2023-06-29
10:08:31','2023-06-29 10:08:31',NULL,'1338',NULL,NULL),
(5101,1338,'PDS','applicants_certifications/
U1338T1688033383.pdf','applicants_certifications','WORK EXPERIENCE
SHEET.pdf','U1338T1688033383.pdf','2023-06-29 10:09:43','2023-06-29
10:09:43',NULL,'1338',NULL,NULL),(5102,1338,'SWT','applicants_certifications/
U1338T1688033672.pdf','applicants_certifications','Training certificates
(3).pdf','U1338T1688033672.pdf','2023-06-29 10:14:32','2023-06-29
10:14:32',NULL,'1338',NULL,NULL),(5104,1401,'COE','applicants_certifications/
U1401T1688033814.pdf','applicants_certifications','COE
APU.pdf','U1401T1688033814.pdf','2023-06-29 10:16:54','2023-06-29
10:16:54',NULL,'1401',NULL,NULL),
(5105,1401,'ELIGIBILITY','applicants_certifications/
U1401T1688033955.pdf','applicants_certifications','APU
license.pdf','U1401T1688033955.pdf','2023-06-29 10:19:15','2023-06-29
10:19:15',NULL,'1401',NULL,NULL),(5106,1508,'TOR','applicants_certifications/
U1508T1688036911.pdf','applicants_certifications','TRANSCRIPT OF
RECORDS.pdf','U1508T1688036911.pdf','2023-06-29 11:08:31','2023-06-29
11:08:31',NULL,'1508',NULL,NULL),(5109,1519,'PDS','applicants_certifications/
U1519T1688045108.xlsx','applicants_certifications','inbound2784421395556868817.xlsx
','U1519T1688045108.xlsx','2023-06-29 13:25:08','2023-06-29
13:25:08',NULL,'1519',NULL,NULL),(5111,1515,'TOR','applicants_certifications/
U1515T1688046264.pdf','applicants_certifications','Certification of
Grades.pdf','U1515T1688046264.pdf','2023-06-29 13:44:24','2023-06-29
13:44:24',NULL,'1515',NULL,NULL),(5112,1515,'COE','applicants_certifications/
U1515T1688046596.pdf','applicants_certifications','Service
Record.pdf','U1515T1688046596.pdf','2023-06-29 13:49:56','2023-06-29
13:49:56',NULL,'1515',NULL,NULL),
(5113,1515,'ELIGIBILITY','applicants_certifications/
U1515T1688046875.pdf','applicants_certifications','CS
Eligibility.pdf','U1515T1688046875.pdf','2023-06-29 13:54:35','2023-06-29
13:54:35',NULL,'1515',NULL,NULL),(5114,1479,'PDS','applicants_certifications/
U1479T1688047317.xlsx','applicants_certifications','CSC Form 212, Revised 2017-
Bimmoy T..xlsx','U1479T1688047317.xlsx','2023-06-29 14:01:57','2023-06-29
14:01:57',NULL,'1479',NULL,NULL),(5115,1536,'TOR','applicants_certifications/
U1536T1688052071.pdf','applicants_certifications','TOR.pdf','U1536T1688052071.pdf',
'2023-06-29 15:21:11','2023-06-29 15:21:11',NULL,'1536',NULL,NULL),
(5116,1536,'COE','applicants_certifications/
U1536T1688052147.pdf','applicants_certifications','cert of
employment.pdf','U1536T1688052147.pdf','2023-06-29 15:22:27','2023-06-29
15:22:27',NULL,'1536',NULL,NULL),(5117,1536,'SWT','applicants_certifications/
U1536T1688052223.pdf','applicants_certifications','certificates.pdf','U1536T1688052
223.pdf','2023-06-29 15:23:43','2023-06-29 15:23:43',NULL,'1536',NULL,NULL),
(5118,1536,'ELIGIBILITY','applicants_certifications/
U1536T1688052277.pdf','applicants_certifications','cert of passing &
rating.pdf','U1536T1688052277.pdf','2023-06-29 15:24:37','2023-06-29
15:24:37',NULL,'1536',NULL,NULL),
(5119,1536,'ELIGIBILITY','applicants_certifications/
U1536T1688052303.pdf','applicants_certifications','license.pdf','U1536T1688052303.p
df','2023-06-29 15:25:03','2023-06-29 15:25:03',NULL,'1536',NULL,NULL),
(5120,1536,'PDS','applicants_certifications/
U1536T1688052367.pdf','applicants_certifications','pds.pdf','U1536T1688052367.pdf',
'2023-06-29 15:26:07','2023-06-29 15:26:07',NULL,'1536',NULL,NULL),
(5122,1515,'SWT','applicants_certifications/
U1515T1688052441.pdf','applicants_certifications','Leading with HOPE Phase
2.pdf','U1515T1688052441.pdf','2023-06-29 15:27:21','2023-06-29
15:27:21',NULL,'1515',NULL,NULL),(5123,1536,'PDS','applicants_certifications/
U1536T1688052490.pdf','applicants_certifications','Work experience
sheet.pdf','U1536T1688052490.pdf','2023-06-29 15:28:10','2023-06-29
15:28:10',NULL,'1536',NULL,NULL),(5124,1515,'SWT','applicants_certifications/
U1515T1688052513.pdf','applicants_certifications','Re-orientation & Simulation
Activities for the Agency MSP-RSA.pdf','U1515T1688052513.pdf','2023-06-29
15:28:33','2023-06-29 15:28:33',NULL,'1515',NULL,NULL),
(5125,1515,'SWT','applicants_certifications/
U1515T1688052576.pdf','applicants_certifications','Training on Advance Computer
Application.pdf','U1515T1688052576.pdf','2023-06-29 15:29:36','2023-06-29
15:29:36',NULL,'1515',NULL,NULL),(5126,1515,'SWT','applicants_certifications/
U1515T1688052657.pdf','applicants_certifications','Non-Teaching Induction
Program.pdf','U1515T1688052657.pdf','2023-06-29 15:30:57','2023-06-29
15:30:57',NULL,'1515',NULL,NULL),(5127,1515,'SWT','applicants_certifications/
U1515T1688052725.pdf','applicants_certifications','Seminar Workshop on Protocols,
Work Ethics & Social Graces.pdf','U1515T1688052725.pdf','2023-06-29
15:32:05','2023-06-29 15:32:05',NULL,'1515',NULL,NULL),
(5128,1515,'SWT','applicants_certifications/
U1515T1688052783.pdf','applicants_certifications','Leading with HOPE Course Series
1 to 5.pdf','U1515T1688052783.pdf','2023-06-29 15:33:03','2023-06-29
15:33:03',NULL,'1515',NULL,NULL),(5129,1515,'SWT','applicants_certifications/
U1515T1688052879.pdf','applicants_certifications','Quality Management System
Training.pdf','U1515T1688052879.pdf','2023-06-29 15:34:39','2023-06-29
15:34:39',NULL,'1515',NULL,NULL),(5130,1515,'SWT','applicants_certifications/
U1515T1688052934.pdf','applicants_certifications','Training on Laws & Rules on
Gov\'t. Expenditures.pdf','U1515T1688052934.pdf','2023-06-29 15:35:34','2023-06-29
15:35:34',NULL,'1515',NULL,NULL),(5131,1515,'SWT','applicants_certifications/
U1515T1688052981.pdf','applicants_certifications','Luzon Cluster Assembly on the
Responsible Public Sector Unionism.pdf','U1515T1688052981.pdf','2023-06-29
15:36:21','2023-06-29 15:36:21',NULL,'1515',NULL,NULL),
(5132,1536,'PDS','applicants_certifications/
U1536T1688053388.pdf','applicants_certifications','letter.pdf','U1536T1688053388.pd
f','2023-06-29 15:43:08','2023-06-29 15:43:08',NULL,'1536',NULL,NULL),
(5133,1537,'TOR','applicants_certifications/
U1537T1688057070.pdf','applicants_certifications','3.Transcript of Record
(TOR).pdf','U1537T1688057070.pdf','2023-06-29 16:44:30','2023-06-29
16:44:30',NULL,'1537',NULL,NULL),(5134,1537,'COE','applicants_certifications/
U1537T1688057104.pdf','applicants_certifications','5.Certificate of
Employment.pdf','U1537T1688057104.pdf','2023-06-29 16:45:04','2023-06-29
16:45:04',NULL,'1537',NULL,NULL),
(5135,1537,'ELIGIBILITY','applicants_certifications/
U1537T1688057135.pdf','applicants_certifications','4.Renewed PRC Licensed
ID.pdf','U1537T1688057135.pdf','2023-06-29 16:45:35','2023-06-29
16:45:35',NULL,'1537',NULL,NULL),(5136,1508,'COE','applicants_certifications/
U1508T1688057491.jpg','applicants_certifications','CERTIFICATE OF
EMPLOYMENT.jpg','U1508T1688057491.jpg','2023-06-29 16:51:31','2023-06-29
16:51:31',NULL,'1508',NULL,NULL),(5137,1508,'SWT','applicants_certifications/
U1508T1688058657.pdf','applicants_certifications','CERTIFICATES.pdf','U1508T1688058
657.pdf','2023-06-29 17:10:57','2023-06-29 17:10:57',NULL,'1508',NULL,NULL),
(5139,1369,'TOR','applicants_certifications/
U1369T1688080841.jpg','applicants_certifications','Authenticated TOR_1
(1).jpg','U1369T1688080841.jpg','2023-06-29 23:20:41','2023-06-29
23:20:41',NULL,'1369',NULL,NULL),(5140,1369,'TOR','applicants_certifications/
U1369T1688080862.jpg','applicants_certifications','Authenticated TOR_2
(1).jpg','U1369T1688080862.jpg','2023-06-29 23:21:02','2023-06-29
23:21:02',NULL,'1369',NULL,NULL),(5145,1369,'SWT','applicants_certifications/
U1369T1688080986.jpg','applicants_certifications','CoT_1.jpg','U1369T1688080986.jpg
','2023-06-29 23:23:06','2023-06-29 23:23:06',NULL,'1369',NULL,NULL),
(5147,1369,'COE','applicants_certifications/
U1369T1688081132.jpg','applicants_certifications','CoE_1.jpg','U1369T1688081132.jpg
','2023-06-29 23:25:32','2023-06-29 23:25:32',NULL,'1369',NULL,NULL),
(5148,1369,'COE','applicants_certifications/
U1369T1688081150.jpg','applicants_certifications','CoE_2.jpg','U1369T1688081150.jpg
','2023-06-29 23:25:50','2023-06-29 23:25:50',NULL,'1369',NULL,NULL),
(5149,1369,'SWT','applicants_certifications/
U1369T1688081171.jpg','applicants_certifications','CoT_2.jpg','U1369T1688081171.jpg
','2023-06-29 23:26:11','2023-06-29 23:26:11',NULL,'1369',NULL,NULL),
(5150,1369,'SWT','applicants_certifications/
U1369T1688081197.jpg','applicants_certifications','CoT_3.jpg','U1369T1688081197.jpg
','2023-06-29 23:26:37','2023-06-29 23:26:37',NULL,'1369',NULL,NULL),
(5151,1369,'SWT','applicants_certifications/
U1369T1688081220.jpg','applicants_certifications','CoT_4.jpg','U1369T1688081220.jpg
','2023-06-29 23:27:00','2023-06-29 23:27:00',NULL,'1369',NULL,NULL),
(5152,1369,'ELIGIBILITY','applicants_certifications/
U1369T1688081252.jpg','applicants_certifications','PRC
ID_1.jpg','U1369T1688081252.jpg','2023-06-29 23:27:32','2023-06-29
23:27:32',NULL,'1369',NULL,NULL),(5153,1369,'PDS','applicants_certifications/
U1369T1688081531.jpg','applicants_certifications','PDS_1.jpg','U1369T1688081531.jpg
','2023-06-29 23:32:11','2023-06-29 23:32:11',NULL,'1369',NULL,NULL),
(5154,1369,'PDS','applicants_certifications/
U1369T1688081579.jpg','applicants_certifications','PDS_2.jpg','U1369T1688081579.jpg
','2023-06-29 23:32:59','2023-06-29 23:32:59',NULL,'1369',NULL,NULL),
(5155,1369,'PDS','applicants_certifications/
U1369T1688081600.jpg','applicants_certifications','PDS_3.jpg','U1369T1688081600.jpg
','2023-06-29 23:33:20','2023-06-29 23:33:20',NULL,'1369',NULL,NULL),
(5156,1369,'PDS','applicants_certifications/
U1369T1688081617.jpg','applicants_certifications','PDS_4.jpg','U1369T1688081617.jpg
','2023-06-29 23:33:37','2023-06-29 23:33:37',NULL,'1369',NULL,NULL),
(5157,1369,'PDS','applicants_certifications/
U1369T1688081688.jpg','applicants_certifications','Pds_5.jpg','U1369T1688081688.jpg
','2023-06-29 23:34:48','2023-06-29 23:34:48',NULL,'1369',NULL,NULL),
(5158,1445,'PDS','applicants_certifications/
U1445T1688083343.jpg','applicants_certifications','20230630_063034.jpg','U1445T1688
083343.jpg','2023-06-30
00:02:23','2023-06-30 00:02:23',NULL,'1445',NULL,NULL),
(5159,1445,'PDS','applicants_certifications/
U1445T1688083395.jpg','applicants_certifications','20230630_062618.jpg','U1445T1688
083395.jpg','2023-06-30 00:03:15','2023-06-30 00:03:15',NULL,'1445',NULL,NULL),
(5161,1445,'PDS','applicants_certifications/
U1445T1688083467.jpg','applicants_certifications','20230630_062542.jpg','U1445T1688
083467.jpg','2023-06-30 00:04:27','2023-06-30 00:04:27',NULL,'1445',NULL,NULL),
(5162,1445,'PDS','applicants_certifications/
U1445T1688083499.jpg','applicants_certifications','20230630_062633.jpg','U1445T1688
083499.jpg','2023-06-30 00:04:59','2023-06-30 00:04:59',NULL,'1445',NULL,NULL),
(5163,1445,'PDS','applicants_certifications/
U1445T1688083524.jpg','applicants_certifications','20230630_062648.jpg','U1445T1688
083524.jpg','2023-06-30 00:05:24','2023-06-30 00:05:24',NULL,'1445',NULL,NULL),
(5164,1445,'SWT','applicants_certifications/
U1445T1688083752.jpg','applicants_certifications','20230626_024454.jpg','U1445T1688
083752.jpg','2023-06-30 00:09:12','2023-06-30 00:09:12',NULL,'1445',NULL,NULL),
(5168,1534,'TOR','applicants_certifications/
U1534T1688093679.jpg','applicants_certifications','tor
1.jpg','U1534T1688093679.jpg','2023-06-30 02:54:39','2023-06-30
02:54:39',NULL,'1534',NULL,NULL),(5169,1534,'TOR','applicants_certifications/
U1534T1688093801.jpg','applicants_certifications','tor
2.jpg','U1534T1688093801.jpg','2023-06-30 02:56:41','2023-06-30
02:56:41',NULL,'1534',NULL,NULL),(5170,1534,'COE','applicants_certifications/
U1534T1688094042.jpg','applicants_certifications','SUBTITUTE
TEACHER.jpg','U1534T1688094042.jpg','2023-06-30 03:00:42','2023-06-30
03:00:42',NULL,'1534',NULL,NULL),(5176,1534,'COE','applicants_certifications/
U1534T1688094265.jpg','applicants_certifications','SEF
TEACHER.jpg','U1534T1688094265.jpg','2023-06-30 03:04:25','2023-06-30
03:04:25',NULL,'1534',NULL,NULL),(5177,1534,'COE','applicants_certifications/
U1534T1688094282.jpg','applicants_certifications','SITEL- CALL CENTER
AGENT.jpg','U1534T1688094282.jpg','2023-06-30 03:04:42','2023-06-30
03:04:42',NULL,'1534',NULL,NULL),(5179,1534,'SWT','applicants_certifications/
U1534T1688094433.jpg','applicants_certifications','DIGITIZATION OF LEARNING
MODULES.jpg','U1534T1688094433.jpg','2023-06-30 03:07:13','2023-06-30
03:07:13',NULL,'1534',NULL,NULL),(5180,1534,'SWT','applicants_certifications/
U1534T1688094579.jpg','applicants_certifications','DEPRESSION IN
TEENS.jpg','U1534T1688094579.jpg','2023-06-30 03:09:39','2023-06-30
03:09:39',NULL,'1534',NULL,NULL),(5181,1534,'SWT','applicants_certifications/
U1534T1688094605.jpg','applicants_certifications','GENERAL EDUCATION CORE COURSE
FACULTY TRAINING.jpg','U1534T1688094605.jpg','2023-06-30 03:10:05','2023-06-30
03:10:05',NULL,'1534',NULL,NULL),(5182,1534,'SWT','applicants_certifications/
U1534T1688094637.jpg','applicants_certifications','IPED INTEGRATION IN THE
ACADEME.jpg','U1534T1688094637.jpg','2023-06-30 03:10:37','2023-06-30
03:10:37',NULL,'1534',NULL,NULL),(5183,1114,'PDS','applicants_certifications/
U1114T1688094702.pdf','applicants_certifications','PDS
2023.pdf','U1114T1688094702.pdf','2023-06-30 03:11:42','2023-06-30
03:11:42',NULL,'1114',NULL,NULL),
(5184,1534,'ELIGIBILITY','applicants_certifications/
U1534T1688094766.jpg','applicants_certifications','PRC
LICENSE.jpg','U1534T1688094766.jpg','2023-06-30 03:12:46','2023-06-30
03:12:46',NULL,'1534',NULL,NULL),(5185,113,'PDS','applicants_certifications/
U113T1688094815.pdf','applicants_certifications','pds
worksheet.pdf','U113T1688094815.pdf','2023-06-30 03:13:35','2023-06-30
03:13:35',NULL,'113',NULL,NULL),(5186,113,'SWT','applicants_certifications/
U113T1688094909.pdf','applicants_certifications','trainings
attended.pdf','U113T1688094909.pdf','2023-06-30 03:15:09','2023-06-30
03:15:09',NULL,'113',NULL,NULL),(5187,1534,'PDS','applicants_certifications/
U1534T1688094929.jpg','applicants_certifications','PAGE
1.jpg','U1534T1688094929.jpg','2023-06-30 03:15:29','2023-06-30
03:15:29',NULL,'1534',NULL,NULL),(5188,1534,'PDS','applicants_certifications/
U1534T1706845201.jpg','applicants_certifications','Page
2.jpg','U1534T1706845201.jpg','2024-02-02 11:40:01','2024-02-02
11:40:01',NULL,'1534',NULL,NULL),(5189,1534,'PDS','applicants_certifications/
U1534T1688094964.jpg','applicants_certifications','PAGE
3.jpg','U1534T1688094964.jpg','2023-06-30 03:16:04','2023-06-30
03:16:04',NULL,'1534',NULL,NULL),(5190,1534,'PDS','applicants_certifications/
U1534T1706845564.jpg','applicants_certifications','Page
4.jpg','U1534T1706845564.jpg','2024-02-02 11:46:04','2024-02-02
11:46:04',NULL,'1534',NULL,NULL),(5193,1114,'COE','applicants_certifications/
U1114T1688096274.pdf','applicants_certifications','Proof of
employment.pdf','U1114T1688096274.pdf','2023-06-30 03:37:54','2023-06-30
03:37:54',NULL,'1114',NULL,NULL),(5194,1114,'SWT','applicants_certifications/
U1114T1688096321.pdf','applicants_certifications','Certificates:seminars.pdf','U111
4T1688096321.pdf','2023-06-30 03:38:41','2023-06-30
03:38:41',NULL,'1114',NULL,NULL),
(5195,1114,'ELIGIBILITY','applicants_certifications/
U1114T1688096348.pdf','applicants_certifications','CSC
epigibility.pdf','U1114T1688096348.pdf','2023-06-30 03:39:08','2023-06-30
03:39:08',NULL,'1114',NULL,NULL),(5196,1333,'PDS','applicants_certifications/
U1333T1688096532.pdf','applicants_certifications','pds.pdf','U1333T1688096532.pdf',
'2023-06-30 03:42:12','2023-06-30 03:42:12',NULL,'1333',NULL,NULL),
(5197,1114,'TOR','applicants_certifications/
U1114T1688096727.pdf','applicants_certifications','TOR
1.pdf','U1114T1688096727.pdf','2023-06-30 03:45:27','2023-06-30
03:45:27',NULL,'1114',NULL,NULL),(5198,1114,'TOR','applicants_certifications/
U1114T1688096754.pdf','applicants_certifications','TOR2.pdf','U1114T1688096754.pdf'
,'2023-06-30 03:45:54','2023-06-30 03:45:54',NULL,'1114',NULL,NULL),
(5200,1515,'PDS','applicants_certifications/
U1515T1688097597.pdf','applicants_certifications','PDS 1st
page.pdf','U1515T1688097597.pdf','2023-06-30 03:59:57','2023-06-30
03:59:57',NULL,'1515',NULL,NULL),(5201,1515,'PDS','applicants_certifications/
U1515T1688097665.pdf','applicants_certifications','PDS 2nd
page.pdf','U1515T1688097665.pdf','2023-06-30 04:01:05','2023-06-30
04:01:05',NULL,'1515',NULL,NULL),(5202,1515,'PDS','applicants_certifications/
U1515T1688098024.pdf','applicants_certifications','PDS 3rd
page.pdf','U1515T1688098024.pdf','2023-06-30 04:07:04','2023-06-30
04:07:04',NULL,'1515',NULL,NULL),(5204,1515,'PDS','applicants_certifications/
U1515T1688098510.pdf','applicants_certifications','PDS 4th
page.pdf','U1515T1688098510.pdf','2023-06-30 04:15:10','2023-06-30
04:15:10',NULL,'1515',NULL,NULL),(5205,1515,'PDS','applicants_certifications/
U1515T1688098552.pdf','applicants_certifications','PDS 5th
page.pdf','U1515T1688098552.pdf','2023-06-30 04:15:52','2023-06-30
04:15:52',NULL,'1515',NULL,NULL),(5206,1542,'TOR','applicants_certifications/
U1542T1688098565.pdf','applicants_certifications','TOR_Sicam.pdf','U1542T1688098565
.pdf','2023-06-30 04:16:05','2023-06-30 04:16:05',NULL,'1542',NULL,NULL),
(5207,1542,'COE','applicants_certifications/
U1542T1688098589.pdf','applicants_certifications','Certificate of
Employment_Sicam.pdf','U1542T1688098589.pdf','2023-06-30 04:16:29','2023-06-30
04:16:29',NULL,'1542',NULL,NULL),(5208,1542,'SWT','applicants_certifications/
U1542T1688098620.pdf','applicants_certifications','Seminar Workshop and Training
Certificates_Sicam.pdf','U1542T1688098620.pdf','2023-06-30 04:17:00','2023-06-30
04:17:00',NULL,'1542',NULL,NULL),
(5209,1542,'ELIGIBILITY','applicants_certifications/
U1542T1688098643.pdf','applicants_certifications','Certificate of Eligibility and
License_Sicam.pdf','U1542T1688098643.pdf','2023-06-30 04:17:23','2023-06-30
04:17:23',NULL,'1542',NULL,NULL),(5210,1515,'TOR','applicants_certifications/
U1515T1688098893.pdf','applicants_certifications','Transcript 1st
page.pdf','U1515T1688098893.pdf','2023-06-30 04:21:33','2023-06-30
04:21:33',NULL,'1515',NULL,NULL),(5211,1515,'TOR','applicants_certifications/
U1515T1688098912.pdf','applicants_certifications','Transcript 2nd
page.pdf','U1515T1688098912.pdf','2023-06-30 04:21:52','2023-06-30
04:21:52',NULL,'1515',NULL,NULL),(5212,1478,'COE','applicants_certifications/
U1478T1688099681.pdf','applicants_certifications','Palberas,Glyrel_COE.pdf','U1478T
1688099681.pdf','2023-06-30 04:34:41','2023-06-30 04:34:41',NULL,'1478',NULL,NULL),
(5213,1478,'PDS','applicants_certifications/
U1478T1688100014.pdf','applicants_certifications','Palberas, Glyrel_PDS &
WES.pdf','U1478T1688100014.pdf','2023-06-30 04:40:14','2023-06-30
04:40:14',NULL,'1478',NULL,NULL),
(5214,1235,'ELIGIBILITY','applicants_certifications/
U1235T1688101014.jpg','applicants_certifications','3. Certified CS Eligibility of
JNK.jpg','U1235T1688101014.jpg','2023-06-30 04:56:54','2023-06-30
04:56:54',NULL,'1235',NULL,NULL),(5215,1235,'PDS','applicants_certifications/
U1235T1688101038.pdf','applicants_certifications','2. Personal Data Sheet of
JKOgnayon.pdf','U1235T1688101038.pdf','2023-06-30 04:57:18','2023-06-30
04:57:18',NULL,'1235',NULL,NULL),
(5216,1541,'ELIGIBILITY','applicants_certifications/
U1541T1688101057.pdf','applicants_certifications','Eligibility.pdf','U1541T16881010
57.pdf','2023-06-30 04:57:37','2023-06-30 04:57:37',NULL,'1541',NULL,NULL),
(5217,1529,'ELIGIBILITY','applicants_certifications/
U1529T1688101142.pdf','applicants_certifications','Karl Asingal -
Eligibility.pdf','U1529T1688101142.pdf','2023-06-30 04:59:02','2023-06-30
04:59:02',NULL,'1529',NULL,NULL),(5218,1235,'TOR','applicants_certifications/
U1235T1688101563.pdf','applicants_certifications','TOR of JNK-
Ognayon.pdf','U1235T1688101563.pdf','2023-06-30 05:06:03','2023-06-30
05:06:03',NULL,'1235',NULL,NULL),(5219,1541,'COE','applicants_certifications/
U1541T1688101744.pdf','applicants_certifications','Service
Record.pdf','U1541T1688101744.pdf','2023-06-30 05:09:04','2023-06-30
05:09:04',NULL,'1541',NULL,NULL),(5220,1529,'COE','applicants_certifications/
U1529T1688101772.pdf','applicants_certifications','Karl
Asingal - Employment Certificates.pdf','U1529T1688101772.pdf','2023-06-30
05:09:32','2023-06-30 05:09:32',NULL,'1529',NULL,NULL),
(5221,1478,'TOR','applicants_certifications/
U1478T1688101840.pdf','applicants_certifications','Palberas, Glyrel_TOR &
Diploma.pdf','U1478T1688101840.pdf','2023-06-30 05:10:40','2023-06-30
05:10:40',NULL,'1478',NULL,NULL),(5222,1541,'SWT','applicants_certifications/
U1541T1688102007.pdf','applicants_certifications','Training.pdf','U1541T1688102007.
pdf','2023-06-30 05:13:27','2023-06-30 05:13:27',NULL,'1541',NULL,NULL),
(5223,1529,'SWT','applicants_certifications/
U1529T1688102555.pdf','applicants_certifications','Karl Asingal - Training
Certificates.pdf','U1529T1688102555.pdf','2023-06-30 05:22:35','2023-06-30
05:22:35',NULL,'1529',NULL,NULL),(5224,1529,'TOR','applicants_certifications/
U1529T1688103349.pdf','applicants_certifications','Karl Asingal - School
Credentials.pdf','U1529T1688103349.pdf','2023-06-30 05:35:49','2023-06-30
05:35:49',NULL,'1529',NULL,NULL),
(5227,1107,'ELIGIBILITY','applicants_certifications/
U1107T1688105255.jpg','applicants_certifications','inbound3568851379267305970.jpg',
'U1107T1688105255.jpg','2023-06-30 06:07:35','2023-06-30
06:07:35',NULL,'1107',NULL,NULL),(5228,1107,'PDS','applicants_certifications/
U1107T1688105278.jpg','applicants_certifications','inbound8235820874046616427.jpg',
'U1107T1688105278.jpg','2023-06-30 06:07:58','2023-06-30
06:07:58',NULL,'1107',NULL,NULL),(5229,1107,'PDS','applicants_certifications/
U1107T1688105299.jpg','applicants_certifications','inbound6947457138282255576.jpg',
'U1107T1688105299.jpg','2023-06-30 06:08:19','2023-06-30
06:08:19',NULL,'1107',NULL,NULL),(5230,1107,'PDS','applicants_certifications/
U1107T1688105320.jpg','applicants_certifications','inbound461691841676953582.jpg','
U1107T1688105320.jpg','2023-06-30 06:08:40','2023-06-30
06:08:40',NULL,'1107',NULL,NULL),(5231,1541,'PDS','applicants_certifications/
U1541T1688105512.pdf','applicants_certifications','PDS.pdf','U1541T1688105512.pdf',
'2023-06-30 06:11:52','2023-06-30 06:11:52',NULL,'1541',NULL,NULL),
(5232,1107,'SWT','applicants_certifications/
U1107T1688105759.jpg','applicants_certifications','inbound4926190529217291569.jpg',
'U1107T1688105759.jpg','2023-06-30 06:15:59','2023-06-30
06:15:59',NULL,'1107',NULL,NULL),(5233,1107,'SWT','applicants_certifications/
U1107T1688105803.jpg','applicants_certifications','inbound7676593724408212497.jpg',
'U1107T1688105803.jpg','2023-06-30 06:16:43','2023-06-30
06:16:43',NULL,'1107',NULL,NULL),(5234,1529,'PDS','applicants_certifications/
U1529T1688106170.pdf','applicants_certifications','Karl Asingal -
PDS.pdf','U1529T1688106170.pdf','2023-06-30 06:22:50','2023-06-30
06:22:50',NULL,'1529',NULL,NULL),(5236,1542,'PDS','applicants_certifications/
U1542T1688107579.pdf','applicants_certifications','Notarized-
PDS_Sicam.pdf','U1542T1688107579.pdf','2023-06-30 06:46:19','2023-06-30
06:46:19',NULL,'1542',NULL,NULL),(5238,1426,'TOR','applicants_certifications/
U1426T1688107778.pdf','applicants_certifications','Prof Ed Transcript of
Records.pdf','U1426T1688107778.pdf','2023-06-30 06:49:38','2023-06-30
06:49:38',NULL,'1426',NULL,NULL),(5239,1534,'PDS','applicants_certifications/
U1534T1706845724.jpg','applicants_certifications','Page5.1.jpg','U1534T1706845724.j
pg','2024-02-02 11:48:44','2024-02-02 11:48:44',NULL,'1534',NULL,NULL),
(5240,1534,'PDS','applicants_certifications/
U1534T1706845753.jpg','applicants_certifications','Page5.2.jpg','U1534T1706845753.j
pg','2024-02-02 11:49:13','2024-02-02 11:49:13',NULL,'1534',NULL,NULL),
(5243,1339,'TOR','applicants_certifications/
U1339T1688108658.pdf','applicants_certifications','Dengwas_RINAR_OTR.pdf','U1339T16
88108658.pdf','2023-06-30 07:04:18','2023-06-30 07:04:18',NULL,'1339',NULL,NULL),
(5244,1339,'PDS','applicants_certifications/
U1339T1688108989.pdf','applicants_certifications','Dengwas_Rinar_PDS.pdf','U1339T16
88108989.pdf','2023-06-30 07:09:49','2023-06-30 07:09:49',NULL,'1339',NULL,NULL),
(5245,1264,'PDS','applicants_certifications/
U1264T1688109282.pdf','applicants_certifications','PDS
1.pdf','U1264T1688109282.pdf','2023-06-30 07:14:42','2023-06-30
07:14:42',NULL,'1264',NULL,NULL),(5247,1264,'PDS','applicants_certifications/
U1264T1688109320.pdf','applicants_certifications','PDS
2.pdf','U1264T1688109320.pdf','2023-06-30 07:15:20','2023-06-30
07:15:20',NULL,'1264',NULL,NULL),(5249,1264,'PDS','applicants_certifications/
U1264T1688109343.pdf','applicants_certifications','PDS
3.pdf','U1264T1688109343.pdf','2023-06-30 07:15:43','2023-06-30
07:15:43',NULL,'1264',NULL,NULL),(5250,1264,'PDS','applicants_certifications/
U1264T1688109370.pdf','applicants_certifications','PDS
4.pdf','U1264T1688109370.pdf','2023-06-30 07:16:10','2023-06-30
07:16:10',NULL,'1264',NULL,NULL),(5252,1264,'PDS','applicants_certifications/
U1264T1688109394.pdf','applicants_certifications','OWRK EXP
SHEET.pdf','U1264T1688109394.pdf','2023-06-30 07:16:34','2023-06-30
07:16:34',NULL,'1264',NULL,NULL),
(5253,1426,'ELIGIBILITY','applicants_certifications/
U1426T1688109512.pdf','applicants_certifications','Certificate of Eligibility CSC
Prof.pdf','U1426T1688109512.pdf','2023-06-30 07:18:32','2023-06-30
07:18:32',NULL,'1426',NULL,NULL),
(5255,1426,'ELIGIBILITY','applicants_certifications/
U1426T1688109605.pdf','applicants_certifications','Certificate of Passing-
PRC.pdf','U1426T1688109605.pdf','2023-06-30 07:20:05','2023-06-30
07:20:05',NULL,'1426',NULL,NULL),(5257,1426,'COE','applicants_certifications/
U1426T1688109694.pdf','applicants_certifications','Certificate of Employment
CCFAPI.pdf','U1426T1688109694.pdf','2023-06-30 07:21:34','2023-06-30
07:21:34',NULL,'1426',NULL,NULL),(5258,326,'PDS','applicants_certifications/
U326T1688109724.pdf','applicants_certifications','KEROVIN T. PADUA
PDS.pdf','U326T1688109724.pdf','2023-06-30 07:22:04','2023-06-30
07:22:04',NULL,'326',NULL,NULL),(5259,1426,'COE','applicants_certifications/
U1426T1688109750.pdf','applicants_certifications','Certificate of Employment
GNCHI.pdf','U1426T1688109750.pdf','2023-06-30 07:22:30','2023-06-30
07:22:30',NULL,'1426',NULL,NULL),(5261,1426,'SWT','applicants_certifications/
U1426T1688109853.pdf','applicants_certifications','Training & Seminar
Certificate.pdf','U1426T1688109853.pdf','2023-06-30 07:24:13','2023-06-30
07:24:13',NULL,'1426',NULL,NULL),(5262,1288,'PDS','applicants_certifications/
U1288T1688109862.jpeg','applicants_certifications','IMG_2481.jpeg','U1288T168810986
2.jpeg','2023-06-30 07:24:22','2023-06-30 07:24:22',NULL,'1288',NULL,NULL),
(5263,1426,'SWT','applicants_certifications/
U1426T1688109891.pdf','applicants_certifications','Training & Seminar Certificate
2.pdf','U1426T1688109891.pdf','2023-06-30 07:24:51','2023-06-30
07:24:51',NULL,'1426',NULL,NULL),(5264,1288,'PDS','applicants_certifications/
U1288T1688109893.jpeg','applicants_certifications','IMG_2482.jpeg','U1288T168810989
3.jpeg','2023-06-30 07:24:53','2023-06-30 07:24:53',NULL,'1288',NULL,NULL),
(5265,1288,'PDS','applicants_certifications/
U1288T1688109931.jpeg','applicants_certifications','IMG_2505.jpeg','U1288T168810993
1.jpeg','2023-06-30 07:25:31','2023-06-30 07:25:31',NULL,'1288',NULL,NULL),
(5266,1426,'PDS','applicants_certifications/
U1426T1688109983.xlsx','applicants_certifications','PDS-2017 Admin
PES.xlsx','U1426T1688109983.xlsx','2023-06-30 07:26:23','2023-06-30
07:26:23',NULL,'1426',NULL,NULL),(5267,1288,'PDS','applicants_certifications/
U1288T1688110004.jpeg','applicants_certifications','IMG_2486.jpeg','U1288T168811000
4.jpeg','2023-06-30 07:26:44','2023-06-30 07:26:44',NULL,'1288',NULL,NULL),
(5268,1426,'PDS','applicants_certifications/
U1426T1688110080.docx','applicants_certifications','Resume 2021
ph.docx','U1426T1688110080.docx','2023-06-30 07:28:00','2023-06-30
07:28:00',NULL,'1426',NULL,NULL),(5270,1510,'PDS','applicants_certifications/
U1510T1688110280.pdf','applicants_certifications','PDS.pdf','U1510T1688110280.pdf',
'2023-06-30 07:31:20','2023-06-30 07:31:20',NULL,'1510',NULL,NULL),
(5271,1548,'TOR','applicants_certifications/
U1548T1688110570.jpg','applicants_certifications','TOR PAGE
1.jpg','U1548T1688110570.jpg','2023-06-30 07:36:10','2023-06-30
07:36:10',NULL,'1548',NULL,NULL),(5272,1548,'TOR','applicants_certifications/
U1548T1688110495.jpg','applicants_certifications','TOR PAGE
2.jpg','U1548T1688110495.jpg','2023-06-30 07:34:55','2023-06-30
07:34:55',NULL,'1548',NULL,NULL),(5273,1551,'COE','applicants_certifications/
U1551T1688110534.pdf','applicants_certifications','Cert. of
Employment.pdf','U1551T1688110534.pdf','2023-06-30 07:35:34','2023-06-30
07:35:34',NULL,'1551',NULL,NULL),(5274,1551,'SWT','applicants_certifications/
U1551T1688110554.pdf','applicants_certifications','certificates.pdf','U1551T1688110
554.pdf','2023-06-30 07:35:54','2023-06-30 07:35:54',NULL,'1551',NULL,NULL),
(5275,1551,'ELIGIBILITY','applicants_certifications/
U1551T1688110587.pdf','applicants_certifications','PRC.pdf','U1551T1688110587.pdf',
'2023-06-30 07:36:27','2023-06-30 07:36:27',NULL,'1551',NULL,NULL),
(5276,1548,'COE','applicants_certifications/
U1548T1688110712.png','applicants_certifications','DULNUAN-
COE.png','U1548T1688110712.png','2023-06-30 07:38:32','2023-06-30
07:38:32',NULL,'1548',NULL,NULL),(5277,1264,'SWT','applicants_certifications/
U1264T1688110789.pdf','applicants_certifications','appreciation
1.pdf','U1264T1688110789.pdf','2023-06-30 07:39:49','2023-06-30
07:39:49',NULL,'1264',NULL,NULL),(5279,1264,'SWT','applicants_certifications/
U1264T1688110828.pdf','applicants_certifications','appreciation.pdf','U1264T1688110
828.pdf','2023-06-30 07:40:28','2023-06-30 07:40:28',NULL,'1264',NULL,NULL),
(5280,1264,'SWT','applicants_certifications/
U1264T1688110845.pdf','applicants_certifications','recognition.pdf','U1264T16881108
45.pdf','2023-06-30 07:40:45','2023-06-30 07:40:45',NULL,'1264',NULL,NULL),
(5281,1264,'SWT','applicants_certifications/
U1264T1688110865.pdf','applicants_certifications','training
1.pdf','U1264T1688110865.pdf','2023-06-30 07:41:05','2023-06-30
07:41:05',NULL,'1264',NULL,NULL),(5282,1264,'SWT','applicants_certifications/
U1264T1688110885.pdf','applicants_certifications','training
2.pdf','U1264T1688110885.pdf','2023-06-30 07:41:25','2023-06-30
07:41:25',NULL,'1264',NULL,NULL),(5283,1264,'SWT','applicants_certifications/
U1264T1688110907.pdf','applicants_certifications','training
3.pdf','U1264T1688110907.pdf','2023-06-30 07:41:47','2023-06-30
07:41:47',NULL,'1264',NULL,NULL),(5284,1264,'SWT','applicants_certifications/
U1264T1688110924.pdf','applicants_certifications','training
4.pdf','U1264T1688110924.pdf','2023-06-30 07:42:04','2023-06-30
07:42:04',NULL,'1264',NULL,NULL),(5285,1264,'SWT','applicants_certifications/
U1264T1688110944.pdf','applicants_certifications','training
5.pdf','U1264T1688110944.pdf','2023-06-30 07:42:24','2023-06-30
07:42:24',NULL,'1264',NULL,NULL),(5286,1264,'SWT','applicants_certifications/
U1264T1688110957.pdf','applicants_certifications','training
6.pdf','U1264T1688110957.pdf','2023-06-30 07:42:37','2023-06-30
07:42:37',NULL,'1264',NULL,NULL),
(5287,1548,'ELIGIBILITY','applicants_certifications/
U1548T1688111048.png','applicants_certifications','CSC PROFESSIONAL
EXAM.png','U1548T1688111048.png','2023-06-30 07:44:08','2023-06-30
07:44:08',NULL,'1548',NULL,NULL),
(5288,1548,'ELIGIBILITY','applicants_certifications/
U1548T1688111064.png','applicants_certifications','AUTHENTICATED PRC
LICENSE.png','U1548T1688111064.png','2023-06-30 07:44:24','2023-06-30
07:44:24',NULL,'1548',NULL,NULL),(5289,1339,'SWT','applicants_certifications/
U1339T1688111068.jpg','applicants_certifications','HTMLandCSS.jpg','U1339T168811106
8.jpg','2023-06-30 07:44:28','2023-06-30 07:44:28',NULL,'1339',NULL,NULL),
(5290,1551,'PDS','applicants_certifications/
U1551T1688111085.pdf','applicants_certifications','Pdf.pdf','U1551T1688111085.pdf',
'2023-06-30 07:44:45','2023-06-30 07:44:45',NULL,'1551',NULL,NULL),
(5291,1339,'SWT','applicants_certifications/
U1339T1688111087.png','applicants_certifications','icip_certification.png','U1339T1
688111087.png','2023-06-30 07:44:47','2023-06-30 07:44:47',NULL,'1339',NULL,NULL),
(5292,1264,'COE','applicants_certifications/
U1264T1688111198.pdf','applicants_certifications','employment.pdf','U1264T168811119
8.pdf','2023-06-30 07:46:38','2023-06-30 07:46:38',NULL,'1264',NULL,NULL),
(5293,1264,'COE','applicants_certifications/
U1264T1688111307.pdf','applicants_certifications','appointment.pdf','U1264T16881113
07.pdf','2023-06-30 07:48:27','2023-06-30 07:48:27',NULL,'1264',NULL,NULL),
(5294,1526,'TOR','applicants_certifications/
U1526T1688111319.pdf','applicants_certifications','TOR.pdf','U1526T1688111319.pdf',
'2023-06-30 07:48:39','2023-06-30 07:48:39',NULL,'1526',NULL,NULL),
(5295,1526,'PDS','applicants_certifications/
U1526T1688111335.pdf','applicants_certifications','PDS.pdf','U1526T1688111335.pdf',
'2023-06-30 07:48:55','2023-06-30 07:48:55',NULL,'1526',NULL,NULL),
(5296,1264,'COE','applicants_certifications/
U1264T1688111395.pdf','applicants_certifications','certification of employment
(6).pdf','U1264T1688111395.pdf','2023-06-30 07:49:55','2023-06-30
07:49:55',NULL,'1264',NULL,NULL),(5297,1526,'SWT','applicants_certifications/
U1526T1688111439.png','applicants_certifications','Basic Photography and
Videography Training.png','U1526T1688111439.png','2023-06-30 07:50:39','2023-06-30
07:50:39',NULL,'1526',NULL,NULL),(5299,1526,'SWT','applicants_certifications/
U1526T1688111480.png','applicants_certifications','Advanced Photoshop with Post
Processing.png','U1526T1688111480.png','2023-06-30 07:51:20','2023-06-30
07:51:20',NULL,'1526',NULL,NULL),(5300,1526,'COE','applicants_certifications/
U1526T1688111493.pdf','applicants_certifications','IPCR.pdf','U1526T1688111493.pdf'
,'2023-06-30 07:51:33','2023-06-30 07:51:33',NULL,'1526',NULL,NULL),
(5301,1264,'PDS','applicants_certifications/
U1264T1688111505.pdf','applicants_certifications','application
letter.pdf','U1264T1688111505.pdf','2023-06-30 07:51:45','2023-06-30
07:51:45',NULL,'1264',NULL,NULL),(5302,1264,'COE','applicants_certifications/
U1264T1688111534.pdf','applicants_certifications','IPCR
NM.pdf','U1264T1688111534.pdf','2023-06-30 07:52:14','2023-06-30
07:52:14',NULL,'1264',NULL,NULL),(5303,1245,'TOR','applicants_certifications/
U1245T1688111743.pdf','applicants_certifications','DESAMITO, SUNSHINE F.
(Application).pdf','U1245T1688111743.pdf','2023-06-30 07:55:43','2023-06-30
07:55:43',NULL,'1245',NULL,NULL),(5304,1245,'TOR','applicants_certifications/
U1245T1688111783.pdf','applicants_certifications','DESAMITO, SUNSHINE F.
(Application).pdf','U1245T1688111783.pdf','2023-06-30 07:56:23','2023-06-30
07:56:23',NULL,'1245',NULL,NULL),(5305,1551,'TOR','applicants_certifications/
U1551T1688112361.pdf','applicants_certifications','TOR
_compressed.pdf','U1551T1688112361.pdf','2023-06-30 08:06:01','2023-06-30
08:06:01',NULL,'1551',NULL,NULL),
(5311,1508,'ELIGIBILITY','applicants_certifications/
U1508T1688113444.pdf','applicants_certifications','License.pdf','U1508T1688113444.p
df','2023-06-30 08:24:04','2023-06-30 08:24:04',NULL,'1508',NULL,NULL),
(5312,1508,'PDS','applicants_certifications/
U1508T1688115537.jpg','applicants_certifications','PDS 3 of
4.jpg','U1508T1688115537.jpg','2023-06-30 08:58:57','2023-06-30
08:58:57',NULL,'1508',NULL,NULL),(5314,1508,'PDS','applicants_certifications/
U1508T1688115694.jpg','applicants_certifications','PDS 2 OF
4.jpg','U1508T1688115694.jpg','2023-06-30 09:01:34','2023-06-30
09:01:34',NULL,'1508',NULL,NULL),(5315,1508,'PDS','applicants_certifications/
U1508T1688115716.jpg','applicants_certifications','PDS 1 OF
4.jpg','U1508T1688115716.jpg','2023-06-30 09:01:56','2023-06-30
09:01:56',NULL,'1508',NULL,NULL),(5316,1508,'PDS','applicants_certifications/
U1508T1688115735.jpg','applicants_certifications','PDS 4 of
4.jpg','U1508T1688115735.jpg','2023-06-30 09:02:15','2023-06-30
09:02:15',NULL,'1508',NULL,NULL),(5317,1438,'COE','applicants_certifications/
U1438T1688116738.pdf','applicants_certifications','IPCR.pdf','U1438T1688116738.pdf'
,'2023-06-30 09:18:58','2023-06-30 09:18:58',NULL,'1438',NULL,NULL),
(5318,1438,'PDS','applicants_certifications/
U1438T1688116790.pdf','applicants_certifications','Application Letter - Accountant
II.pdf','U1438T1688116790.pdf','2023-06-30 09:19:50','2023-06-30
09:19:50',NULL,'1438',NULL,NULL),(5319,1401,'PDS','applicants_certifications/
U1401T1688117937.jpg','applicants_certifications','APU
TOR_000.jpg','U1401T1688117937.jpg','2023-06-30 09:38:57','2023-06-30
09:38:57',NULL,'1401',NULL,NULL),(5321,1401,'PDS','applicants_certifications/
U1401T1688117956.jpg','applicants_certifications','APU
TOR_001.jpg','U1401T1688117956.jpg','2023-06-30 09:39:16','2023-06-30
09:39:16',NULL,'1401',NULL,NULL),(5322,1401,'PDS','applicants_certifications/
U1401T1688117967.jpg','applicants_certifications','APU
TOR_002.jpg','U1401T1688117967.jpg','2023-06-30 09:39:27','2023-06-30
09:39:27',NULL,'1401',NULL,NULL),(5323,1401,'PDS','applicants_certifications/
U1401T1688117977.jpg','applicants_certifications','APU
TOR_003.jpg','U1401T1688117977.jpg','2023-06-30 09:39:37','2023-06-30
09:39:37',NULL,'1401',NULL,NULL),(5324,1401,'PDS','applicants_certifications/
U1401T1688117989.jpg','applicants_certifications','APU
TOR_004.jpg','U1401T1688117989.jpg','2023-06-30 09:39:49','2023-06-30
09:39:49',NULL,'1401',NULL,NULL),(5325,1401,'PDS','applicants_certifications/
U1401T1688118000.jpg','applicants_certifications','APU
TOR_005.jpg','U1401T1688118000.jpg','2023-06-30 09:40:00','2023-06-30
09:40:00',NULL,'1401',NULL,NULL),(5326,1401,'SWT','applicants_certifications/
U1401T1688118257.jpg','applicants_certifications','APU
Certs1_000.jpg','U1401T1688118257.jpg','2023-06-30 09:44:17','2023-06-30
09:44:17',NULL,'1401',NULL,NULL),(5335,1553,'SWT','applicants_certifications/
U1553T1688119455.jpg','applicants_certifications','a_03072023(4).jpg','U1553T168811
9455.jpg','2023-06-30 10:04:15','2023-06-30 10:04:15',NULL,'1553',NULL,NULL),
(5336,1553,'TOR','applicants_certifications/
U1553T1688119529.jpg','applicants_certifications','TOR-
2.jpg','U1553T1688119529.jpg','2023-06-30 10:05:29','2023-06-30
10:05:29',NULL,'1553',NULL,NULL),(5337,1556,'TOR','applicants_certifications/
U1556T1688119574.jpg','applicants_certifications','OTR
P1.jpg','U1556T1688119574.jpg','2023-06-30 10:06:14','2023-06-30
10:06:14',NULL,'1556',NULL,NULL),(5338,1556,'TOR','applicants_certifications/
U1556T1688119670.jpg','applicants_certifications','OTR
P2.jpg','U1556T1688119670.jpg','2023-06-30 10:07:50','2023-06-30
10:07:50',NULL,'1556',NULL,NULL),(5339,1553,'TOR','applicants_certifications/
U1553T1688119686.jpg','applicants_certifications','Cer.jpg','U1553T1688119686.jpg',
'2023-06-30 10:08:06','2023-06-30 10:08:06',NULL,'1553',NULL,NULL),
(5341,1553,'TOR','applicants_certifications/
U1553T1688119705.jpg','applicants_certifications','TOR-
3.jpg','U1553T1688119705.jpg','2023-06-30 10:08:25','2023-06-30
10:08:25',NULL,'1553',NULL,NULL),(5342,1556,'TOR','applicants_certifications/
U1556T1688119733.jpg','applicants_certifications','OTR
P3.jpg','U1556T1688119733.jpg','2023-06-30 10:08:53','2023-06-30
10:08:53',NULL,'1556',NULL,NULL),(5343,1553,'TOR','applicants_certifications/
U1553T1688119744.jpg','applicants_certifications','TOR-
1.jpg','U1553T1688119744.jpg','2023-06-30 10:09:04','2023-06-30
10:09:04',NULL,'1553',NULL,NULL),(5344,1556,'SWT','applicants_certifications/
U1556T1688119757.jpg','applicants_certifications','CERTIFICATE.jpg','U1556T16881197
57.jpg','2023-06-30 10:09:17','2023-06-30 10:09:17',NULL,'1556',NULL,NULL),
(5345,1553,'COE','applicants_certifications/
U1553T1688119769.jpg','applicants_certifications','C.E.5.jpg','U1553T1688119769.jpg
','2023-06-30 10:09:29','2023-06-30 10:09:29',NULL,'1553',NULL,NULL),
(5346,1556,'ELIGIBILITY','applicants_certifications/
U1556T1688119783.jpg','applicants_certifications','LICENSE.jpg','U1556T1688119783.j
pg','2023-06-30 10:09:43','2023-06-30 10:09:43',NULL,'1556',NULL,NULL),
(5347,1553,'COE','applicants_certifications/
U1553T1688119791.jpg','applicants_certifications','C.E.4.jpg','U1553T1688119791.jpg
','2023-06-30
10:09:51','2023-06-30 10:09:51',NULL,'1553',NULL,NULL),
(5348,1553,'COE','applicants_certifications/
U1553T1688119808.jpg','applicants_certifications','C.E.3.jpg','U1553T1688119808.jpg
','2023-06-30 10:10:08','2023-06-30 10:10:08',NULL,'1553',NULL,NULL),
(5349,1553,'COE','applicants_certifications/
U1553T1688119826.jpg','applicants_certifications','C.E.1.jpg','U1553T1688119826.jpg
','2023-06-30 10:10:26','2023-06-30 10:10:26',NULL,'1553',NULL,NULL),
(5350,1553,'COE','applicants_certifications/
U1553T1688119846.jpg','applicants_certifications','C.E.2.jpg','U1553T1688119846.jpg
','2023-06-30 10:10:46','2023-06-30 10:10:46',NULL,'1553',NULL,NULL),
(5352,1553,'SWT','applicants_certifications/
U1553T1688119903.jpg','applicants_certifications','a_03072023(2).jpg','U1553T168811
9903.jpg','2023-06-30 10:11:43','2023-06-30 10:11:43',NULL,'1553',NULL,NULL),
(5353,1553,'SWT','applicants_certifications/
U1553T1688119929.jpg','applicants_certifications','a_03072023(1).jpg','U1553T168811
9929.jpg','2023-06-30 10:12:09','2023-06-30 10:12:09',NULL,'1553',NULL,NULL),
(5355,1553,'SWT','applicants_certifications/
U1553T1688120030.jpg','applicants_certifications','a_03072023.jpg','U1553T168812003
0.jpg','2023-06-30 10:13:50','2023-06-30 10:13:50',NULL,'1553',NULL,NULL),
(5357,1505,'PDS','applicants_certifications/
U1505T1688120110.pdf','applicants_certifications','work experience
sheet.pdf','U1505T1688120110.pdf','2023-06-30 10:15:10','2023-06-30
10:15:10',NULL,'1505',NULL,NULL),(5358,1505,'PDS','applicants_certifications/
U1505T1688120150.pdf','applicants_certifications','Application IFSU(1)
(2).pdf','U1505T1688120150.pdf','2023-06-30 10:15:50','2023-06-30
10:15:50',NULL,'1505',NULL,NULL),(5359,1505,'PDS','applicants_certifications/
U1505T1688120170.pdf','applicants_certifications','ipcr.pdf','U1505T1688120170.pdf'
,'2023-06-30 10:16:10','2023-06-30 10:16:10',NULL,'1505',NULL,NULL),
(5360,1553,'SWT','applicants_certifications/
U1553T1688120464.jpg','applicants_certifications','a_03072023(3).jpg','U1553T168812
0464.jpg','2023-06-30 10:21:04','2023-06-30 10:21:04',NULL,'1553',NULL,NULL),
(5361,1553,'SWT','applicants_certifications/
U1553T1688120487.jpg','applicants_certifications','a_03072023(6).jpg','U1553T168812
0487.jpg','2023-06-30 10:21:27','2023-06-30 10:21:27',NULL,'1553',NULL,NULL),
(5362,1553,'SWT','applicants_certifications/
U1553T1688120511.jpg','applicants_certifications','a_03072023(5).jpg','U1553T168812
0511.jpg','2023-06-30 10:21:51','2023-06-30 10:21:51',NULL,'1553',NULL,NULL),
(5363,1553,'SWT','applicants_certifications/
U1553T1688120553.jpg','applicants_certifications','a_03072023(7).jpg','U1553T168812
0553.jpg','2023-06-30 10:22:33','2023-06-30 10:22:33',NULL,'1553',NULL,NULL),
(5364,1553,'ELIGIBILITY','applicants_certifications/
U1553T1688120629.jpg','applicants_certifications','PRC-
3.jpg','U1553T1688120629.jpg','2023-06-30 10:23:49','2023-06-30
10:23:49',NULL,'1553',NULL,NULL),
(5365,1553,'ELIGIBILITY','applicants_certifications/
U1553T1688120646.jpg','applicants_certifications','PRC-
2.jpg','U1553T1688120646.jpg','2023-06-30 10:24:06','2023-06-30
10:24:06',NULL,'1553',NULL,NULL),
(5366,1553,'ELIGIBILITY','applicants_certifications/
U1553T1688120662.jpg','applicants_certifications','PRC-
1.jpg','U1553T1688120662.jpg','2023-06-30 10:24:22','2023-06-30
10:24:22',NULL,'1553',NULL,NULL),(5367,1553,'PDS','applicants_certifications/
U1553T1688120684.jpg','applicants_certifications','WS-
2.jpg','U1553T1688120684.jpg','2023-06-30 10:24:44','2023-06-30
10:24:44',NULL,'1553',NULL,NULL),(5368,1553,'PDS','applicants_certifications/
U1553T1688120698.jpg','applicants_certifications','WS-
1.jpg','U1553T1688120698.jpg','2023-06-30 10:24:58','2023-06-30
10:24:58',NULL,'1553',NULL,NULL),(5369,1553,'PDS','applicants_certifications/
U1553T1688120713.jpg','applicants_certifications','PDS-
4.jpg','U1553T1688120713.jpg','2023-06-30 10:25:13','2023-06-30
10:25:13',NULL,'1553',NULL,NULL),(5370,1553,'PDS','applicants_certifications/
U1553T1688120726.jpg','applicants_certifications','PDS-
3.jpg','U1553T1688120726.jpg','2023-06-30 10:25:26','2023-06-30
10:25:26',NULL,'1553',NULL,NULL),(5371,1553,'PDS','applicants_certifications/
U1553T1688120745.jpg','applicants_certifications','PDS-
2.jpg','U1553T1688120745.jpg','2023-06-30 10:25:45','2023-06-30
10:25:45',NULL,'1553',NULL,NULL),(5372,1553,'PDS','applicants_certifications/
U1553T1688120761.jpg','applicants_certifications','PDS-
1.jpg','U1553T1688120761.jpg','2023-06-30 10:26:01','2023-06-30
10:26:01',NULL,'1553',NULL,NULL),(5373,1556,'PDS','applicants_certifications/
U1556T1688120824.docx','applicants_certifications','PDS.docx','U1556T1688120824.doc
x','2023-06-30 10:27:04','2023-06-30 10:27:04',NULL,'1556',NULL,NULL),
(5374,1553,'PDS','applicants_certifications/
U1553T1688120848.jpg','applicants_certifications','Application.jpg','U1553T16881208
48.jpg','2023-06-30 10:27:28','2023-06-30 10:27:28',NULL,'1553',NULL,NULL),
(5376,1550,'TOR','applicants_certifications/
U1550T1688123040.pdf','applicants_certifications','Transcript of
Records_3.pdf','U1550T1688123040.pdf','2023-06-30 11:04:00','2023-06-30
11:04:00',NULL,'1550',NULL,NULL),(5377,1550,'COE','applicants_certifications/
U1550T1688123073.pdf','applicants_certifications','Certificate of
Employment_6.pdf','U1550T1688123073.pdf','2023-06-30 11:04:33','2023-06-30
11:04:33',NULL,'1550',NULL,NULL),(5379,1550,'SWT','applicants_certifications/
U1550T1688123164.pdf','applicants_certifications','Certificate of
Training_5.pdf','U1550T1688123164.pdf','2023-06-30 11:06:04','2023-06-30
11:06:04',NULL,'1550',NULL,NULL),
(5380,1550,'ELIGIBILITY','applicants_certifications/
U1550T1688123189.pdf','applicants_certifications','Certificate of
Eligibility_4.pdf','U1550T1688123189.pdf','2023-06-30 11:06:29','2023-06-30
11:06:29',NULL,'1550',NULL,NULL),(5381,1550,'PDS','applicants_certifications/
U1550T1688123476.pdf','applicants_certifications','Personal Data Sheet
_2.pdf','U1550T1688123476.pdf','2023-06-30 11:11:16','2023-06-30
11:11:16',NULL,'1550',NULL,NULL),(5382,1550,'PDS','applicants_certifications/
U1550T1688123492.pdf','applicants_certifications','Work Experience
Sheet.pdf','U1550T1688123492.pdf','2023-06-30 11:11:32','2023-06-30
11:11:32',NULL,'1550',NULL,NULL),(5384,1550,'SWT','applicants_certifications/
U1550T1688123632.pdf','applicants_certifications','Certificate of
Recognition.pdf','U1550T1688123632.pdf','2023-06-30 11:13:52','2023-06-30
11:13:52',NULL,'1550',NULL,NULL),(5385,1550,'PDS','applicants_certifications/
U1550T1688123673.pdf','applicants_certifications','APPLICATION
Letter_1.pdf','U1550T1688123673.pdf','2023-06-30 11:14:33','2023-06-30
11:14:33',NULL,'1550',NULL,NULL),(5386,1557,'TOR','applicants_certifications/
U1557T1688124246.PDF','applicants_certifications','Transcript of
Records_APB.PDF','U1557T1688124246.PDF','2023-06-30 11:24:06','2023-06-30
11:24:06',NULL,'1557',NULL,NULL),(5387,1557,'COE','applicants_certifications/
U1557T1688124280.pdf','applicants_certifications','Certificate of
Employment_SGV_APB.pdf','U1557T1688124280.pdf','2023-06-30 11:24:40','2023-06-30
11:24:40',NULL,'1557',NULL,NULL),(5388,1557,'SWT','applicants_certifications/
U1557T1688124309.pdf','applicants_certifications','Training
List_SGV_APB.pdf','U1557T1688124309.pdf','2023-06-30 11:25:09','2023-06-30
11:25:09',NULL,'1557',NULL,NULL),
(5389,1557,'ELIGIBILITY','applicants_certifications/
U1557T1688124341.docx','applicants_certifications','CPA
License_APB.docx','U1557T1688124341.docx','2023-06-30 11:25:41','2023-06-30
11:25:41',NULL,'1557',NULL,NULL),
(5392,1557,'ELIGIBILITY','applicants_certifications/
U1557T1688124406.PDF','applicants_certifications','Certificate of
Eligibility_APB.PDF','U1557T1688124406.PDF','2023-06-30 11:26:46','2023-06-30
11:26:46',NULL,'1557',NULL,NULL),(5393,1557,'PDS','applicants_certifications/
U1557T1688124427.pdf','applicants_certifications','Personal Data
Sheet_APB.pdf','U1557T1688124427.pdf','2023-06-30 11:27:07','2023-06-30
11:27:07',NULL,'1557',NULL,NULL),(5394,1557,'PDS','applicants_certifications/
U1557T1688124439.docx','applicants_certifications','Work Experience
Sheet_APB.docx','U1557T1688124439.docx','2023-06-30 11:27:19','2023-06-30
11:27:19',NULL,'1557',NULL,NULL),(5395,1547,'COE','applicants_certifications/
U1547T1688131425.pdf','applicants_certifications','inbound8146433460336057017.pdf',
'U1547T1688131425.pdf','2023-06-30 13:23:45','2023-06-30
13:23:45',NULL,'1547',NULL,NULL),
(5396,1547,'ELIGIBILITY','applicants_certifications/
U1547T1688131501.pdf','applicants_certifications','inbound9202172262661088719.pdf',
'U1547T1688131501.pdf','2023-06-30 13:25:01','2023-06-30
13:25:01',NULL,'1547',NULL,NULL),(5397,1547,'PDS','applicants_certifications/
U1547T1688131843.pdf','applicants_certifications','inbound205313340390182579.pdf','
U1547T1688131843.pdf','2023-06-30 13:30:43','2023-06-30
13:30:43',NULL,'1547',NULL,NULL),(5398,1547,'TOR','applicants_certifications/
U1547T1688131920.pdf','applicants_certifications','inbound378099914502224053.pdf','
U1547T1688131920.pdf','2023-06-30 13:32:00','2023-06-30
13:32:00',NULL,'1547',NULL,NULL),(5399,1547,'SWT','applicants_certifications/
U1547T1688132014.pdf','applicants_certifications','inbound3944143075299153040.pdf',
'U1547T1688132014.pdf','2023-06-30 13:33:34','2023-06-30
13:33:34',NULL,'1547',NULL,NULL),(5400,1558,'PDS','applicants_certifications/
U1558T1688132555.xlsx','applicants_certifications','PDS Page 1- Caday, Cza-
csa.xlsx','U1558T1688132555.xlsx','2023-06-30 13:42:35','2023-06-30
13:42:35',NULL,'1558',NULL,NULL),(5401,1558,'PDS','applicants_certifications/
U1558T1688132592.xlsx','applicants_certifications','PDS Page 2- Caday, Cza-
csa.xlsx','U1558T1688132592.xlsx','2023-06-30 13:43:12','2023-06-30
13:43:12',NULL,'1558',NULL,NULL),(5402,1558,'PDS','applicants_certifications/
U1558T1688132621.xlsx','applicants_certifications','PDS Page 3- Caday, Cza-
csa.xlsx','U1558T1688132621.xlsx','2023-06-30 13:43:41','2023-06-30
13:43:41',NULL,'1558',NULL,NULL),(5403,1558,'PDS','applicants_certifications/
U1558T1688132647.xlsx','applicants_certifications','PDS
Page 4- Caday, Cza-csa.xlsx','U1558T1688132647.xlsx','2023-06-30 13:44:07','2023-
06-30 13:44:07',NULL,'1558',NULL,NULL),
(5404,1559,'TOR','applicants_certifications/
U1559T1688132673.jpg','applicants_certifications','inbound7534052576552046547.jpg',
'U1559T1688132673.jpg','2023-06-30 13:44:33','2023-06-30
13:44:33',NULL,'1559',NULL,NULL),(5409,1559,'TOR','applicants_certifications/
U1559T1688132873.jpg','applicants_certifications','inbound7849347600889552375.jpg',
'U1559T1688132873.jpg','2023-06-30 13:47:53','2023-06-30
13:47:53',NULL,'1559',NULL,NULL),(5410,1559,'TOR','applicants_certifications/
U1559T1688132889.jpg','applicants_certifications','inbound6890742461562203349.jpg',
'U1559T1688132889.jpg','2023-06-30 13:48:09','2023-06-30
13:48:09',NULL,'1559',NULL,NULL),(5412,1559,'TOR','applicants_certifications/
U1559T1688132955.jpg','applicants_certifications','inbound6179742028601750588.jpg',
'U1559T1688132955.jpg','2023-06-30 13:49:15','2023-06-30
13:49:15',NULL,'1559',NULL,NULL),(5413,1559,'COE','applicants_certifications/
U1559T1688133585.jpg','applicants_certifications','inbound3523291283171435.jpg','U1
559T1688133585.jpg','2023-06-30 13:59:45','2023-06-30
13:59:45',NULL,'1559',NULL,NULL),(5414,1559,'COE','applicants_certifications/
U1559T1688133606.jpg','applicants_certifications','inbound3413781535532525172.jpg',
'U1559T1688133606.jpg','2023-06-30 14:00:06','2023-06-30
14:00:06',NULL,'1559',NULL,NULL),(5416,1559,'COE','applicants_certifications/
U1559T1688133660.jpg','applicants_certifications','inbound2314250766821577962.jpg',
'U1559T1688133660.jpg','2023-06-30 14:01:00','2023-06-30
14:01:00',NULL,'1559',NULL,NULL),(5417,1559,'COE','applicants_certifications/
U1559T1688133698.jpg','applicants_certifications','inbound7854901645989034641.jpg',
'U1559T1688133698.jpg','2023-06-30 14:01:38','2023-06-30
14:01:38',NULL,'1559',NULL,NULL),(5420,1559,'SWT','applicants_certifications/
U1559T1688134855.jpg','applicants_certifications','inbound6981980964935010191.jpg',
'U1559T1688134855.jpg','2023-06-30 14:20:55','2023-06-30
14:20:55',NULL,'1559',NULL,NULL),(5421,1559,'SWT','applicants_certifications/
U1559T1688134872.jpg','applicants_certifications','inbound8338910252928526068.jpg',
'U1559T1688134872.jpg','2023-06-30 14:21:12','2023-06-30
14:21:12',NULL,'1559',NULL,NULL),(5422,1559,'SWT','applicants_certifications/
U1559T1688134889.jpg','applicants_certifications','inbound6750755814271018922.jpg',
'U1559T1688134889.jpg','2023-06-30 14:21:29','2023-06-30
14:21:29',NULL,'1559',NULL,NULL),(5424,1559,'SWT','applicants_certifications/
U1559T1688135083.jpg','applicants_certifications','inbound3056411522081203278.jpg',
'U1559T1688135083.jpg','2023-06-30 14:24:43','2023-06-30
14:24:43',NULL,'1559',NULL,NULL),(5425,1559,'SWT','applicants_certifications/
U1559T1688135099.jpg','applicants_certifications','inbound8078813054901110565.jpg',
'U1559T1688135099.jpg','2023-06-30 14:24:59','2023-06-30
14:24:59',NULL,'1559',NULL,NULL),
(5426,1559,'ELIGIBILITY','applicants_certifications/
U1559T1688135125.jpg','applicants_certifications','inbound7969820208914599639.jpg',
'U1559T1688135125.jpg','2023-06-30 14:25:25','2023-06-30
14:25:25',NULL,'1559',NULL,NULL),(5428,1559,'PDS','applicants_certifications/
U1559T1688136118.pdf','applicants_certifications','inbound5193813841135950670.pdf',
'U1559T1688136118.pdf','2023-06-30 14:41:58','2023-06-30
14:41:58',NULL,'1559',NULL,NULL),(5429,1562,'TOR','applicants_certifications/
U1562T1688144521.pdf','applicants_certifications','transcript-of-
records.pdf','U1562T1688144521.pdf','2023-06-30 17:02:01','2023-06-30
17:02:01',NULL,'1562',NULL,NULL),(5431,1562,'SWT','applicants_certifications/
U1562T1688144652.pdf','applicants_certifications','Trainings.pdf','U1562T1688144652
.pdf','2023-06-30 17:04:12','2023-06-30 17:04:12',NULL,'1562',NULL,NULL),
(5432,1562,'COE','applicants_certifications/
U1562T1688144678.pdf','applicants_certifications','Diploma.pdf','U1562T1688144678.p
df','2023-06-30 17:04:38','2023-06-30 17:04:38',NULL,'1562',NULL,NULL),
(5434,1562,'PDS','applicants_certifications/
U1562T1707103138.pdf','applicants_certifications','PDS with Work Sheet_ Sunshine
Robles B.pdf','U1562T1707103138.pdf','2024-02-05 11:18:58','2024-02-05
11:18:58',NULL,'1562',NULL,NULL),
(5435,1115,'ELIGIBILITY','applicants_certifications/
U1115T1688189740.pdf','applicants_certifications','.Board
Rating.pdf','U1115T1688189740.pdf','2023-07-01 05:35:40','2023-07-01
05:35:40',NULL,'1115',NULL,NULL),(5436,1368,'COE','applicants_certifications/
U1368T1688354266.pdf','applicants_certifications','CCO_000036.pdf','U1368T168835426
6.pdf','2023-07-03 03:17:46','2023-07-03 03:17:46',NULL,'1368',NULL,NULL),
(5437,105,'PDS','applicants_certifications/
U105T1688363551.pdf','applicants_certifications','inbound6448345669358384732.pdf','
U105T1688363551.pdf','2023-07-03 05:52:31','2023-07-03
05:52:31',NULL,'105',NULL,NULL),(5439,1133,'COE','applicants_certifications/
U1133T1688370023.pdf','applicants_certifications','COE
PACULANAN.pdf','U1133T1688370023.pdf','2023-07-03 07:40:23','2023-07-03
07:40:23',NULL,'1133',NULL,NULL),(5440,1381,'TOR','applicants_certifications/
U1381T1688371025.jpg','applicants_certifications','a1.jpg','U1381T1688371025.jpg','
2023-07-03 07:57:05','2023-07-03 07:57:05',NULL,'1381',NULL,NULL),
(5441,1381,'TOR','applicants_certifications/
U1381T1688371065.jpg','applicants_certifications','a2.jpg','U1381T1688371065.jpg','
2023-07-03 07:57:45','2023-07-03 07:57:45',NULL,'1381',NULL,NULL),
(5442,1381,'TOR','applicants_certifications/
U1381T1688371092.jpg','applicants_certifications','a3.jpg','U1381T1688371092.jpg','
2023-07-03 07:58:12','2023-07-03 07:58:12',NULL,'1381',NULL,NULL),
(5443,1381,'COE','applicants_certifications/
U1381T1688371186.jpg','applicants_certifications','Cert.
BNB.jpg','U1381T1688371186.jpg','2023-07-03 07:59:46','2023-07-03
07:59:46',NULL,'1381',NULL,NULL),
(5445,1381,'ELIGIBILITY','applicants_certifications/
U1381T1688371384.docx','applicants_certifications','ELIGIBILITY.docx','U1381T168837
1384.docx','2023-07-03 08:03:04','2023-07-03 08:03:04',NULL,'1381',NULL,NULL),
(5446,1381,'COE','applicants_certifications/
U1381T1688371545.pdf','applicants_certifications','IFSU -
COE.pdf','U1381T1688371545.pdf','2023-07-03 08:05:45','2023-07-03
08:05:45',NULL,'1381',NULL,NULL),(5447,1381,'SWT','applicants_certifications/
U1381T1688371629.jpg','applicants_certifications','CERT.
CEM.jpg','U1381T1688371629.jpg','2023-07-03 08:07:09','2023-07-03
08:07:09',NULL,'1381',NULL,NULL),(5448,1381,'TOR','applicants_certifications/
U1381T1688371688.jpg','applicants_certifications','TRUE COPY OF GRADES -
UPLB.jpg','U1381T1688371688.jpg','2023-07-03 08:08:08','2023-07-03
08:08:08',NULL,'1381',NULL,NULL),
(5449,1493,'ELIGIBILITY','applicants_certifications/
U1493T1688433682.jpg','applicants_certifications','Document
45_9.jpg','U1493T1688433682.jpg','2023-07-04 01:21:22','2023-07-04
01:21:22',NULL,'1493',NULL,NULL),(5451,1493,'PDS','applicants_certifications/
U1493T1688433850.jpg','applicants_certifications','Document
45_12.jpg','U1493T1688433850.jpg','2023-07-04 01:24:10','2023-07-04
01:24:10',NULL,'1493',NULL,NULL),(5452,1493,'PDS','applicants_certifications/
U1493T1688433877.jpg','applicants_certifications','Document
45_13.jpg','U1493T1688433877.jpg','2023-07-04 01:24:37','2023-07-04
01:24:37',NULL,'1493',NULL,NULL),(5453,1493,'PDS','applicants_certifications/
U1493T1688433897.jpg','applicants_certifications','Document
45_14.jpg','U1493T1688433897.jpg','2023-07-04 01:24:57','2023-07-04
01:24:57',NULL,'1493',NULL,NULL),(5454,1493,'PDS','applicants_certifications/
U1493T1688433913.jpg','applicants_certifications','Document
45_15.jpg','U1493T1688433913.jpg','2023-07-04 01:25:13','2023-07-04
01:25:13',NULL,'1493',NULL,NULL),(5456,969,'SWT','applicants_certifications/
U969T1688454767.pdf','applicants_certifications','BCEC Certificate of
Completion.pdf','U969T1688454767.pdf','2023-07-04 07:12:47','2023-07-04
07:12:47',NULL,'969',NULL,NULL),(5458,1218,'SWT','applicants_certifications/
U1218T1688956765.jpg','applicants_certifications','BOOKKEEPING.jpg','U1218T16889567
65.jpg','2023-07-10 02:39:25','2023-07-10 02:39:25',NULL,'1218',NULL,NULL),
(5459,1218,'SWT','applicants_certifications/
U1218T1688956780.pdf','applicants_certifications','XCL_PrintCertificate.pdf','U1218
T1688956780.pdf','2023-07-10 02:39:40','2023-07-10
02:39:40',NULL,'1218',NULL,NULL),(5460,1218,'SWT','applicants_certifications/
U1218T1688956801.pdf','applicants_certifications','QuickBooksOnlineCertification -
KAREN VIVIEN ABARA.pdf','U1218T1688956801.pdf','2023-07-10 02:40:01','2023-07-10
02:40:01',NULL,'1218',NULL,NULL),(5461,1570,'TOR','applicants_certifications/
U1570T1689397082.pdf','applicants_certifications','inbound2754721164150070773.pdf',
'U1570T1689397082.pdf','2023-07-15 04:58:02','2023-07-15
04:58:02',NULL,'1570',NULL,NULL),(5464,1570,'SWT','applicants_certifications/
U1570T1689398671.pdf','applicants_certifications','inbound5661888198220797008.pdf',
'U1570T1689398671.pdf','2023-07-15 05:24:31','2023-07-15
05:24:31',NULL,'1570',NULL,NULL),
(5472,1570,'ELIGIBILITY','applicants_certifications/
U1570T1689399097.pdf','applicants_certifications','inbound6817116734368093780.pdf',
'U1570T1689399097.pdf','2023-07-15 05:31:37','2023-07-15
05:31:37',NULL,'1570',NULL,NULL),(5473,1570,'PDS','applicants_certifications/
U1570T1689399982.pdf','applicants_certifications','inbound6046905616901075454.pdf',
'U1570T1689399982.pdf','2023-07-15 05:46:22','2023-07-15
05:46:22',NULL,'1570',NULL,NULL),(5474,1570,'COE','applicants_certifications/
U1570T1689400060.pdf','applicants_certifications','inbound6609824955068041411.pdf',
'U1570T1689400060.pdf','2023-07-15 05:47:40','2023-07-15
05:47:40',NULL,'1570',NULL,NULL),(5475,1570,'PDS','applicants_certifications/
U1570T1689400012.pdf','applicants_certifications','inbound2890453814916391763.pdf',
'U1570T1689400012.pdf','2023-07-15 05:46:52','2023-07-15
05:46:52',NULL,'1570',NULL,NULL),(5476,1570,'SWT','applicants_certifications/
U1570T1689400037.pdf','applicants_certifications','inbound5941093389911730144.pdf'
,'U1570T1689400037.pdf','2023-07-15 05:47:17','2023-07-15
05:47:17',NULL,'1570',NULL,NULL),(5477,1582,'TOR','applicants_certifications/
U1582T1690467629.pdf','applicants_certifications','Transcript of
Records.pdf','U1582T1690467629.pdf','2023-07-27 22:20:29','2023-07-27
22:20:29',NULL,'1582',NULL,NULL),
(5478,1583,'ELIGIBILITY','applicants_certifications/
U1583T1690467966.jpeg','applicants_certifications','received_535743388092823.jpeg',
'U1583T1690467966.jpeg','2023-07-27 22:26:06','2023-07-27
22:26:06',NULL,'1583',NULL,NULL),(5479,1583,'TOR','applicants_certifications/
U1583T1690468007.jpeg','applicants_certifications','received_713862713195842.jpeg',
'U1583T1690468007.jpeg','2023-07-27 22:26:47','2023-07-27
22:26:47',NULL,'1583',NULL,NULL),
(5481,1582,'ELIGIBILITY','applicants_certifications/
U1582T1690468087.pdf','applicants_certifications','Certificate of
Eligibility.pdf','U1582T1690468087.pdf','2023-07-27 22:28:07','2023-07-27
22:28:07',NULL,'1582',NULL,NULL),(5482,1582,'SWT','applicants_certifications/
U1582T1690468160.jpg','applicants_certifications','Document
2_17.jpg','U1582T1690468160.jpg','2023-07-27 22:29:20','2023-07-27
22:29:20',NULL,'1582',NULL,NULL),(5483,1582,'SWT','applicants_certifications/
U1582T1690468188.jpg','applicants_certifications','Document
2_18.jpg','U1582T1690468188.jpg','2023-07-27 22:29:48','2023-07-27
22:29:48',NULL,'1582',NULL,NULL),(5484,1582,'SWT','applicants_certifications/
U1582T1690468210.jpg','applicants_certifications','Document
2_19.jpg','U1582T1690468210.jpg','2023-07-27 22:30:10','2023-07-27
22:30:10',NULL,'1582',NULL,NULL),(5485,1582,'COE','applicants_certifications/
U1582T1690468234.jpg','applicants_certifications','Document
2_16.jpg','U1582T1690468234.jpg','2023-07-27 22:30:34','2023-07-27
22:30:34',NULL,'1582',NULL,NULL),(5486,1582,'COE','applicants_certifications/
U1582T1690468252.jpg','applicants_certifications','Document
2_14.jpg','U1582T1690468252.jpg','2023-07-27 22:30:52','2023-07-27
22:30:52',NULL,'1582',NULL,NULL),(5487,1582,'COE','applicants_certifications/
U1582T1690468275.jpg','applicants_certifications','Document
2_15.jpg','U1582T1690468275.jpg','2023-07-27 22:31:15','2023-07-27
22:31:15',NULL,'1582',NULL,NULL),(5492,1585,'TOR','applicants_certifications/
U1585T1690504875.pdf','applicants_certifications','TOR
FINAL.pdf','U1585T1690504875.pdf','2023-07-28 08:41:15','2023-07-28
08:41:15',NULL,'1585',NULL,NULL),
(5493,1585,'ELIGIBILITY','applicants_certifications/
U1585T1690504916.pdf','applicants_certifications','JORIAL -PRC
UPDATED.pdf','U1585T1690504916.pdf','2023-07-28 08:41:56','2023-07-28
08:41:56',NULL,'1585',NULL,NULL),
(5494,1585,'ELIGIBILITY','applicants_certifications/
U1585T1690504945.pdf','applicants_certifications','Jorial_ PRC
Forester.pdf','U1585T1690504945.pdf','2023-07-28 08:42:25','2023-07-28
08:42:25',NULL,'1585',NULL,NULL),
(5495,1585,'ELIGIBILITY','applicants_certifications/
U1585T1690504966.pdf','applicants_certifications','JORIAL_ PRC
TEACHER.pdf','U1585T1690504966.pdf','2023-07-28 08:42:46','2023-07-28
08:42:46',NULL,'1585',NULL,NULL),(5496,1585,'PDS','applicants_certifications/
U1585T1690504988.pdf','applicants_certifications','JORIAL PDS
2023.pdf','U1585T1690504988.pdf','2023-07-28 08:43:08','2023-07-28
08:43:08',NULL,'1585',NULL,NULL),(5497,1585,'SWT','applicants_certifications/
U1585T1690505160.pdf','applicants_certifications','[Certificate] UPC-Descriptive
Research.pdf','U1585T1690505160.pdf','2023-07-28 08:46:00','2023-07-28
08:46:00',NULL,'1585',NULL,NULL),(5498,1585,'SWT','applicants_certifications/
U1585T1690505183.pdf','applicants_certifications','Certificate for JETHER C.
JORIAL, RPF for _Feedback Survey on the UPLB..._.pdf','U1585T1690505183.pdf','2023-
07-28 08:46:23','2023-07-28 08:46:23',NULL,'1585',NULL,NULL),
(5499,1585,'SWT','applicants_certifications/
U1585T1690505210.pdf','applicants_certifications','Certificate FOR. JETHER CATE
JORIAL.pdf','U1585T1690505210.pdf','2023-07-28 08:46:50','2023-07-28
08:46:50',NULL,'1585',NULL,NULL),(5500,1585,'SWT','applicants_certifications/
U1585T1690505233.pdf','applicants_certifications','Hot Talk - Certificate of
Participation (FOR. JETHER CATE JORIAL).pdf','U1585T1690505233.pdf','2023-07-28
08:47:13','2023-07-28 08:47:13',NULL,'1585',NULL,NULL),
(5501,1585,'SWT','applicants_certifications/
U1585T1690505234.pdf','applicants_certifications','Hot Talk - Certificate of
Participation (FOR. JETHER CATE JORIAL).pdf','U1585T1690505234.pdf','2023-07-28
08:47:14','2023-07-28 08:47:14',NULL,'1585',NULL,NULL),
(5502,1586,'TOR','applicants_certifications/
U1586T1690506434.pdf','applicants_certifications','TOR.pdf','U1586T1690506434.pdf',
'2023-07-28 09:07:14','2023-07-28 09:07:14',NULL,'1586',NULL,NULL),
(5507,1586,'SWT','applicants_certifications/
U1586T1690507112.pdf','applicants_certifications','Seminar Workshops & Training
Certificates.pdf','U1586T1690507112.pdf','2023-07-28 09:18:32','2023-07-28
09:18:32',NULL,'1586',NULL,NULL),(5508,1586,'PDS','applicants_certifications/
U1586T1690507306.pdf','applicants_certifications','Personal Data
Sheet.pdf','U1586T1690507306.pdf','2023-07-28 09:21:46','2023-07-28
09:21:46',NULL,'1586',NULL,NULL),
(5510,1586,'ELIGIBILITY','applicants_certifications/
U1586T1690507488.pdf','applicants_certifications','Certificate of
Eligibility.pdf','U1586T1690507488.pdf','2023-07-28 09:24:48','2023-07-28
09:24:48',NULL,'1586',NULL,NULL),(5512,1589,'TOR','applicants_certifications/
U1589T1690523352.pdf','applicants_certifications','final
tor.pdf','U1589T1690523352.pdf','2023-07-28 13:49:12','2023-07-28
13:49:12',NULL,'1589',NULL,NULL),(5514,1589,'COE','applicants_certifications/
U1589T1690523650.jpg','applicants_certifications','003
(2).jpg','U1589T1690523650.jpg','2023-07-28 13:54:10','2023-07-28
13:54:10',NULL,'1589',NULL,NULL),(5515,1589,'COE','applicants_certifications/
U1589T1690523687.jpg','applicants_certifications','IMG20230205191616_01
(2).jpg','U1589T1690523687.jpg','2023-07-28 13:54:47','2023-07-28
13:54:47',NULL,'1589',NULL,NULL),(5516,1589,'SWT','applicants_certifications/
U1589T1690523714.jpg','applicants_certifications','005
(1).jpg','U1589T1690523714.jpg','2023-07-28 13:55:14','2023-07-28
13:55:14',NULL,'1589',NULL,NULL),(5517,1589,'SWT','applicants_certifications/
U1589T1690523740.jpg','applicants_certifications','006.jpg','U1589T1690523740.jpg',
'2023-07-28 13:55:40','2023-07-28 13:55:40',NULL,'1589',NULL,NULL),
(5518,1589,'SWT','applicants_certifications/
U1589T1690523761.jpg','applicants_certifications','003
(3).jpg','U1589T1690523761.jpg','2023-07-28 13:56:01','2023-07-28
13:56:01',NULL,'1589',NULL,NULL),(5519,1589,'SWT','applicants_certifications/
U1589T1690523781.jpg','applicants_certifications','004
(2).jpg','U1589T1690523781.jpg','2023-07-28 13:56:21','2023-07-28
13:56:21',NULL,'1589',NULL,NULL),(5520,1589,'SWT','applicants_certifications/
U1589T1690523804.jpg','applicants_certifications','002
(1).jpg','U1589T1690523804.jpg','2023-07-28 13:56:44','2023-07-28
13:56:44',NULL,'1589',NULL,NULL),(5521,1589,'SWT','applicants_certifications/
U1589T1690523822.jpg','applicants_certifications','IMG20230205191543_01
(2).jpg','U1589T1690523822.jpg','2023-07-28 13:57:02','2023-07-28
13:57:02',NULL,'1589',NULL,NULL),
(5522,1589,'ELIGIBILITY','applicants_certifications/
U1589T1690523875.jpg','applicants_certifications','Screenshot_20230723-
145659.jpg','U1589T1690523875.jpg','2023-07-28 13:57:55','2023-07-28
13:57:55',NULL,'1589',NULL,NULL),(5523,1589,'PDS','applicants_certifications/
U1589T1690523951.jpg','applicants_certifications','Document_4.jpg','U1589T169052395
1.jpg','2023-07-28 13:59:11','2023-07-28 13:59:11',NULL,'1589',NULL,NULL),
(5524,1589,'PDS','applicants_certifications/
U1589T1690524022.jpg','applicants_certifications','Document_6.jpg','U1589T169052402
2.jpg','2023-07-28 14:00:22','2023-07-28 14:00:22',NULL,'1589',NULL,NULL),
(5525,1589,'PDS','applicants_certifications/
U1589T1690524050.jpg','applicants_certifications','Document_7.jpg','U1589T169052405
0.jpg','2023-07-28 14:00:50','2023-07-28 14:00:50',NULL,'1589',NULL,NULL),
(5526,1589,'PDS','applicants_certifications/
U1589T1690524070.jpg','applicants_certifications','Document_8.jpg','U1589T169052407
0.jpg','2023-07-28 14:01:10','2023-07-28 14:01:10',NULL,'1589',NULL,NULL),
(5528,1592,'TOR','applicants_certifications/
U1592T1690543772.JPG','applicants_certifications','Tor1.JPG','U1592T1690543772.JPG'
,'2023-07-28 19:29:32','2023-07-28 19:29:32',NULL,'1592',NULL,NULL),
(5529,1592,'TOR','applicants_certifications/
U1592T1690543812.JPG','applicants_certifications','tor2.JPG','U1592T1690543812.JPG'
,'2023-07-28 19:30:12','2023-07-28 19:30:12',NULL,'1592',NULL,NULL),
(5533,1592,'PDS','applicants_certifications/
U1592T1690543980.JPG','applicants_certifications','Ps1.JPG','U1592T1690543980.JPG',
'2023-07-28 19:33:00','2023-07-28 19:33:00',NULL,'1592',NULL,NULL),
(5534,1592,'PDS','applicants_certifications/
U1592T1690544007.JPG','applicants_certifications','ps2.JPG','U1592T1690544007.JPG',
'2023-07-28 19:33:27','2023-07-28 19:33:27',NULL,'1592',NULL,NULL),
(5535,1592,'PDS','applicants_certifications/
U1592T1690544029.JPG','applicants_certifications','ps3.JPG','U1592T1690544029.JPG',
'2023-07-28 19:33:49','2023-07-28 19:33:49',NULL,'1592',NULL,NULL),
(5536,1592,'PDS','applicants_certifications/
U1592T1690544136.JPG','applicants_certifications','ps4.JPG','U1592T1690544136.JPG',
'2023-07-28 19:35:36','2023-07-28 19:35:36',NULL,'1592',NULL,NULL),
(5537,1592,'PDS','applicants_certifications/
U1592T1690544167.JPG','applicants_certifications','ps5.JPG','U1592T1690544167.JPG',
'2023-07-28 19:36:07','2023-07-28 19:36:07',NULL,'1592',NULL,NULL),
(5538,1592,'ELIGIBILITY','applicants_certifications/
U1592T1690544196.JPG','applicants_certifications','Stitched Page
9.JPG','U1592T1690544196.JPG','2023-07-28 19:36:36','2023-07-28
19:36:36',NULL,'1592',NULL,NULL),(5540,1592,'SWT','applicants_certifications/
U1592T1690544295.jpg','applicants_certifications','training.jpg','U1592T1690544295.
jpg','2023-07-28
19:38:15','2023-07-28 19:38:15',NULL,'1592',NULL,NULL),
(5542,1468,'ELIGIBILITY','applicants_certifications/
U1468T1690550884.jpg','applicants_certifications','CORTEZ - PD 907 Honor
Graduate.jpg','U1468T1690550884.jpg','2023-07-28 21:28:04','2023-07-28
21:28:04',NULL,'1468',NULL,NULL),(5543,1597,'TOR','applicants_certifications/
U1597T1690604331.pdf','applicants_certifications','Transcript of Record Zevadiane
Andres.pdf','U1597T1690604331.pdf','2023-07-29 12:18:51','2023-07-29
12:18:51',NULL,'1597',NULL,NULL),(5544,1597,'SWT','applicants_certifications/
U1597T1690604351.pdf','applicants_certifications','Training Cert Zevadiane
Andres.pdf','U1597T1690604351.pdf','2023-07-29 12:19:11','2023-07-29
12:19:11',NULL,'1597',NULL,NULL),
(5545,1597,'ELIGIBILITY','applicants_certifications/
U1597T1690604375.pdf','applicants_certifications','License Zevadiane
Andres.pdf','U1597T1690604375.pdf','2023-07-29 12:19:35','2023-07-29
12:19:35',NULL,'1597',NULL,NULL),(5546,1597,'PDS','applicants_certifications/
U1597T1690604388.pdf','applicants_certifications','PDS Zevadiane
Andres.pdf','U1597T1690604388.pdf','2023-07-29 12:19:48','2023-07-29
12:19:48',NULL,'1597',NULL,NULL),(5548,1598,'TOR','applicants_certifications/
U1598T1690609068.pdf','applicants_certifications','TOR.pdf','U1598T1690609068.pdf',
'2023-07-29 13:37:48','2023-07-29 13:37:48',NULL,'1598',NULL,NULL),
(5549,1598,'COE','applicants_certifications/
U1598T1690609317.pdf','applicants_certifications','Certificate of
Employment.pdf','U1598T1690609317.pdf','2023-07-29 13:41:57','2023-07-29
13:41:57',NULL,'1598',NULL,NULL),
(5550,1598,'ELIGIBILITY','applicants_certifications/
U1598T1690610313.pdf','applicants_certifications','Certificate of Eligibility &
License.pdf','U1598T1690610313.pdf','2023-07-29 13:58:33','2023-07-29
13:58:33',NULL,'1598',NULL,NULL),(5551,1599,'TOR','applicants_certifications/
U1599T1690614563.pdf','applicants_certifications','ToR
final.pdf','U1599T1690614563.pdf','2023-07-29 15:09:23','2023-07-29
15:09:23',NULL,'1599',NULL,NULL),(5554,1598,'SWT','applicants_certifications/
U1598T1690618032.pdf','applicants_certifications','CERTIFICATE
(1).pdf','U1598T1690618032.pdf','2023-07-29 16:07:12','2023-07-29
16:07:12',NULL,'1598',NULL,NULL),(5556,1591,'TOR','applicants_certifications/
U1591T1690624488.jpg','applicants_certifications','CamScanner 07-28-2023
20.48.jpg','U1591T1690624488.jpg','2023-07-29 17:54:48','2023-07-29
17:54:48',NULL,'1591',NULL,NULL),(5557,1591,'TOR','applicants_certifications/
U1591T1690624508.jpg','applicants_certifications','CamScanner 07-28-2023
20.49.jpg','U1591T1690624508.jpg','2023-07-29 17:55:08','2023-07-29
17:55:08',NULL,'1591',NULL,NULL),(5558,1591,'TOR','applicants_certifications/
U1591T1690624524.jpg','applicants_certifications','CamScanner 07-28-2023 20.49
(1).jpg','U1591T1690624524.jpg','2023-07-29 17:55:24','2023-07-29
17:55:24',NULL,'1591',NULL,NULL),
(5559,1591,'ELIGIBILITY','applicants_certifications/
U1591T1690624556.jpg','applicants_certifications','CamScanner 07-28-2023
20.38.jpg','U1591T1690624556.jpg','2023-07-29 17:55:56','2023-07-29
17:55:56',NULL,'1591',NULL,NULL),(5560,1591,'PDS','applicants_certifications/
U1591T1690624583.jpg','applicants_certifications','CamScanner 07-28-2023
20.41.jpg','U1591T1690624583.jpg','2023-07-29 17:56:23','2023-07-29
17:56:23',NULL,'1591',NULL,NULL),(5561,1591,'PDS','applicants_certifications/
U1591T1690624625.jpg','applicants_certifications','CamScanner 07-28-2023
22.01.jpg','U1591T1690624625.jpg','2023-07-29 17:57:05','2023-07-29
17:57:05',NULL,'1591',NULL,NULL),(5562,1591,'PDS','applicants_certifications/
U1591T1690624640.jpg','applicants_certifications','CamScanner 07-28-2023 22.01
(1).jpg','U1591T1690624640.jpg','2023-07-29 17:57:20','2023-07-29
17:57:20',NULL,'1591',NULL,NULL),(5563,1591,'PDS','applicants_certifications/
U1591T1690624655.jpg','applicants_certifications','CamScanner 07-28-2023
22.05_1.jpg','U1591T1690624655.jpg','2023-07-29 17:57:35','2023-07-29
17:57:35',NULL,'1591',NULL,NULL),(5564,1599,'COE','applicants_certifications/
U1599T1690682274.pdf','applicants_certifications','Subtitute Teacher 1
Confirmation.pdf','U1599T1690682274.pdf','2023-07-30 09:57:54','2023-07-30
09:57:54',NULL,'1599',NULL,NULL),(5565,1599,'COE','applicants_certifications/
U1599T1690682301.pdf','applicants_certifications','Copy of COE Cherry
Beth.pdf','U1599T1690682301.pdf','2023-07-30 09:58:21','2023-07-30
09:58:21',NULL,'1599',NULL,NULL),(5566,1599,'SWT','applicants_certifications/
U1599T1690682334.pdf','applicants_certifications','School in- Service
Training.pdf','U1599T1690682334.pdf','2023-07-30 09:58:54','2023-07-30
09:58:54',NULL,'1599',NULL,NULL),(5567,1599,'SWT','applicants_certifications/
U1599T1690682363.pdf','applicants_certifications','IKSP
Cert_pdf.pdf','U1599T1690682363.pdf','2023-07-30 09:59:23','2023-07-30
09:59:23',NULL,'1599',NULL,NULL),(5568,1599,'SWT','applicants_certifications/
U1599T1690682368.pdf','applicants_certifications','IKSP
Cert_pdf.pdf','U1599T1690682368.pdf','2023-07-30 09:59:28','2023-07-30
09:59:28',NULL,'1599',NULL,NULL),
(5569,1599,'ELIGIBILITY','applicants_certifications/
U1599T1690682394.pdf','applicants_certifications','License
ID.pdf','U1599T1690682394.pdf','2023-07-30 09:59:54','2023-07-30
09:59:54',NULL,'1599',NULL,NULL),(5570,1599,'PDS','applicants_certifications/
U1599T1690682438.pdf','applicants_certifications','PDS.pdf','U1599T1690682438.pdf',
'2023-07-30 10:00:38','2023-07-30 10:00:38',NULL,'1599',NULL,NULL),
(5573,1604,'TOR','applicants_certifications/
U1604T1690702694.jpg','applicants_certifications','CamScanner 07-30-2023
15.30.jpg','U1604T1690702694.jpg','2023-07-30 15:38:14','2023-07-30
15:38:14',NULL,'1604',NULL,NULL),(5574,1604,'TOR','applicants_certifications/
U1604T1690702720.jpg','applicants_certifications','CamScanner 07-30-2023
15.33.jpg','U1604T1690702720.jpg','2023-07-30 15:38:40','2023-07-30
15:38:40',NULL,'1604',NULL,NULL),(5577,1604,'TOR','applicants_certifications/
U1604T1690702928.jpg','applicants_certifications','CamScanner 07-30-2023
15.35.jpg','U1604T1690702928.jpg','2023-07-30 15:42:08','2023-07-30
15:42:08',NULL,'1604',NULL,NULL),(5578,1604,'COE','applicants_certifications/
U1604T1690703076.jpg','applicants_certifications','CamScanner 07-30-2023
15.44.jpg','U1604T1690703076.jpg','2023-07-30 15:44:36','2023-07-30
15:44:36',NULL,'1604',NULL,NULL),(5579,1604,'COE','applicants_certifications/
U1604T1690703163.jpg','applicants_certifications','CamScanner 07-30-2023
15.46.jpg','U1604T1690703163.jpg','2023-07-30 15:46:03','2023-07-30
15:46:03',NULL,'1604',NULL,NULL),(5580,1604,'COE','applicants_certifications/
U1604T1690703226.jpg','applicants_certifications','CamScanner 07-30-2023
15.47.jpg','U1604T1690703226.jpg','2023-07-30 15:47:06','2023-07-30
15:47:06',NULL,'1604',NULL,NULL),(5582,1604,'SWT','applicants_certifications/
U1604T1690703728.jpg','applicants_certifications','CamScanner 07-30-2023
15.52.jpg','U1604T1690703728.jpg','2023-07-30 15:55:28','2023-07-30
15:55:28',NULL,'1604',NULL,NULL),(5583,1604,'SWT','applicants_certifications/
U1604T1690703749.jpg','applicants_certifications','CamScanner 07-30-2023
15.53.jpg','U1604T1690703749.jpg','2023-07-30 15:55:49','2023-07-30
15:55:49',NULL,'1604',NULL,NULL),(5584,1604,'SWT','applicants_certifications/
U1604T1690703774.jpg','applicants_certifications','CamScanner 07-30-2023 15.53
(1).jpg','U1604T1690703774.jpg','2023-07-30 15:56:14','2023-07-30
15:56:14',NULL,'1604',NULL,NULL),(5585,1604,'SWT','applicants_certifications/
U1604T1690703794.jpg','applicants_certifications','CamScanner 07-30-2023
15.54.jpg','U1604T1690703794.jpg','2023-07-30 15:56:34','2023-07-30
15:56:34',NULL,'1604',NULL,NULL),(5586,1604,'SWT','applicants_certifications/
U1604T1690703819.jpg','applicants_certifications','CamScanner 07-30-2023
15.55.jpg','U1604T1690703819.jpg','2023-07-30 15:56:59','2023-07-30
15:56:59',NULL,'1604',NULL,NULL),
(5587,1604,'ELIGIBILITY','applicants_certifications/
U1604T1690703946.jpg','applicants_certifications','CamScanner 07-30-2023
15.59.jpg','U1604T1690703946.jpg','2023-07-30 15:59:06','2023-07-30
15:59:06',NULL,'1604',NULL,NULL),
(5588,1604,'ELIGIBILITY','applicants_certifications/
U1604T1690704023.jpg','applicants_certifications','CamScanner 07-30-2023
16.01.jpg','U1604T1690704023.jpg','2023-07-30 16:00:23','2023-07-30
16:00:23',NULL,'1604',NULL,NULL),(5589,1604,'PDS','applicants_certifications/
U1604T1690704324.jpg','applicants_certifications','CamScanner 07-30-2023
16.05.jpg','U1604T1690704324.jpg','2023-07-30 16:05:24','2023-07-30
16:05:24',NULL,'1604',NULL,NULL),(5590,1604,'PDS','applicants_certifications/
U1604T1690704354.jpg','applicants_certifications','CamScanner 07-30-2023
16.06.jpg','U1604T1690704354.jpg','2023-07-30 16:05:54','2023-07-30
16:05:54',NULL,'1604',NULL,NULL),(5591,1604,'PDS','applicants_certifications/
U1604T1690704390.jpg','applicants_certifications','CamScanner 07-30-2023
16.04.jpg','U1604T1690704390.jpg','2023-07-30 16:06:30','2023-07-30
16:06:30',NULL,'1604',NULL,NULL),(5592,1604,'PDS','applicants_certifications/
U1604T1690704416.jpg','applicants_certifications','CamScanner 07-30-2023
16.03.jpg','U1604T1690704416.jpg','2023-07-30 16:06:56','2023-07-30
16:06:56',NULL,'1604',NULL,NULL),(5593,1598,'PDS','applicants_certifications/
U1598T1690708943.pdf','applicants_certifications','PDS.pdf','U1598T1690708943.pdf',
'2023-07-30 17:22:23','2023-07-30 17:22:23',NULL,'1598',NULL,NULL),
(5594,1606,'ELIGIBILITY','applicants_certifications/
U1606T1690746513.pdf','applicants_certifications','inbound5545189080112966931.pdf',
'U1606T1690746513.pdf','2023-07-31 03:48:33','2023-07-31
03:48:33',NULL,'1606',NULL,NULL),(5595,1606,'PDS','applicants_certifications/
U1606T1690746559.pdf','applicants_certifications','inbound1467793949045022173.pdf',
'U1606T1690746559.pdf','2023-07-31 03:49:19','2023-07-31
03:49:19',NULL,'1606',NULL,NULL),(5596,1606,'SWT','applicants_certifications/
U1606T1690746602.pdf','applicants_certifications','inbound6977907040226661387.pdf',
'U1606T1690746602.pdf','2023-07-31
03:50:02','2023-07-31 03:50:02',NULL,'1606',NULL,NULL),
(5597,1606,'TOR','applicants_certifications/
U1606T1690746882.pdf','applicants_certifications','inbound8042496461620396899.pdf',
'U1606T1690746882.pdf','2023-07-31 03:54:42','2023-07-31
03:54:42',NULL,'1606',NULL,NULL),(5598,1606,'TOR','applicants_certifications/
U1606T1690746906.pdf','applicants_certifications','inbound1391625170863830001.pdf',
'U1606T1690746906.pdf','2023-07-31 03:55:06','2023-07-31
03:55:06',NULL,'1606',NULL,NULL),(5599,1606,'TOR','applicants_certifications/
U1606T1690746931.pdf','applicants_certifications','inbound1357909413297522139.pdf',
'U1606T1690746931.pdf','2023-07-31 03:55:31','2023-07-31
03:55:31',NULL,'1606',NULL,NULL),(5600,1598,'TOR','applicants_certifications/
U1598T1690772780.pdf','applicants_certifications','IFSU.HRIS _ Ifugao State
University Human Resource and Information System.pdf','U1598T1690772780.pdf','2023-
07-31 11:06:20','2023-07-31 11:06:20',NULL,'1598',NULL,NULL),
(5601,595,'PDS','applicants_certifications/
U595T1690776733.pdf','applicants_certifications','pds .pdf','U595T1690776733.pdf','
2023-07-31 12:12:13','2023-07-31 12:12:13',NULL,'595',NULL,NULL),
(5602,595,'TOR','applicants_certifications/
U595T1690774088.pdf','applicants_certifications','True Copy of Grades.
Masters.pdf','U595T1690774088.pdf','2023-07-31 11:28:08','2023-07-31
11:28:08',NULL,'595',NULL,NULL),(5604,1610,'SWT','applicants_certifications/
U1610T1690780184.pdf','applicants_certifications','certificates.pdf','U1610T1690780
184.pdf','2023-07-31 13:09:44','2023-07-31 13:09:44',NULL,'1610',NULL,NULL),
(5605,1610,'ELIGIBILITY','applicants_certifications/
U1610T1690780209.pdf','applicants_certifications','Authenticated PRC License
ID.pdf','U1610T1690780209.pdf','2023-07-31 13:10:09','2023-07-31
13:10:09',NULL,'1610',NULL,NULL),
(5606,1610,'ELIGIBILITY','applicants_certifications/
U1610T1690780284.pdf','applicants_certifications','TESDA
NC11.pdf','U1610T1690780284.pdf','2023-07-31 13:11:24','2023-07-31
13:11:24',NULL,'1610',NULL,NULL),(5607,1610,'TOR','applicants_certifications/
U1610T1690780699.pdf','applicants_certifications','OTR (2)-
compressed.pdf','U1610T1690780699.pdf','2023-07-31 13:18:19','2023-07-31
13:18:19',NULL,'1610',NULL,NULL),(5608,1610,'PDS','applicants_certifications/
U1610T1690781917.xlsx','applicants_certifications','CS-Form-No.-212-Personal-Data-
Sheet-revised (1).xlsx','U1610T1690781917.xlsx','2023-07-31 13:38:37','2023-07-31
13:38:37',NULL,'1610',NULL,NULL),(5609,1610,'COE','applicants_certifications/
U1610T1690781986.pdf','applicants_certifications','Sujin company
ID.pdf','U1610T1690781986.pdf','2023-07-31 13:39:46','2023-07-31
13:39:46',NULL,'1610',NULL,NULL),(5610,1612,'TOR','applicants_certifications/
U1612T1690783335.pdf','applicants_certifications','TOR-
AUTHENTICATED.pdf','U1612T1690783335.pdf','2023-07-31 14:02:15','2023-07-31
14:02:15',NULL,'1612',NULL,NULL),
(5612,1612,'ELIGIBILITY','applicants_certifications/
U1612T1690783362.pdf','applicants_certifications','PRC LICENSE-
AUT.pdf','U1612T1690783362.pdf','2023-07-31 14:02:42','2023-07-31
14:02:42',NULL,'1612',NULL,NULL),(5615,889,'COE','applicants_certifications/
U889T1690784231.pdf','applicants_certifications','COE .pdf','U889T1690784231.pdf','
2023-07-31 14:17:11','2023-07-31 14:17:11',NULL,'889',NULL,NULL),
(5617,1612,'COE','applicants_certifications/
U1612T1690785182.pdf','applicants_certifications','EXPERIENCE.pdf','U1612T169078518
2.pdf','2023-07-31 14:33:02','2023-07-31 14:33:02',NULL,'1612',NULL,NULL),
(5618,1615,'ELIGIBILITY','applicants_certifications/
U1615T1690785548.pdf','applicants_certifications','Certificate of
Eligibility.pdf','U1615T1690785548.pdf','2023-07-31 14:39:08','2023-07-31
14:39:08',NULL,'1615',NULL,NULL),(5620,1615,'PDS','applicants_certifications/
U1615T1690787137.xlsx','applicants_certifications','CS Form No. 212 Personal Data
Sheet revised.xlsx','U1615T1690787137.xlsx','2023-07-31 15:05:37','2023-07-31
15:05:37',NULL,'1615',NULL,NULL),(5621,1615,'SWT','applicants_certifications/
U1615T1690787593.pdf','applicants_certifications','Certificates.pdf','U1615T1690787
593.pdf','2023-07-31 15:13:13','2023-07-31 15:13:13',NULL,'1615',NULL,NULL),
(5622,1619,'TOR','applicants_certifications/
U1619T1690788739.pdf','applicants_certifications','c. Transcript of
Records.pdf','U1619T1690788739.pdf','2023-07-31 15:32:19','2023-07-31
15:32:19',NULL,'1619',NULL,NULL),(5623,1619,'PDS','applicants_certifications/
U1619T1690788907.','applicants_certifications','PDS','U1619T1690788907.','2023-07-
31 15:35:07','2023-07-31 15:35:07',NULL,'1619',NULL,NULL),
(5624,1619,'SWT','applicants_certifications/U1619T1690789023. Authenticated PRC
ID','applicants_certifications','e. Authenticated PRC ID','U1619T1690789023.
Authenticated PRC ID','2023-07-31 15:37:03','2023-07-31
15:37:03',NULL,'1619',NULL,NULL),(5625,1619,'SWT','applicants_certifications/
U1619T1690789058. Certificate of Rating','applicants_certifications','d.
Certificate of Rating','U1619T1690789058. Certificate of Rating','2023-07-31
15:37:38','2023-07-31 15:37:38',NULL,'1619',NULL,NULL),
(5626,1101,'TOR','applicants_certifications/
U1101T1690792166.jpg','applicants_certifications','inbound2113285426881368713.jpg',
'U1101T1690792166.jpg','2023-07-31 16:29:26','2023-07-31
16:29:26',NULL,'1101',NULL,NULL),(5627,1101,'TOR','applicants_certifications/
U1101T1690792462.pdf','applicants_certifications','inbound7660137520912551113.pdf',
'U1101T1690792462.pdf','2023-07-31 16:34:22','2023-07-31
16:34:22',NULL,'1101',NULL,NULL),(5629,1101,'COE','applicants_certifications/
U1101T1690792985.pdf','applicants_certifications','inbound1515361129277073683.pdf',
'U1101T1690792985.pdf','2023-07-31 16:43:05','2023-07-31
16:43:05',NULL,'1101',NULL,NULL),(5630,1575,'PDS','applicants_certifications/
U1575T1690793004.xlsx','applicants_certifications','FINAL CS Form No. 212 PDS
FHAYRA.xlsx','U1575T1690793004.xlsx','2023-07-31 16:43:24','2023-07-31
16:43:24',NULL,'1575',NULL,NULL),
(5632,1101,'ELIGIBILITY','applicants_certifications/
U1101T1690793297.jpg','applicants_certifications','inbound2432171000984363577.jpg',
'U1101T1690793297.jpg','2023-07-31 16:48:17','2023-07-31
16:48:17',NULL,'1101',NULL,NULL),
(5634,1101,'ELIGIBILITY','applicants_certifications/
U1101T1690793329.pdf','applicants_certifications','inbound487337043412824348.pdf','
U1101T1690793329.pdf','2023-07-31 16:48:49','2023-07-31
16:48:49',NULL,'1101',NULL,NULL),(5635,1101,'SWT','applicants_certifications/
U1101T1690793352.pdf','applicants_certifications','inbound2231006944080429960.pdf',
'U1101T1690793352.pdf','2023-07-31 16:49:12','2023-07-31
16:49:12',NULL,'1101',NULL,NULL),(5637,1101,'SWT','applicants_certifications/
U1101T1690793493.pdf','applicants_certifications','inbound2379293498463968013.pdf',
'U1101T1690793493.pdf','2023-07-31 16:51:33','2023-07-31
16:51:33',NULL,'1101',NULL,NULL),(5638,1101,'SWT','applicants_certifications/
U1101T1690793518.pdf','applicants_certifications','inbound90438624093350114.pdf','U
1101T1690793518.pdf','2023-07-31 16:51:58','2023-07-31
16:51:58',NULL,'1101',NULL,NULL),(5639,1101,'SWT','applicants_certifications/
U1101T1690793546.pdf','applicants_certifications','inbound2339845354874431533.pdf',
'U1101T1690793546.pdf','2023-07-31 16:52:26','2023-07-31
16:52:26',NULL,'1101',NULL,NULL),(5640,1101,'PDS','applicants_certifications/
U1101T1690793809.pdf','applicants_certifications','inbound6740810759268901782.pdf',
'U1101T1690793809.pdf','2023-07-31 16:56:49','2023-07-31
16:56:49',NULL,'1101',NULL,NULL),(5641,1101,'PDS','applicants_certifications/
U1101T1690793828.pdf','applicants_certifications','inbound7246330286099354387.pdf',
'U1101T1690793828.pdf','2023-07-31 16:57:08','2023-07-31
16:57:08',NULL,'1101',NULL,NULL),(5642,1101,'PDS','applicants_certifications/
U1101T1690793842.pdf','applicants_certifications','inbound5821164613186404206.pdf',
'U1101T1690793842.pdf','2023-07-31 16:57:22','2023-07-31
16:57:22',NULL,'1101',NULL,NULL),(5643,1101,'PDS','applicants_certifications/
U1101T1690793856.pdf','applicants_certifications','inbound9130096259207890311.pdf',
'U1101T1690793856.pdf','2023-07-31 16:57:36','2023-07-31
16:57:36',NULL,'1101',NULL,NULL),(5644,1575,'PDS','applicants_certifications/
U1575T1690794233.docx','applicants_certifications','PHOTOCOPY OF PRC
ID.docx','U1575T1690794233.docx','2023-07-31 17:03:53','2023-07-31
17:03:53',NULL,'1575',NULL,NULL),(5645,1620,'TOR','applicants_certifications/
U1620T1690805393.pdf','applicants_certifications','PANISOC, M.
OTR.pdf','U1620T1690805393.pdf','2023-07-31 20:09:53','2023-07-31
20:09:53',NULL,'1620',NULL,NULL),(5646,1620,'PDS','applicants_certifications/
U1620T1690805548.pdf','applicants_certifications','PANISOC, MYLA
P_PDS.pdf','U1620T1690805548.pdf','2023-07-31 20:12:28','2023-07-31
20:12:28',NULL,'1620',NULL,NULL),(5647,1620,'SWT','applicants_certifications/
U1620T1690805629.jpg','applicants_certifications','Haggai
International.jpg','U1620T1690805629.jpg','2023-07-31 20:13:49','2023-07-31
20:13:49',NULL,'1620',NULL,NULL),
(5649,1620,'ELIGIBILITY','applicants_certifications/
U1620T1690809410.jpg','applicants_certifications','PANISOC PRC
ID.jpg','U1620T1690809410.jpg','2023-07-31 21:16:50','2023-07-31
21:16:50',NULL,'1620',NULL,NULL),(5650,1045,'COE','applicants_certifications/
U1045T1690810169.pdf','applicants_certifications','COE LGU
pdf.pdf','U1045T1690810169.pdf','2023-07-31 21:29:29','2023-07-31
21:29:29',NULL,'1045',NULL,NULL),(5651,326,'SWT','applicants_certifications/
U326T1690950555.jpg','applicants_certifications','BSRS ORIENTATION
Certificate.jpg','U326T1690950555.jpg','2023-08-02 12:29:15','2023-08-02
12:29:15',NULL,'326',NULL,NULL),(5652,326,'SWT','applicants_certifications/
U326T1690950586.jpg','applicants_certifications','Special General Directorate
Conference Certificate.jpg','U326T1690950586.jpg','2023-08-02 12:29:46','2023-08-02
12:29:46',NULL,'326',NULL,NULL),(5653,326,'SWT','applicants_certifications/
U326T1690950619.jpg','applicants_certifications','OJT
Certificate.jpg','U326T1690950619.jpg','2023-08-02 12:30:19','2023-08-02
12:30:19',NULL,'326',NULL,NULL),(5654,326,'SWT','applicants_certifications/
U326T1690950742.jpg','applicants_certifications','Webinar on Job
Placement.jpg','U326T1690950742.jpg','2023-08-02 12:32:22','2023-08-02
12:32:22',NULL,'326',NULL,NULL),
(5656,1610,'ELIGIBILITY','applicants_certifications/
U1610T1690973136.pdf','applicants_certifications','certificate of report
rating.pdf','U1610T1690973136.pdf','2023-08-02 18:45:36','2023-08-02
18:45:36',NULL,'1610',NULL,NULL),
(5657,1610,'ELIGIBILITY','applicants_certifications/
U1610T1690973321.pdf','applicants_certifications','certificateof
passing.pdf','U1610T1690973321.pdf','2023-08-02 18:48:41','2023-08-02
18:48:41',NULL,'1610',NULL,NULL),(5659,1630,'TOR','applicants_certifications/
U1630T1690979604.jpg','applicants_certifications','inbound2392056016037068815.jpg',
'U1630T1690979604.jpg','2023-08-02 20:33:24','2023-08-02
20:33:24',NULL,'1630',NULL,NULL),(5660,1630,'PDS','applicants_certifications/
U1630T1690979987.pdf','applicants_certifications','inbound8696035955001035786.pdf',
'U1630T1690979987.pdf','2023-08-02 20:39:47','2023-08-02
20:39:47',NULL,'1630',NULL,NULL),(5662,1631,'PDS','applicants_certifications/
U1631T1690980080.xlsx','applicants_certifications','PDS
Reden.xlsx','U1631T1690980080.xlsx','2023-08-02 20:41:20','2023-08-02
20:41:20',NULL,'1631',NULL,NULL),
(5663,1631,'ELIGIBILITY','applicants_certifications/
U1631T1690980111.jpg','applicants_certifications','IMG20220818084417.jpg','U1631T16
90980111.jpg','2023-08-02 20:41:51','2023-08-02 20:41:51',NULL,'1631',NULL,NULL),
(5664,1631,'TOR','applicants_certifications/
U1631T1690983347.pdf','applicants_certifications','OTR.pdf','U1631T1690983347.pdf',
'2023-08-02 21:35:47','2023-08-02 21:35:47',NULL,'1631',NULL,NULL),
(5665,1631,'COE','applicants_certifications/
U1631T1690983409.pdf','applicants_certifications','COE.pdf','U1631T1690983409.pdf',
'2023-08-02 21:36:49','2023-08-02 21:36:49',NULL,'1631',NULL,NULL),
(5666,1631,'SWT','applicants_certifications/
U1631T1690984190.pdf','applicants_certifications','CERTIFICATES.pdf','U1631T1690984
190.pdf','2023-08-02 21:49:50','2023-08-02 21:49:50',NULL,'1631',NULL,NULL),
(5667,1634,'TOR','applicants_certifications/
U1634T1690988018.pdf','applicants_certifications','TOR.pdf','U1634T1690988018.pdf',
'2023-08-02 22:53:38','2023-08-02 22:53:38',NULL,'1634',NULL,NULL),
(5668,1634,'COE','applicants_certifications/
U1634T1690988104.pdf','applicants_certifications','STAR COLLEGES
COE.pdf','U1634T1690988104.pdf','2023-08-02 22:55:04','2023-08-02
22:55:04',NULL,'1634',NULL,NULL),(5671,1634,'COE','applicants_certifications/
U1634T1690988384.pdf','applicants_certifications','BVS COLLEGES
COE.pdf','U1634T1690988384.pdf','2023-08-02 22:59:44','2023-08-02
22:59:44',NULL,'1634',NULL,NULL),(5672,1634,'SWT','applicants_certifications/
U1634T1690988536.pdf','applicants_certifications','CSS NC
ll.pdf','U1634T1690988536.pdf','2023-08-02 23:02:16','2023-08-02
23:02:16',NULL,'1634',NULL,NULL),
(5673,1634,'ELIGIBILITY','applicants_certifications/
U1634T1690988577.pdf','applicants_certifications','PRC.pdf','U1634T1690988577.pdf',
'2023-08-02 23:02:57','2023-08-02 23:02:57',NULL,'1634',NULL,NULL),
(5674,1634,'PDS','applicants_certifications/
U1634T1690988901.xlsx','applicants_certifications','PDS
Updated.xlsx','U1634T1690988901.xlsx','2023-08-02 23:08:21','2023-08-02
23:08:21',NULL,'1634',NULL,NULL),(5675,1634,'SWT','applicants_certifications/
U1634T1690988950.pdf','applicants_certifications','Tesol
1.pdf','U1634T1690988950.pdf','2023-08-02 23:09:10','2023-08-02
23:09:10',NULL,'1634',NULL,NULL),(5676,1644,'TOR','applicants_certifications/
U1644T1691061341.pdf','applicants_certifications','TOR-
Undergrad.pdf','U1644T1691061341.pdf','2023-08-03 19:15:41','2023-08-03
19:15:41',NULL,'1644',NULL,NULL),(5677,1644,'TOR','applicants_certifications/
U1644T1691061366.pdf','applicants_certifications','TOR-
Grad.pdf','U1644T1691061366.pdf','2023-08-03 19:16:06','2023-08-03
19:16:06',NULL,'1644',NULL,NULL),(5678,1644,'SWT','applicants_certifications/
U1644T1691061395.pdf','applicants_certifications','Cert of
Trainings.pdf','U1644T1691061395.pdf','2023-08-03 19:16:35','2023-08-03
19:16:35',NULL,'1644',NULL,NULL),
(5679,1644,'ELIGIBILITY','applicants_certifications/
U1644T1691061434.pdf','applicants_certifications','Eligibility-
Prof.pdf','U1644T1691061434.pdf','2023-08-03 19:17:14','2023-08-03
19:17:14',NULL,'1644',NULL,NULL),(5680,1644,'COE','applicants_certifications/
U1644T1691061482.pdf','applicants_certifications','Service
Record.pdf','U1644T1691061482.pdf','2023-08-03 19:18:02','2023-08-03
19:18:02',NULL,'1644',NULL,NULL),
(5681,1648,'ELIGIBILITY','applicants_certifications/
U1648T1691094820.pdf','applicants_certifications','Eligibility.pdf','U1648T16910948
20.pdf','2023-08-04 04:33:40','2023-08-04 04:33:40',NULL,'1648',NULL,NULL),
(5682,1648,'COE','applicants_certifications/
U1648T1691094925.pdf','applicants_certifications','Emoloyment.pdf','U1648T169109492
5.pdf','2023-08-04 04:35:25','2023-08-04 04:35:25',NULL,'1648',NULL,NULL),
(5683,1648,'TOR','applicants_certifications/
U1648T1691095221.jpg','applicants_certifications','Transcript of
Record_1.jpg','U1648T1691095221.jpg','2023-08-04 04:40:21','2023-08-04
04:40:21',NULL,'1648',NULL,NULL),(5684,1648,'TOR','applicants_certifications/
U1648T1691095416.jpg','applicants_certifications','Transcript of
Record_2.jpg','U1648T1691095416.jpg','2023-08-04 04:43:36','2023-08-04
04:43:36',NULL,'1648',NULL,NULL),(5685,1648,'TOR','applicants_certifications/
U1648T1691095442.jpg','applicants_certifications','Transcript of
Record_3.jpg','U1648T1691095442.jpg','2023-08-04 04:44:02','2023-08-04
04:44:02',NULL,'1648',NULL,NULL),(5686,1648,'TOR','applicants_certifications/
U1648T1691095465.jpg','applicants_certifications','Transcript of
Record_4.jpg','U1648T1691095465.jpg','2023-08-04 04:44:25','2023-08-04
04:44:25',NULL,'1648',NULL,NULL),(5687,1649,'PDS','applicants_certifications/
U1649T1691095485.pdf','applicants_certifications','inbound3878911347650712450.pdf',
'U1649T1691095485.pdf','2023-08-04 04:44:45','2023-08-04
04:44:45',NULL,'1649',NULL,NULL),(5688,1649,'TOR','applicants_certifications/
U1649T1691095519.jpg','applicants_certifications','inbound7975339099744710241.jpg',
'U1649T1691095519.jpg','2023-08-04 04:45:19','2023-08-04
04:45:19',NULL,'1649',NULL,NULL),(5690,1648,'SWT','applicants_certifications/
U1648T1691095637.pdf','applicants_certifications','Trainings
Seminar_compressed.pdf','U1648T1691095637.pdf','2023-08-04 04:47:17','2023-08-04
04:47:17',NULL,'1648',NULL,NULL),(5691,1648,'PDS','applicants_certifications/
U1648T1691095758.pdf','applicants_certifications','CSC
PDS_compressed.pdf','U1648T1691095758.pdf','2023-08-04 04:49:18','2023-08-04
04:49:18',NULL,'1648',NULL,NULL),(5692,1648,'PDS','applicants_certifications/
U1648T1691114185.pdf','applicants_certifications','Page 5 CSC
PDS.pdf','U1648T1691114185.pdf','2023-08-04 09:56:25','2023-08-04
09:56:25',NULL,'1648',NULL,NULL),(5693,1638,'COE','applicants_certifications/
U1638T1691132074.pdf','applicants_certifications','C. Certificate of
Employment.pdf','U1638T1691132074.pdf','2023-08-04 14:54:34','2023-08-04
14:54:34',NULL,'1638',NULL,NULL),
(5694,1653,'ELIGIBILITY','applicants_certifications/
U1653T1691289856.pdf','applicants_certifications','Authenticated PRC
licensed.pdf','U1653T1691289856.pdf','2023-08-06 10:44:16','2023-08-06
10:44:16',NULL,'1653',NULL,NULL),(5695,1653,'PDS','applicants_certifications/
U1653T1691290131.pdf','applicants_certifications','PDS combinepdf
(1).pdf','U1653T1691290131.pdf','2023-08-06 10:48:51','2023-08-06
10:48:51',NULL,'1653',NULL,NULL),(5696,1653,'TOR','applicants_certifications/
U1653T1691291486.docx','applicants_certifications','TOR.docx','U1653T1691291486.doc
x','2023-08-06 11:11:26','2023-08-06 11:11:26',NULL,'1653',NULL,NULL),
(5703,1610,'COE','applicants_certifications/
U1610T1691568393.pdf','applicants_certifications','COE-Sunjin Farm Solution
Corp.pdf','U1610T1691568393.pdf','2023-08-09 16:06:33','2023-08-09
16:06:33',NULL,'1610',NULL,NULL),
(5704,1610,'ELIGIBILITY','applicants_certifications/
U1610T1691568424.pdf','applicants_certifications','diploma.pdf','U1610T1691568424.p
df','2023-08-09 16:07:04','2023-08-09 16:07:04',NULL,'1610',NULL,NULL),
(5707,1357,'SWT','applicants_certifications/
U1357T1692031116.jpg','applicants_certifications','inbound1921575512375473849.jpg',
'U1357T1692031116.jpg','2023-08-15 00:38:36','2023-08-15
00:38:36',NULL,'1357',NULL,NULL),(5708,1357,'SWT','applicants_certifications/
U1357T1692031143.jpg','applicants_certifications','inbound4325827998026490887.jpg',
'U1357T1692031143.jpg','2023-08-15 00:39:03','2023-08-15
00:39:03',NULL,'1357',NULL,NULL),(5710,1357,'COE','applicants_certifications/
U1357T1692032111.pdf','applicants_certifications','inbound1438471467204003631.pdf',
'U1357T1692032111.pdf','2023-08-15 00:55:11','2023-08-15
00:55:11',NULL,'1357',NULL,NULL),(5711,1663,'TOR','applicants_certifications/
U1663T1692055313.JPG','applicants_certifications','TOR-
1.JPG','U1663T1692055313.JPG','2023-08-15 07:21:53','2023-08-15
07:21:53',NULL,'1663',NULL,NULL),(5712,1663,'TOR','applicants_certifications/
U1663T1692055326.JPG','applicants_certifications','TOR-
2.JPG','U1663T1692055326.JPG','2023-08-15 07:22:06','2023-08-15
07:22:06',NULL,'1663',NULL,NULL),(5713,1663,'COE','applicants_certifications/
U1663T1692063764.jpg','applicants_certifications','TESDA-SERVICE
RECORD.jpg','U1663T1692063764.jpg','2023-08-15 09:42:44','2023-08-15
09:42:44',NULL,'1663',NULL,NULL),(5714,1663,'COE','applicants_certifications/
U1663T1692063782.jpg','applicants_certifications','FTI CERT OF
EMPLOYMENT.jpg','U1663T1692063782.jpg','2023-08-15 09:43:02','2023-08-15
09:43:02',NULL,'1663',NULL,NULL),(5715,1663,'COE','applicants_certifications/
U1663T1692063793.jpg','applicants_certifications','CCE CERT OF
EMPLOYMENT.jpg','U1663T1692063793.jpg','2023-08-15 09:43:13','2023-08-15
09:43:13',NULL,'1663',NULL,NULL),(5716,1663,'COE','applicants_certifications/
U1663T1692063814.jpg','applicants_certifications','LSR SERVICE
RECORD.jpg','U1663T1692063814.jpg','2023-08-15 09:43:34','2023-08-15
09:43:34',NULL,'1663',NULL,NULL),(5717,1663,'COE','applicants_certifications/
U1663T1692063825.jpg','applicants_certifications','LGU-RAMON-CERT OF
EMPLOYMENT.jpg','U1663T1692063825.jpg','2023-08-15 09:43:45','2023-08-15
09:43:45',NULL,'1663',NULL,NULL),(5718,1663,'SWT','applicants_certifications/
U1663T1692066031.jpg','applicants_certifications','COMPLETE WEB
DEVELOPMENT.jpg','U1663T1692066031.jpg','2023-08-15 10:20:31','2023-08-15
10:20:31',NULL,'1663',NULL,NULL),(5719,1663,'SWT','applicants_certifications/
U1663T1692066135.jpg','applicants_certifications','HYDROPONICS.jpg','U1663T16920661
35.jpg','2023-08-15 10:22:15','2023-08-15 10:22:15',NULL,'1663',NULL,NULL),
(5720,1663,'SWT','applicants_certifications/
U1663T1692066149.jpg','applicants_certifications','BLENDER
2.79.jpg','U1663T1692066149.jpg','2023-08-15 10:22:29','2023-08-15
10:22:29',NULL,'1663',NULL,NULL),(5721,1663,'SWT','applicants_certifications/
U1663T1692066162.jpg','applicants_certifications','COSH.jpg','U1663T1692066162.jpg'
,'2023-08-15 10:22:42','2023-08-15 10:22:42',NULL,'1663',NULL,NULL),
(5722,1663,'SWT','applicants_certifications/
U1663T1692066175.jpg','applicants_certifications','BOSH.jpg','U1663T1692066175.jpg'
,'2023-08-15 10:22:55','2023-08-15 10:22:55',NULL,'1663',NULL,NULL),
(5723,1663,'SWT','applicants_certifications/
U1663T1692066188.jpg','applicants_certifications','TM-
I.jpg','U1663T1692066188.jpg','2023-08-15 10:23:08','2023-08-15
10:23:08',NULL,'1663',NULL,NULL),(5724,1663,'SWT','applicants_certifications/
U1663T1692066199.jpg','applicants_certifications','EPAS
NCII.jpg','U1663T1692066199.jpg','2023-08-15 10:23:19','2023-08-15
10:23:19',NULL,'1663',NULL,NULL),(5725,1663,'SWT','applicants_certifications/
U1663T1692066215.jpg','applicants_certifications','DAR
RETOOLING.jpg','U1663T1692066215.jpg','2023-08-15 10:23:35','2023-08-15
10:23:35',NULL,'1663',NULL,NULL),(5726,1663,'SWT','applicants_certifications/
U1663T1692066229.jpg','applicants_certifications','PLC
SEMINAR.jpg','U1663T1692066229.jpg','2023-08-15 10:23:49','2023-08-15
10:23:49',NULL,'1663',NULL,NULL),
(5727,1663,'ELIGIBILITY','applicants_certifications/
U1663T1692067073.jpg','applicants_certifications','PROF.jpg','U1663T1692067073.jpg'
,'2023-08-15 10:37:53','2023-08-15 10:37:53',NULL,'1663',NULL,NULL),
(5728,1663,'ELIGIBILITY','applicants_certifications/
U1663T1692067085.jpg','applicants_certifications','SUBPROF.jpg','U1663T1692067085.j
pg','2023-08-15 10:38:05','2023-08-15 10:38:05',NULL,'1663',NULL,NULL),
(5730,1218,'ELIGIBILITY','applicants_certifications/
U1218T1692158938.jpg','applicants_certifications','COE
PROF.jpg','U1218T1692158938.jpg','2023-08-16 12:08:58','2023-08-16
12:08:58',NULL,'1218',NULL,NULL),(5731,1663,'PDS','applicants_certifications/
U1663T1692173083.pdf','applicants_certifications','ALDRIN FERNANDEZ PERSONAL DATA
SHEET.pdf','U1663T1692173083.pdf','2023-08-16 16:04:43','2023-08-16
16:04:43',NULL,'1663',NULL,NULL),(5735,1667,'PDS','applicants_certifications/
U1667T1692336204.pdf','applicants_certifications','Personal Data
Sheet.pdf','U1667T1692336204.pdf','2023-08-18 13:23:24','2023-08-18
13:23:24',NULL,'1667',NULL,NULL),(5736,1667,'TOR','applicants_certifications/
U1667T1692336374.pdf','applicants_certifications','Transcript of
Records.pdf','U1667T1692336374.pdf','2023-08-18 13:26:14','2023-08-18
13:26:14',NULL,'1667',NULL,NULL),
(5737,1667,'ELIGIBILITY','applicants_certifications/
U1667T1692337011.pdf','applicants_certifications','Driver\'s
License.pdf','U1667T1692337011.pdf','2023-08-18 13:36:51','2023-08-18
13:36:51',NULL,'1667',NULL,NULL),(5738,1667,'SWT','applicants_certifications/
U1667T1692337823.pdf','applicants_certifications','Seminars Workshop and Training
Certificates.pdf','U1667T1692337823.pdf','2023-08-18 13:50:23','2023-08-18
13:50:23',NULL,'1667',NULL,NULL),(5739,1666,'TOR','applicants_certifications/
U1666T1692342322.pdf','applicants_certifications','TOR.pdf','U1666T1692342322.pdf',
'2023-08-18 15:05:22','2023-08-18 15:05:22',NULL,'1666',NULL,NULL),
(5740,1666,'COE','applicants_certifications/
U1666T1692342378.pdf','applicants_certifications','COE.pdf','U1666T1692342378.pdf',
'2023-08-18 15:06:18','2023-08-18 15:06:18',NULL,'1666',NULL,NULL),
(5742,1666,'SWT','applicants_certifications/
U1666T1692342495.pdf','applicants_certifications','Cert.pdf','U1666T1692342495.pdf'
,'2023-08-18 15:08:15','2023-08-18 15:08:15',NULL,'1666',NULL,NULL),
(5743,1666,'PDS','applicants_certifications/
U1666T1692342732.pdf','applicants_certifications','PDS.pdf','U1666T1692342732.pdf',
'2023-08-18 15:12:12','2023-08-18 15:12:12',NULL,'1666',NULL,NULL),
(5745,1672,'SWT','applicants_certifications/
U1672T1692693767.pdf','applicants_certifications','Peac
Certificate.pdf','U1672T1692693767.pdf','2023-08-22 16:42:47','2023-08-22
16:42:47',NULL,'1672',NULL,NULL),(5746,1672,'PDS','applicants_certifications/
U1672T1692693920.xlsx','applicants_certifications','Kevin Mark S. Jimenez
PDS.xlsx','U1672T1692693920.xlsx','2023-08-22 16:45:20','2023-08-22
16:45:20',NULL,'1672',NULL,NULL),
(5747,1613,'ELIGIBILITY','applicants_certifications/
U1613T1693789048.pdf','applicants_certifications','Eligibility.pdf','U1613T16937890
48.pdf','2023-09-04 08:57:28','2023-09-04 08:57:28',NULL,'1613',NULL,NULL),
(5748,1613,'PDS','applicants_certifications/
U1613T1693789090.pdf','applicants_certifications','PDS.pdf','U1613T1693789090.pdf',
'2023-09-04 08:58:10','2023-09-04 08:58:10',NULL,'1613',NULL,NULL),
(5749,1613,'TOR','applicants_certifications/
U1613T1693789351.jpg','applicants_certifications','OTR.jpg','U1613T1693789351.jpg',
'2023-09-04 09:02:31','2023-09-04 09:02:31',NULL,'1613',NULL,NULL),
(5750,1613,'COE','applicants_certifications/
U1613T1693789991.jpg','applicants_certifications','Certificate of
Employment.jpg','U1613T1693789991.jpg','2023-09-04 09:13:11','2023-09-04
09:13:11',NULL,'1613',NULL,NULL),(5751,1613,'SWT','applicants_certifications/
U1613T1693790351.jpg','applicants_certifications','Seminar
Workshop.jpg','U1613T1693790351.jpg','2023-09-04 09:19:11','2023-09-04
09:19:11',NULL,'1613',NULL,NULL),(5752,1676,'SWT','applicants_certifications/
U1676T1694060165.pdf','applicants_certifications','Session 1_Buza,
Jeffrey.pdf','U1676T1694060165.pdf','2023-09-07 12:16:05','2023-09-07
12:16:05',NULL,'1676',NULL,NULL),(5753,1676,'PDS','applicants_certifications/
U1676T1694060367.xlsx','applicants_certifications','Buza, Jeffrey M. Personal Data
Sheet.xlsx','U1676T1694060367.xlsx','2023-09-07 12:19:27','2023-09-07
12:19:27',NULL,'1676',NULL,NULL),
(5754,1676,'ELIGIBILITY','applicants_certifications/
U1676T1694062978.jpg','applicants_certifications','373347563_849020833403036_461278
4305870044223_n.jpg','U1676T1694062978.jpg','2023-09-07 13:02:58','2023-09-07
13:02:58',NULL,'1676',NULL,NULL),(5755,1676,'TOR','applicants_certifications/
U1676T1694063060.jpg','applicants_certifications','373342798_838468717567740_381037
4734272619776_n.jpg','U1676T1694063060.jpg','2023-09-07 13:04:20','2023-09-07
13:04:20',NULL,'1676',NULL,NULL),(5756,1676,'TOR','applicants_certifications/
U1676T1694063079.jpg','applicants_certifications','373397444_1238559577539589_29317
1839385556959_n.jpg','U1676T1694063079.jpg','2023-09-07 13:04:39','2023-09-07
13:04:39',NULL,'1676',NULL,NULL),(5757,1676,'TOR','applicants_certifications/
U1676T1694063111.jpg','applicants_certifications','376375353_333250342378096_548829
4142071272337_n.jpg','U1676T1694063111.jpg','2023-09-07 13:05:11','2023-09-07
13:05:11',NULL,'1676',NULL,NULL),(5758,1275,'SWT','applicants_certifications/
U1275T1695270120.jpg','applicants_certifications','SO AS OIC HRMO
II.jpg','U1275T1695270120.jpg','2023-09-21 12:22:00','2023-09-21
12:22:00',NULL,'1275',NULL,NULL),(5760,1358,'TOR','applicants_certifications/
U1358T1695367100.pdf','applicants_certifications','TOR.pdf','U1358T1695367100.pdf',
'2023-09-22 15:18:20','2023-09-22 15:18:20',NULL,'1358',NULL,NULL),
(5761,1358,'COE','applicants_certifications/
U1358T1695367151.pdf','applicants_certifications','Work Experience
Sheet_Nabalona.pdf','U1358T1695367151.pdf','2023-09-22 15:19:11','2023-09-22
15:19:11',NULL,'1358',NULL,NULL),(5762,1358,'SWT','applicants_certifications/
U1358T1695367214.pdf','applicants_certifications','Certificate of
Trainings_Seminar.pdf','U1358T1695367214.pdf','2023-09-22 15:20:14','2023-09-22
15:20:14',NULL,'1358',NULL,NULL),
(5763,1358,'ELIGIBILITY','applicants_certifications/
U1358T1695367269.pdf','applicants_certifications','PRC
License.pdf','U1358T1695367269.pdf','2023-09-22 15:21:09','2023-09-22
15:21:09',NULL,'1358',NULL,NULL),(5764,1358,'PDS','applicants_certifications/
U1358T1695369497.xlsx','applicants_certifications','Claudet PDS -
Updated.xlsx','U1358T1695369497.xlsx','2023-09-22 15:58:17','2023-09-22
15:58:17',NULL,'1358',NULL,NULL),(5767,1140,'COE','applicants_certifications/
U1140T1696482000.pdf','applicants_certifications','COE_SMRI.pdf','U1140T1696482000.
pdf','2023-10-05 13:00:00','2023-10-05 13:00:00',NULL,'1140',NULL,NULL),
(5768,1140,'COE','applicants_certifications/
U1140T1696482029.jpg','applicants_certifications','COE_DMD.jpg','U1140T1696482029.j
pg','2023-10-05 13:00:29','2023-10-05 13:00:29',NULL,'1140',NULL,NULL),
(5769,1140,'COE','applicants_certifications/
U1140T1696482058.jpg','applicants_certifications','COE_STEP
Inc..jpg','U1140T1696482058.jpg','2023-10-05 13:00:58','2023-10-05
13:00:58',NULL,'1140',NULL,NULL),(5770,799,'SWT','applicants_certifications/
U799T1697179091.pdf','applicants_certifications','Family Support Group -
Certificate of Attendance Suseth B. Lucanti.pdf','U799T1697179091.pdf','2023-10-13
14:38:11','2023-10-13 14:38:11',NULL,'799',NULL,NULL),
(5772,1680,'COE','applicants_certifications/
U1680T1697440141.jpg','applicants_certifications','IMG_20230320_121648.jpg','U1680T
1697440141.jpg','2023-10-16 15:09:01','2023-10-16
15:09:01',NULL,'1680',NULL,NULL),(5773,1680,'SWT','applicants_certifications/
U1680T1697440215.jpg','applicants_certifications','IMG_20230320_121303.jpg','U1680T
1697440215.jpg','2023-10-16 15:10:15','2023-10-16 15:10:15',NULL,'1680',NULL,NULL),
(5776,1689,'SWT','applicants_certifications/
U1689T1697684395.pdf','applicants_certifications','sunjin
coe.pdf','U1689T1697684395.pdf','2023-10-19 10:59:55','2023-10-19
10:59:55',NULL,'1689',NULL,NULL),(5777,1689,'SWT','applicants_certifications/
U1689T1697684460.docx','applicants_certifications','coe Blue lace
farm.docx','U1689T1697684460.docx','2023-10-19 11:01:00','2023-10-19
11:01:00',NULL,'1689',NULL,NULL),(5778,1689,'SWT','applicants_certifications/
U1689T1697684530.pdf','applicants_certifications','cert
pig1.pdf','U1689T1697684530.pdf','2023-10-19 11:02:10','2023-10-19
11:02:10',NULL,'1689',NULL,NULL),(5779,1689,'SWT','applicants_certifications/
U1689T1697684619.pdf','applicants_certifications','cert
dairy1.pdf','U1689T1697684619.pdf','2023-10-19 11:03:39','2023-10-19
11:03:39',NULL,'1689',NULL,NULL),(5780,1689,'PDS','applicants_certifications/
U1689T1697685070.pdf','applicants_certifications','resume
builder.pdf','U1689T1697685070.pdf','2023-10-19 11:11:10','2023-10-19
11:11:10',NULL,'1689',NULL,NULL),(5786,1691,'TOR','applicants_certifications/
U1691T1698479045.jpeg','applicants_certifications','TOR
1.jpeg','U1691T1698479045.jpeg','2023-10-28 15:44:05','2023-10-28
15:44:05',NULL,'1691',NULL,NULL),(5787,1691,'TOR','applicants_certifications/
U1691T1698479058.jpeg','applicants_certifications','TOR
2.jpeg','U1691T1698479058.jpeg','2023-10-28 15:44:18','2023-10-28
15:44:18',NULL,'1691',NULL,NULL),
(5788,1694,'ELIGIBILITY','applicants_certifications/
U1694T1699500647.pdf','applicants_certifications','RATING.pdf','U1694T1699500647.pd
f','2023-11-09 11:30:47','2023-11-09 11:30:47',NULL,'1694',NULL,NULL),
(5789,1694,'PDS','applicants_certifications/
U1694T1699500676.pdf','applicants_certifications','Faisa Binwag Mariano
PDS.pdf','U1694T1699500676.pdf','2023-11-09 11:31:16','2023-11-09
11:31:16',NULL,'1694',NULL,NULL),(5790,1694,'TOR','applicants_certifications/
U1694T1699501033.pdf','applicants_certifications','TRANSCRIPT OF RECORDS
(1).pdf','U1694T1699501033.pdf','2023-11-09 11:37:13','2023-11-09
11:37:13',NULL,'1694',NULL,NULL),(5791,1694,'COE','applicants_certifications/
U1694T1699501102.pdf','applicants_certifications','Certificate of Employment
(1).pdf','U1694T1699501102.pdf','2023-11-09 11:38:22','2023-11-09
11:38:22',NULL,'1694',NULL,NULL),(5792,1694,'COE','applicants_certifications/
U1694T1699501593.pdf','applicants_certifications','No Training
Certificate.pdf','U1694T1699501593.pdf','2023-11-09 11:46:33','2023-11-09
11:46:33',NULL,'1694',NULL,NULL),(5793,1695,'TOR','applicants_certifications/
U1695T1699691358.pdf','applicants_certifications','PHD
TOR.pdf','U1695T1699691358.pdf','2023-11-11 16:29:18','2023-11-11
16:29:18',NULL,'1695',NULL,NULL),(5794,1695,'TOR','applicants_certifications/
U1695T1699691589.pdf','applicants_certifications','MASTERS
TOR.pdf','U1695T1699691589.pdf','2023-11-11 16:33:09','2023-11-11
16:33:09',NULL,'1695',NULL,NULL),(5795,1695,'TOR','applicants_certifications/
U1695T1699691607.pdf','applicants_certifications','COLLEGE
TOR.pdf','U1695T1699691607.pdf','2023-11-11 16:33:27','2023-11-11
16:33:27',NULL,'1695',NULL,NULL),(5796,1695,'COE','applicants_certifications/
U1695T1699691757.jpeg','applicants_certifications','APPOINTMENT
F.jpeg','U1695T1699691757.jpeg','2023-11-11 16:35:57','2023-11-11
16:35:57',NULL,'1695',NULL,NULL),(5797,1695,'SWT','applicants_certifications/
U1695T1699692231.pdf','applicants_certifications','NTC-Coaching
Program.pdf','U1695T1699692231.pdf','2023-11-11 16:43:51','2023-11-11
16:43:51',NULL,'1695',NULL,NULL),(5798,1695,'SWT','applicants_certifications/
U1695T1699692254.pdf','applicants_certifications','NTC-Teachers_
Program.pdf','U1695T1699692254.pdf','2023-11-11 16:44:14','2023-11-11
16:44:14',NULL,'1695',NULL,NULL),(5799,1695,'SWT','applicants_certifications/
U1695T1699692286.pdf','applicants_certifications','SEAIETI Certification Aeron John
A. Amin - 2022-04-08.pdf','U1695T1699692286.pdf','2023-11-11 16:44:46','2023-11-11
16:44:46',NULL,'1695',NULL,NULL),(5801,1695,'SWT','applicants_certifications/
U1695T1699692319.pdf','applicants_certifications','GURO21 Course 2
Certification.pdf','U1695T1699692319.pdf','2023-11-11 16:45:19','2023-11-11
16:45:19',NULL,'1695',NULL,NULL),(5802,1695,'SWT','applicants_certifications/
U1695T1699692332.pdf','applicants_certifications','GURO21 Course 1
Certification.pdf','U1695T1699692332.pdf','2023-11-11 16:45:32','2023-11-11
16:45:32',NULL,'1695',NULL,NULL),(5803,1695,'SWT','applicants_certifications/
U1695T1699692344.pdf','applicants_certifications','Teach On
Certification.pdf','U1695T1699692344.pdf','2023-11-11 16:45:44','2023-11-11
16:45:44',NULL,'1695',NULL,NULL),
(5804,1695,'ELIGIBILITY','applicants_certifications/
U1695T1699692384.jpeg','applicants_certifications','AUTHENTICATED
RATING.jpeg','U1695T1699692384.jpeg','2023-11-11 16:46:24','2023-11-11
16:46:24',NULL,'1695',NULL,NULL),
(5805,1695,'ELIGIBILITY','applicants_certifications/
U1695T1699692395.jpeg','applicants_certifications','AUTHENTICATED PRC
ID.jpeg','U1695T1699692395.jpeg','2023-11-11 16:46:35','2023-11-11
16:46:35',NULL,'1695',NULL,NULL),(5806,1695,'PDS','applicants_certifications/
U1695T1699692425.xlsx','applicants_certifications','AMIN PDS 2023
(UPDATED).xlsx','U1695T1699692425.xlsx','2023-11-11 16:47:05','2023-11-11
16:47:05',NULL,'1695',NULL,NULL),(5807,1367,'COE','applicants_certifications/
U1367T1701298849.pdf','applicants_certifications','Certificate Of
Employment.pdf','U1367T1701298849.pdf','2023-11-30 07:00:49','2023-11-30
07:00:49',NULL,'1367',NULL,NULL),(5809,1367,'SWT','applicants_certifications/
U1367T1701303631.pdf','applicants_certifications','Trainings & Seminars
Certificates 1.pdf','U1367T1701303631.pdf','2023-11-30 08:20:31','2023-11-30
08:20:31',NULL,'1367',NULL,NULL),(5810,1367,'SWT','applicants_certifications/
U1367T1701303682.pdf','applicants_certifications','Trainings & Seminars
Certificates 2.pdf','U1367T1701303682.pdf','2023-11-30 08:21:23','2023-11-30
08:21:23',NULL,'1367',NULL,NULL),
(5811,1367,'ELIGIBILITY','applicants_certifications/
U1367T1701305177.pdf','applicants_certifications','IPCR_DSWD_FY_2023.pdf','U1367T17
01305177.pdf','2023-11-30 08:46:17','2023-11-30 08:46:17',NULL,'1367',NULL,NULL),
(5812,1367,'ELIGIBILITY','applicants_certifications/
U1367T1701305215.pdf','applicants_certifications','Performance
Rating_NCSMC_FY2018.pdf','U1367T1701305215.pdf','2023-11-30 08:46:55','2023-11-30
08:46:55',NULL,'1367',NULL,NULL),
(5813,1699,'ELIGIBILITY','applicants_certifications/
U1699T1701870937.pdf','applicants_certifications','rating.pdf','U1699T1701870937.pd
f','2023-12-06 21:55:37','2023-12-06 21:55:37',NULL,'1699',NULL,NULL),
(5814,1699,'ELIGIBILITY','applicants_certifications/
U1699T1701870955.pdf','applicants_certifications','cse.pdf','U1699T1701870955.pdf',
'2023-12-06 21:55:55','2023-12-06 21:55:55',NULL,'1699',NULL,NULL),
(5815,1699,'TOR','applicants_certifications/
U1699T1701871132.pdf','applicants_certifications','Pagtan-TOR-
compressed.pdf','U1699T1701871132.pdf','2023-12-06 21:58:52','2023-12-06
21:58:52',NULL,'1699',NULL,NULL),(5816,1699,'SWT','applicants_certifications/
U1699T1701871153.pdf','applicants_certifications','mcle.pdf','U1699T1701871153.pdf'
,'2023-12-06 21:59:13','2023-12-06 21:59:13',NULL,'1699',NULL,NULL),
(5817,1203,'ELIGIBILITY','applicants_certifications/
U1203T1701916077.pdf','applicants_certifications','PD 907
Eligibility.pdf','U1203T1701916077.pdf','2023-12-07 10:27:57','2023-12-07
10:27:57',NULL,'1203',NULL,NULL),(5818,1203,'PDS','applicants_certifications/
U1203T1701916217.pdf','applicants_certifications','PDS.pdf','U1203T1701916217.pdf',
'2023-12-07 10:30:17','2023-12-07 10:30:17',NULL,'1203',NULL,NULL),
(5819,1203,'COE','applicants_certifications/
U1203T1701916253.jpg','applicants_certifications','Certificate of
Employment.jpg','U1203T1701916253.jpg','2023-12-07 10:30:53','2023-12-07
10:30:53',NULL,'1203',NULL,NULL),(5820,1203,'TOR','applicants_certifications/
U1203T1701916475.pdf','applicants_certifications','TOR.pdf','U1203T1701916475.pdf',
'2023-12-07 10:34:35','2023-12-07 10:34:35',NULL,'1203',NULL,NULL),
(5821,1701,'TOR','applicants_certifications/
U1701T1701930815.jpg','applicants_certifications','TOR
1.jpg','U1701T1701930815.jpg','2023-12-07 14:33:35','2023-12-07
14:33:35',NULL,'1701',NULL,NULL),(5822,1701,'TOR','applicants_certifications/
U1701T1701930927.jpg','applicants_certifications','TOR
2.jpg','U1701T1701930927.jpg','2023-12-07 14:35:27','2023-12-07
14:35:27',NULL,'1701',NULL,NULL),(5823,1701,'TOR','applicants_certifications/
U1701T1701930956.jpg','applicants_certifications','TOR
3.jpg','U1701T1701930956.jpg','2023-12-07 14:35:56','2023-12-07
14:35:56',NULL,'1701',NULL,NULL),(5824,1701,'COE','applicants_certifications/
U1701T1701930989.jpg','applicants_certifications','CERTIFICATE OF
EMPLOYMENT.jpg','U1701T1701930989.jpg','2023-12-07 14:36:29','2023-12-07
14:36:29',NULL,'1701',NULL,NULL),
(5825,1701,'ELIGIBILITY','applicants_certifications/
U1701T1701931209.jpg','applicants_certifications','CERTIFICATE OF
ELIGIBILITY.jpg','U1701T1701931209.jpg','2023-12-07 14:40:09','2023-12-07
14:40:09',NULL,'1701',NULL,NULL),(5829,1704,'TOR','applicants_certifications/
U1704T1701978160.pdf','applicants_certifications','OTR_DIPLOMA.pdf','U1704T17019781
60.pdf','2023-12-08 03:42:40','2023-12-08 03:42:40',NULL,'1704',NULL,NULL),
(5830,1704,'COE','applicants_certifications/
U1704T1701978222.png','applicants_certifications','CERT OF EMPLOYMENT
VOFS.png','U1704T1701978222.png','2023-12-08 03:43:42','2023-12-08
03:43:42',NULL,'1704',NULL,NULL),
(5831,1704,'ELIGIBILITY','applicants_certifications/
U1704T1701978294.pdf','applicants_certifications','CERT OF
PASSING.pdf','U1704T1701978294.pdf','2023-12-08 03:44:54','2023-12-08
03:44:54',NULL,'1704',NULL,NULL),
(5833,1704,'ELIGIBILITY','applicants_certifications/U1704T1701978411.
pdf','applicants_certifications','CIVIL SERVICE.pdf','U1704T1701978411.pdf','2023-
12-08 03:46:51','2023-12-08 03:46:51',NULL,'1704',NULL,NULL),
(5834,1702,'TOR','applicants_certifications/
U1702T1701996080.pdf','applicants_certifications','Photocopy of
OTR.pdf','U1702T1701996080.pdf','2023-12-08 08:41:20','2023-12-08
08:41:20',NULL,'1702',NULL,NULL),
(5835,1702,'ELIGIBILITY','applicants_certifications/
U1702T1701996121.pdf','applicants_certifications','Photocopy of Certificate of
Eligibilty.pdf','U1702T1701996121.pdf','2023-12-08 08:42:01','2023-12-08
08:42:01',NULL,'1702',NULL,NULL),
(5837,1702,'ELIGIBILITY','applicants_certifications/
U1702T1701996194.pdf','applicants_certifications','Photocopy of PRC Identification
Card.pdf','U1702T1701996194.pdf','2023-12-08 08:43:14','2023-12-08
08:43:14',NULL,'1702',NULL,NULL),(5838,1702,'PDS','applicants_certifications/
U1702T1701996904.pdf','applicants_certifications','Personal Data
Sheet.pdf','U1702T1701996904.pdf','2023-12-08 08:55:04','2023-12-08
08:55:04',NULL,'1702',NULL,NULL),(5839,1180,'TOR','applicants_certifications/
U1180T1702279052.pdf','applicants_certifications','TOR-
TCP.pdf','U1180T1702279052.pdf','2023-12-11 15:17:32','2023-12-11
15:17:32',NULL,'1180',NULL,NULL),(5840,1180,'TOR','applicants_certifications/
U1180T1702279069.pdf','applicants_certifications','TOR
MBA.pdf','U1180T1702279069.pdf','2023-12-11 15:17:49','2023-12-11
15:17:49',NULL,'1180',NULL,NULL),(5841,1180,'TOR','applicants_certifications/
U1180T1702279092.pdf','applicants_certifications','TOR-
BSBA.pdf','U1180T1702279092.pdf','2023-12-11 15:18:12','2023-12-11
15:18:12',NULL,'1180',NULL,NULL),(5843,1180,'SWT','applicants_certifications/
U1180T1702279205.pdf','applicants_certifications','Certificate of
Training.pdf','U1180T1702279205.pdf','2023-12-11 15:20:05','2023-12-11
15:20:05',NULL,'1180',NULL,NULL),
(5844,1180,'ELIGIBILITY','applicants_certifications/
U1180T1702279241.pdf','applicants_certifications','CERTIFICATE OF
RATING.pdf','U1180T1702279241.pdf','2023-12-11 15:20:41','2023-12-11
15:20:41',NULL,'1180',NULL,NULL),(5846,1180,'PDS','applicants_certifications/
U1180T1702279491.pdf','applicants_certifications','PDS.pdf','U1180T1702279491.pdf',
'2023-12-11 15:24:51','2023-12-11 15:24:51',NULL,'1180',NULL,NULL),
(5847,1257,'ELIGIBILITY','applicants_certifications/
U1257T1702360503.jpg','applicants_certifications','Certificate7.jpg','U1257T1702360
503.jpg','2023-12-12 13:55:03','2023-12-12 13:55:03',NULL,'1257',NULL,NULL),
(5851,1284,'COE','applicants_certifications/
U1284T1702433652.pdf','applicants_certifications','Ella Mae Sumayop (Certificate of
Employment).pdf','U1284T1702433652.pdf','2023-12-13 10:14:12','2023-12-13
10:14:12',NULL,'1284',NULL,NULL),(5852,1284,'SWT','applicants_certifications/
U1284T1702433883.pdf','applicants_certifications','Ella Mae Sumayop
(Certificates).pdf','U1284T1702433883.pdf','2023-12-13 10:18:03','2023-12-13
10:18:03',NULL,'1284',NULL,NULL),(5854,1450,'COE','applicants_certifications/
U1450T1702533402.pdf','applicants_certifications','Certificate of Employment
(latest).pdf','U1450T1702533402.pdf','2023-12-14 13:56:42','2023-12-14
13:56:42',NULL,'1450',NULL,NULL),(5855,1450,'SWT','applicants_certifications/
U1450T1702533611.pdf','applicants_certifications','Beacons of
Change.pdf','U1450T1702533611.pdf','2023-12-14 14:00:11','2023-12-14
14:00:11',NULL,'1450',NULL,NULL),(5856,1450,'SWT','applicants_certifications/
U1450T1702533638.pdf','applicants_certifications','Cordillera Creatives
Summit.pdf','U1450T1702533638.pdf','2023-12-14 14:00:38','2023-12-14
14:00:38',NULL,'1450',NULL,NULL),(5857,1450,'SWT','applicants_certifications/
U1450T1702533651.png','applicants_certifications','Maging Mapanuri-Media and
Information Literacy Conference.png','U1450T1702533651.png','2023-12-14
14:00:51','2023-12-14 14:00:51',NULL,'1450',NULL,NULL),
(5858,1450,'PDS','applicants_certifications/
U1450T1702533911.pdf','applicants_certifications','PDS -
Manzano.pdf','U1450T1702533911.pdf','2023-12-14 14:05:11','2023-12-14
14:05:11',NULL,'1450',NULL,NULL),(5859,1706,'PDS','applicants_certifications/
U1706T1702722710.xlsx','applicants_certifications','Excel-File-CSC-Personal-Data-
Sheet-PDS-2017 (3).xlsx','U1706T1702722710.xlsx','2023-12-16 18:31:50','2023-12-16
18:31:50',NULL,'1706',NULL,NULL),
(5860,1706,'ELIGIBILITY','applicants_certifications/
U1706T1702723345.docx','applicants_certifications','Civil
Service.docx','U1706T1702723345.docx','2023-12-16 18:42:25','2023-12-16
18:42:25',NULL,'1706',NULL,NULL),(5861,1706,'TOR','applicants_certifications/
U1706T1702724961.jpg','applicants_certifications','OTR_000501.jpg','U1706T170272496
1.jpg','2023-12-16 19:09:21','2023-12-16 19:09:21',NULL,'1706',NULL,NULL),
(5862,1706,'TOR','applicants_certifications/
U1706T1702725010.jpg','applicants_certifications','OTR_000502.jpg','U1706T170272501
0.jpg','2023-12-16 19:10:10','2023-12-16 19:10:10',NULL,'1706',NULL,NULL),
(5863,1706,'TOR','applicants_certifications/
U1706T1702725061.jpg','applicants_certifications','OTR_000503.jpg','U1706T170272506
1.jpg','2023-12-16 19:11:01','2023-12-16 19:11:01',NULL,'1706',NULL,NULL),
(5864,1706,'SWT','applicants_certifications/
U1706T1702726020.jpg','applicants_certifications','2_000487.jpg','U1706T1702726020.
jpg','2023-12-16 19:27:00','2023-12-16 19:27:00',NULL,'1706',NULL,NULL),
(5865,1706,'SWT','applicants_certifications/
U1706T1702726064.jpg','applicants_certifications','3_000488.jpg','U1706T1702726064.
jpg','2023-12-16 19:27:44','2023-12-16 19:27:44',NULL,'1706',NULL,NULL),
(5866,1706,'SWT','applicants_certifications/
U1706T1702726100.jpg','applicants_certifications','4_000489.jpg','U1706T1702726100.
jpg','2023-12-16 19:28:20','2023-12-16 19:28:20',NULL,'1706',NULL,NULL),
(5867,1706,'SWT','applicants_certifications/
U1706T1702726153.jpg','applicants_certifications','5_000490.jpg','U1706T1702726153.
jpg','2023-12-16 19:29:13','2023-12-16 19:29:13',NULL,'1706',NULL,NULL),
(5868,1706,'SWT','applicants_certifications/
U1706T1702726195.jpg','applicants_certifications','6_000491.jpg','U1706T1702726195.
jpg','2023-12-16 19:29:55','2023-12-16 19:29:55',NULL,'1706',NULL,NULL),
(5869,1706,'SWT','applicants_certifications/
U1706T1702726272.jpg','applicants_certifications','7_000492.jpg','U1706T1702726272.
jpg','2023-12-16 19:31:12','2023-12-16 19:31:12',NULL,'1706',NULL,NULL),
(5870,1706,'SWT','applicants_certifications/
U1706T1702726311.jpg','applicants_certifications','8_000493.jpg','U1706T1702726311.
jpg','2023-12-16 19:31:51','2023-12-16 19:31:51',NULL,'1706',NULL,NULL),
(5871,1706,'SWT','applicants_certifications/
U1706T1702726356.jpg','applicants_certifications','10_000495.jpg','U1706T1702726356
.jpg','2023-12-16 19:32:36','2023-12-16 19:32:36',NULL,'1706',NULL,NULL),
(5872,1706,'SWT','applicants_certifications/
U1706T1702726403.jpg','applicants_certifications','11_000496.jpg','U1706T1702726403
.jpg','2023-12-16 19:33:23','2023-12-16 19:33:23',NULL,'1706',NULL,NULL),
(5873,1706,'SWT','applicants_certifications/
U1706T1702726450.jpg','applicants_certifications','14_000499.jpg','U1706T1702726450
.jpg','2023-12-16 19:34:10','2023-12-16 19:34:10',NULL,'1706',NULL,NULL),
(5874,1706,'SWT','applicants_certifications/
U1706T1702726484.jpg','applicants_certifications','15_000500.jpg','U1706T1702726484
.jpg','2023-12-16 19:34:44','2023-12-16 19:34:44',NULL,'1706',NULL,NULL),
(5875,1706,'COE','applicants_certifications/
U1706T1702733154.jpeg','applicants_certifications','received_876451380614609.jpeg',
'U1706T1702733154.jpeg','2023-12-16 21:25:54','2023-12-16
21:25:54',NULL,'1706',NULL,NULL),
(5876,1707,'ELIGIBILITY','applicants_certifications/
U1707T1702903336.pdf','applicants_certifications','CS
Eligibility.pdf','U1707T1702903336.pdf','2023-12-18 20:42:16','2023-12-18
20:42:16',NULL,'1707',NULL,NULL),(5877,1707,'SWT','applicants_certifications/
U1707T1702903397.pdf','applicants_certifications','Certificate
1.pdf','U1707T1702903397.pdf','2023-12-18 20:43:17','2023-12-18
20:43:17',NULL,'1707',NULL,NULL),(5878,1707,'SWT','applicants_certifications/
U1707T1702903521.pdf','applicants_certifications','Certificate
2.pdf','U1707T1702903521.pdf','2023-12-18 20:45:21','2023-12-18
20:45:21',NULL,'1707',NULL,NULL),(5879,1707,'SWT','applicants_certifications/
U1707T1702903702.pdf','applicants_certifications','Certificate
3.pdf','U1707T1702903702.pdf','2023-12-18 20:48:22','2023-12-18
20:48:22',NULL,'1707',NULL,NULL),(5880,1707,'SWT','applicants_certifications/
U1707T1702903877.pdf','applicants_certifications','Certificate
4.pdf','U1707T1702903877.pdf','2023-12-18 20:51:17','2023-12-18
20:51:17',NULL,'1707',NULL,NULL),(5881,1707,'SWT','applicants_certifications/
U1707T1702904018.pdf','applicants_certifications','Certificate
5.pdf','U1707T1702904018.pdf','2023-12-18 20:53:38','2023-12-18
20:53:38',NULL,'1707',NULL,NULL),(5882,1707,'SWT','applicants_certifications/
U1707T1702904170.pdf','applicants_certifications','Certificate
6.pdf','U1707T1702904170.pdf','2023-12-18 20:56:10','2023-12-18
20:56:10',NULL,'1707',NULL,NULL),(5883,1707,'SWT','applicants_certifications/
U1707T1702904364.pdf','applicants_certifications','Certificate
7.pdf','U1707T1702904364.pdf','2023-12-18 20:59:24','2023-12-18
20:59:24',NULL,'1707',NULL,NULL),(5884,1708,'TOR','applicants_certifications/
U1708T1703177633.htaccess','applicants_certifications','.htaccess','U1708T170317763
3.htaccess','2023-12-22 00:53:53','2023-12-22 00:53:53',NULL,'1708',NULL,NULL),
(5886,1411,'COE','applicants_certifications/
U1411T1703830089.pdf','applicants_certifications','COE.pdf','U1411T1703830089.pdf',
'2023-12-29 14:08:09','2023-12-29 14:08:09',NULL,'1411',NULL,NULL),
(5887,1709,'TOR','applicants_certifications/
U1709T1704386667.pdf','applicants_certifications','BACHELOR\'S DEGREE TRANSCRIPT OF
RECORD.pdf','U1709T1704386667.pdf','2024-01-05 00:44:27','2024-01-05
00:44:27',NULL,'1709',NULL,NULL),(5888,1709,'TOR','applicants_certifications/
U1709T1704386698.pdf','applicants_certifications','EARNING UNITS
TRANSCRIPT.pdf','U1709T1704386698.pdf','2024-01-05
00:44:58','2024-01-05 00:44:58',NULL,'1709',NULL,NULL),
(5889,1709,'COE','applicants_certifications/
U1709T1704386735.pdf','applicants_certifications','COE
ULSHS.pdf','U1709T1704386735.pdf','2024-01-05 00:45:35','2024-01-05
00:45:35',NULL,'1709',NULL,NULL),
(5890,1709,'ELIGIBILITY','applicants_certifications/
U1709T1704386839.pdf','applicants_certifications','PRC
FILES.pdf','U1709T1704386839.pdf','2024-01-05 00:47:19','2024-01-05
00:47:19',NULL,'1709',NULL,NULL),(5891,1709,'PDS','applicants_certifications/
U1709T1704387075.xlsx','applicants_certifications','CS Form No. 212 Personal Data
Sheet revised.xlsx','U1709T1704387075.xlsx','2024-01-05 00:51:15','2024-01-05
00:51:15',NULL,'1709',NULL,NULL),(5892,1709,'TOR','applicants_certifications/
U1709T1704421639.pdf','applicants_certifications','MASTERS
CERTIFICATION .pdf','U1709T1704421639.pdf','2024-01-05 10:27:19','2024-01-05
10:27:19',NULL,'1709',NULL,NULL),(5893,1712,'TOR','applicants_certifications/
U1712T1705482318.pdf','applicants_certifications','PROVERBS BAYACHAN
TOR.pdf','U1712T1705482318.pdf','2024-01-17 17:05:18','2024-01-17
17:05:18',NULL,'1712',NULL,NULL),(5894,1712,'COE','applicants_certifications/
U1712T1705482377.pdf','applicants_certifications','PROVERBS BAYACHAN Certificate of
Employment.pdf','U1712T1705482377.pdf','2024-01-17 17:06:17','2024-01-17
17:06:17',NULL,'1712',NULL,NULL),(5895,1712,'SWT','applicants_certifications/
U1712T1705482409.pdf','applicants_certifications','IV Therapy
Training.pdf','U1712T1705482409.pdf','2024-01-17 17:06:49','2024-01-17
17:06:49',NULL,'1712',NULL,NULL),(5896,1712,'SWT','applicants_certifications/
U1712T1705482455.pdf','applicants_certifications','Basic Life Support
Training.pdf','U1712T1705482455.pdf','2024-01-17 17:07:35','2024-01-17
17:07:35',NULL,'1712',NULL,NULL),(5897,1712,'SWT','applicants_certifications/
U1712T1705482487.pdf','applicants_certifications','Advanced Cardiovascular life
support Training.pdf','U1712T1705482487.pdf','2024-01-17 17:08:07','2024-01-17
17:08:07',NULL,'1712',NULL,NULL),
(5898,1712,'ELIGIBILITY','applicants_certifications/
U1712T1705482594.pdf','applicants_certifications','PROVERBS BAYACHAN PRC
LICENSE.pdf','U1712T1705482594.pdf','2024-01-17 17:09:54','2024-01-17
17:09:54',NULL,'1712',NULL,NULL),(5899,1712,'PDS','applicants_certifications/
U1712T1705483164.pdf','applicants_certifications','Personal Data Sheet Page
1.pdf','U1712T1705483164.pdf','2024-01-17 17:19:24','2024-01-17
17:19:24',NULL,'1712',NULL,NULL),(5900,1712,'PDS','applicants_certifications/
U1712T1705483290.pdf','applicants_certifications','Personal Data Sheet Page
2.pdf','U1712T1705483290.pdf','2024-01-17 17:21:30','2024-01-17
17:21:30',NULL,'1712',NULL,NULL),(5901,1712,'PDS','applicants_certifications/
U1712T1705483440.pdf','applicants_certifications','Personal Data Sheet Page
3.pdf','U1712T1705483440.pdf','2024-01-17 17:24:00','2024-01-17
17:24:00',NULL,'1712',NULL,NULL),(5902,1712,'PDS','applicants_certifications/
U1712T1705483457.pdf','applicants_certifications','Personal Data Sheet Page
4.pdf','U1712T1705483457.pdf','2024-01-17 17:24:17','2024-01-17
17:24:17',NULL,'1712',NULL,NULL),
(5904,1710,'ELIGIBILITY','applicants_certifications/
U1710T1705625564.jpg','applicants_certifications','IMG_20240119_084918.jpg','U1710T
1705625564.jpg','2024-01-19 08:52:44','2024-01-19 08:52:44',NULL,'1710',NULL,NULL),
(5905,1710,'TOR','applicants_certifications/
U1710T1705625588.jpg','applicants_certifications','Screenshot_20240119_085100.jpg',
'U1710T1705625588.jpg','2024-01-19 08:53:08','2024-01-19
08:53:08',NULL,'1710',NULL,NULL),(5906,1710,'TOR','applicants_certifications/
U1710T1705625606.jpg','applicants_certifications','Screenshot_20240119_085054.jpg',
'U1710T1705625606.jpg','2024-01-19 08:53:26','2024-01-19
08:53:26',NULL,'1710',NULL,NULL),(5907,1710,'TOR','applicants_certifications/
U1710T1705625632.jpg','applicants_certifications','Screenshot_20240119_085046.jpg',
'U1710T1705625632.jpg','2024-01-19 08:53:52','2024-01-19
08:53:52',NULL,'1710',NULL,NULL),(5908,1180,'COE','applicants_certifications/
U1180T1706147185.jpg','applicants_certifications','COE_1.jpg','U1180T1706147185.jpg
','2024-01-25 09:46:25','2024-01-25 09:46:25',NULL,'1180',NULL,NULL),
(5912,1713,'TOR','applicants_certifications/
U1713T1706171684.pdf','applicants_certifications','OTR
AUTHENTICATED015.pdf','U1713T1706171684.pdf','2024-01-25 16:34:44','2024-01-25
16:34:44',NULL,'1713',NULL,NULL),(5913,1713,'COE','applicants_certifications/
U1713T1706171735.pdf','applicants_certifications','SERVICE RECORD &
COE.pdf','U1713T1706171735.pdf','2024-01-25 16:35:35','2024-01-25
16:35:35',NULL,'1713',NULL,NULL),(5914,1713,'SWT','applicants_certifications/
U1713T1706172363.pdf','applicants_certifications','CERTIFICATES JOAN
FINAL20240125_16454054.pdf','U1713T1706172363.pdf','2024-01-25 16:46:03','2024-01-
25 16:46:03',NULL,'1713',NULL,NULL),
(5915,1713,'ELIGIBILITY','applicants_certifications/
U1713T1706172650.pdf','applicants_certifications','ELIGIBILITY JOAN
FINAL20240125_16494843.pdf','U1713T1706172650.pdf','2024-01-25 16:50:50','2024-01-
25 16:50:50',NULL,'1713',NULL,NULL),(5916,1713,'PDS','applicants_certifications/
U1713T1706172743.xlsx','applicants_certifications','PDS UPDATED
JOAN.xlsx','U1713T1706172743.xlsx','2024-01-25 16:52:23','2024-01-25
16:52:23',NULL,'1713',NULL,NULL),(5917,1486,'TOR','applicants_certifications/
U1486T1706182466.pdf','applicants_certifications','Roxane_Tagtag - TOR and
Diploma.pdf','U1486T1706182466.pdf','2024-01-25 19:34:26','2024-01-25
19:34:26',NULL,'1486',NULL,NULL),(5918,1486,'COE','applicants_certifications/
U1486T1706182484.pdf','applicants_certifications','Roxane_Tagtag - Certificate of
Job Contract.pdf','U1486T1706182484.pdf','2024-01-25 19:34:44','2024-01-25
19:34:44',NULL,'1486',NULL,NULL),
(5919,1486,'ELIGIBILITY','applicants_certifications/
U1486T1706182502.pdf','applicants_certifications','Roxane_Tagtag - Certificate of
Eligibility for SubProf.pdf','U1486T1706182502.pdf','2024-01-25 19:35:02','2024-01-
25 19:35:02',NULL,'1486',NULL,NULL),
(5920,1486,'ELIGIBILITY','applicants_certifications/
U1486T1706182515.pdf','applicants_certifications','Roxane_Tagtag - Certificate of
Eligibility for Prof.pdf','U1486T1706182515.pdf','2024-01-25 19:35:15','2024-01-25
19:35:15',NULL,'1486',NULL,NULL),(5921,1486,'PDS','applicants_certifications/
U1486T1706182537.pdf','applicants_certifications','Roxane_Tagtag - Updated PDS and
WS.pdf','U1486T1706182537.pdf','2024-01-25 19:35:37','2024-01-25
19:35:37',NULL,'1486',NULL,NULL),(5922,1717,'TOR','applicants_certifications/
U1717T1706246527.jpg','applicants_certifications','CamScanner 04-25-2022
17.47_1.jpg','U1717T1706246527.jpg','2024-01-26 13:22:07','2024-01-26
13:22:07',NULL,'1717',NULL,NULL),(5923,1717,'TOR','applicants_certifications/
U1717T1706246549.jpg','applicants_certifications','CamScanner 04-25-2022
17.47_2.jpg','U1717T1706246549.jpg','2024-01-26 13:22:29','2024-01-26
13:22:29',NULL,'1717',NULL,NULL),(5924,1717,'TOR','applicants_certifications/
U1717T1706246569.jpg','applicants_certifications','CamScanner 04-25-2022
17.47_3.jpg','U1717T1706246569.jpg','2024-01-26 13:22:49','2024-01-26
13:22:49',NULL,'1717',NULL,NULL),(5925,1720,'TOR','applicants_certifications/
U1720T1706249587.pdf','applicants_certifications','img20240125_13071983.pdf','U1720
T1706249587.pdf','2024-01-26 14:13:07','2024-01-26
14:13:07',NULL,'1720',NULL,NULL),(5926,1720,'TOR','applicants_certifications/
U1720T1706249601.pdf','applicants_certifications','img20240125_13074471.pdf','U1720
T1706249601.pdf','2024-01-26 14:13:21','2024-01-26
14:13:21',NULL,'1720',NULL,NULL),(5927,1720,'TOR','applicants_certifications/
U1720T1706249611.pdf','applicants_certifications','img20240125_13081124.pdf','U1720
T1706249611.pdf','2024-01-26 14:13:31','2024-01-26
14:13:31',NULL,'1720',NULL,NULL),(5928,1720,'TOR','applicants_certifications/
U1720T1706249620.pdf','applicants_certifications','img20240125_13083493.pdf','U1720
T1706249620.pdf','2024-01-26 14:13:40','2024-01-26
14:13:40',NULL,'1720',NULL,NULL),(5929,1720,'PDS','applicants_certifications/
U1720T1706250000.xlsx','applicants_certifications','JHONNY LLOYD G. MEJIA
PDS.xlsx','U1720T1706250000.xlsx','2024-01-26 14:20:00','2024-01-26
14:20:00',NULL,'1720',NULL,NULL),
(5930,1720,'ELIGIBILITY','applicants_certifications/
U1720T1706250156.pdf','applicants_certifications','CS
PROF.pdf','U1720T1706250156.pdf','2024-01-26 14:22:36','2024-01-26
14:22:36',NULL,'1720',NULL,NULL),
(5931,1720,'ELIGIBILITY','applicants_certifications/
U1720T1706250168.pdf','applicants_certifications','CS SUB-
PRO.pdf','U1720T1706250168.pdf','2024-01-26 14:22:48','2024-01-26
14:22:48',NULL,'1720',NULL,NULL),(5932,1719,'TOR','applicants_certifications/
U1719T1706252410.pdf','applicants_certifications','Transcript of
Records.pdf','U1719T1706252410.pdf','2024-01-26 15:00:10','2024-01-26
15:00:10',NULL,'1719',NULL,NULL),(5933,1719,'COE','applicants_certifications/
U1719T1706252445.pdf','applicants_certifications','Certificate of Service-
employment.pdf','U1719T1706252445.pdf','2024-01-26 15:00:45','2024-01-26
15:00:45',NULL,'1719',NULL,NULL),
(5935,1719,'ELIGIBILITY','applicants_certifications/
U1719T1706256294.pdf','applicants_certifications','PRC license-
certification.pdf','U1719T1706256294.pdf','2024-01-26 16:04:54','2024-01-26
16:04:54',NULL,'1719',NULL,NULL),(5938,1725,'PDS','applicants_certifications/
U1725T1706257118.jpg','applicants_certifications','20240126_161145.jpg','U1725T1706
257118.jpg','2024-01-26 16:18:38','2024-01-26 16:18:38',NULL,'1725',NULL,NULL),
(5939,1725,'PDS','applicants_certifications/
U1725T1706257148.jpg','applicants_certifications','20240126_161155.jpg','U1725T1706
257148.jpg','2024-01-26 16:19:08','2024-01-26 16:19:08',NULL,'1725',NULL,NULL),
(5940,1725,'PDS','applicants_certifications/
U1725T1706257169.jpg','applicants_certifications','20240126_161208.jpg','U1725T1706
257169.jpg','2024-01-26 16:19:29','2024-01-26 16:19:29',NULL,'1725',NULL,NULL),
(5941,1725,'PDS','applicants_certifications/
U1725T1706257189.jpg','applicants_certifications','20240126_161218.jp
g','U1725T1706257189.jpg','2024-01-26 16:19:49','2024-01-26
16:19:49',NULL,'1725',NULL,NULL),(5942,1719,'PDS','applicants_certifications/
U1719T1706257197.pdf','applicants_certifications','JBBinbinon-PDS
Sheet.pdf','U1719T1706257197.pdf','2024-01-26 16:19:57','2024-01-26
16:19:57',NULL,'1719',NULL,NULL),(5943,1725,'TOR','applicants_certifications/
U1725T1706257211.jpg','applicants_certifications','20240126_161108.jpg','U1725T1706
257211.jpg','2024-01-26 16:20:11','2024-01-26 16:20:11',NULL,'1725',NULL,NULL),
(5944,1725,'TOR','applicants_certifications/
U1725T1706257228.jpg','applicants_certifications','20240126_161119.jpg','U1725T1706
257228.jpg','2024-01-26 16:20:28','2024-01-26 16:20:28',NULL,'1725',NULL,NULL),
(5945,1725,'ELIGIBILITY','applicants_certifications/
U1725T1706257256.jpg','applicants_certifications','20240126_161022.jpg','U1725T1706
257256.jpg','2024-01-26 16:20:56','2024-01-26 16:20:56',NULL,'1725',NULL,NULL),
(5946,966,'PDS','applicants_certifications/
U966T1706262338.jpg','applicants_certifications','20240126_174026.jpg','U966T170626
2338.jpg','2024-01-26 17:45:38','2024-01-26 17:45:38',NULL,'966',NULL,NULL),
(5947,966,'PDS','applicants_certifications/
U966T1706262381.jpg','applicants_certifications','20240126_174049.jpg','U966T170626
2381.jpg','2024-01-26 17:46:21','2024-01-26 17:46:21',NULL,'966',NULL,NULL),
(5948,966,'PDS','applicants_certifications/
U966T1706262411.jpg','applicants_certifications','20240126_174103.jpg','U966T170626
2411.jpg','2024-01-26 17:46:51','2024-01-26 17:46:51',NULL,'966',NULL,NULL),
(5949,966,'PDS','applicants_certifications/
U966T1706262440.jpg','applicants_certifications','20240126_174116.jpg','U966T170626
2440.jpg','2024-01-26 17:47:20','2024-01-26 17:47:20',NULL,'966',NULL,NULL),
(5950,966,'COE','applicants_certifications/
U966T1706262589.jpg','applicants_certifications','20240126_174906.jpg','U966T170626
2589.jpg','2024-01-26 17:49:49','2024-01-26 17:49:49',NULL,'966',NULL,NULL),
(5951,1730,'ELIGIBILITY','applicants_certifications/
U1730T1706267340.pdf','applicants_certifications','Document
2.pdf','U1730T1706267340.pdf','2024-01-26 19:09:00','2024-01-26
19:09:00',NULL,'1730',NULL,NULL),
(5952,88,'ELIGIBILITY','applicants_certifications/
U88T1706271745.jpg','applicants_certifications','IMG_20230920_073936.jpg','U88T1706
271745.jpg','2024-01-26 20:22:25','2024-01-26 20:22:25',NULL,'88',NULL,NULL),
(5953,88,'PDS','applicants_certifications/
U88T1706271819.jpg','applicants_certifications','IMG_20230320_120533.jpg','U88T1706
271819.jpg','2024-01-26 20:23:39','2024-01-26 20:23:39',NULL,'88',NULL,NULL),
(5954,88,'COE','applicants_certifications/
U88T1706272143.jpg','applicants_certifications','IMG_20230320_121648.jpg','U88T1706
272143.jpg','2024-01-26 20:29:03','2024-01-26 20:29:03',NULL,'88',NULL,NULL),
(5955,88,'COE','applicants_certifications/
U88T1706272226.jpg','applicants_certifications','IMG_20230320_121623.jpg','U88T1706
272226.jpg','2024-01-26 20:30:26','2024-01-26 20:30:26',NULL,'88',NULL,NULL),
(5957,1284,'ELIGIBILITY','applicants_certifications/
U1284T1706273260.pdf','applicants_certifications','Ella Mae Sumayop (PRC Report of
Rating, PRC ID, and CSC Notice of Rating).pdf','U1284T1706273260.pdf','2024-01-26
20:47:40','2024-01-26 20:47:40',NULL,'1284',NULL,NULL),
(5958,1284,'PDS','applicants_certifications/
U1284T1706273890.pdf','applicants_certifications','Ella Mae Sumayop (Personal Data
Sheet with Work Experience Sheet).pdf','U1284T1706273890.pdf','2024-01-26
20:58:10','2024-01-26 20:58:10',NULL,'1284',NULL,NULL),
(5959,1284,'TOR','applicants_certifications/
U1284T1706273974.pdf','applicants_certifications','Ella Mae Sumayop
(TOR).pdf','U1284T1706273974.pdf','2024-01-26 20:59:34','2024-01-26
20:59:34',NULL,'1284',NULL,NULL),(5964,822,'TOR','applicants_certifications/
U822T1706276454.pdf','applicants_certifications','Dulon, Marinelle M._ Transcript
(College Degree).pdf','U822T1706276454.pdf','2024-01-26 21:40:54','2024-01-26
21:40:54',NULL,'822',NULL,NULL),
(5965,1726,'ELIGIBILITY','applicants_certifications/
U1726T1706276478.pdf','applicants_certifications','copy of LET
rating.pdf','U1726T1706276478.pdf','2024-01-26 21:41:18','2024-01-26
21:41:18',NULL,'1726',NULL,NULL),
(5966,822,'ELIGIBILITY','applicants_certifications/
U822T1706276521.pdf','applicants_certifications','Dulon, Marinelle M._ID
2.pdf','U822T1706276521.pdf','2024-01-26 21:42:01','2024-01-26
21:42:01',NULL,'822',NULL,NULL),(5967,1726,'COE','applicants_certifications/
U1726T1706278163.pdf','applicants_certifications','Blue Mountain
Inc..pdf','U1726T1706278163.pdf','2024-01-26 22:09:23','2024-01-26
22:09:23',NULL,'1726',NULL,NULL),(5968,1726,'COE','applicants_certifications/
U1726T1706278185.pdf','applicants_certifications','Dynamicstar Mktg.
Inc..pdf','U1726T1706278185.pdf','2024-01-26 22:09:45','2024-01-26
22:09:45',NULL,'1726',NULL,NULL),(5969,1726,'COE','applicants_certifications/
U1726T1706278202.pdf','applicants_certifications','Gentrade Int\'l Phils
Inc..pdf','U1726T1706278202.pdf','2024-01-26 22:10:02','2024-01-26
22:10:02',NULL,'1726',NULL,NULL),(5970,1726,'COE','applicants_certifications/
U1726T1706278215.pdf','applicants_certifications','Qualitex Garments
Inc..pdf','U1726T1706278215.pdf','2024-01-26 22:10:15','2024-01-26
22:10:15',NULL,'1726',NULL,NULL),(5971,1726,'COE','applicants_certifications/
U1726T1706278231.pdf','applicants_certifications','Technology Plus Industries
Inc..pdf','U1726T1706278231.pdf','2024-01-26 22:10:31','2024-01-26
22:10:31',NULL,'1726',NULL,NULL),(5974,1468,'COE','applicants_certifications/
U1468T1706316566.jpg','applicants_certifications','CORTEZ, JOEY M
(COE).jpg','U1468T1706316566.jpg','2024-01-27 08:49:26','2024-01-27
08:49:26',NULL,'1468',NULL,NULL),(5975,1468,'SWT','applicants_certifications/
U1468T1706317524.pdf','applicants_certifications','JOEY M CORTEZ, LPT, MARE -
special education certificate.pdf','U1468T1706317524.pdf','2024-01-27
09:05:24','2024-01-27 09:05:24',NULL,'1468',NULL,NULL),
(5976,1468,'SWT','applicants_certifications/
U1468T1706317546.pdf','applicants_certifications','JOEY M. CORTEZ - NCCA
Balagtasan.pdf','U1468T1706317546.pdf','2024-01-27 09:05:46','2024-01-27
09:05:46',NULL,'1468',NULL,NULL),(5977,1468,'SWT','applicants_certifications/
U1468T1706317564.pdf','applicants_certifications','Kabaro A gender awareness and
sensitivity training.pdf','U1468T1706317564.pdf','2024-01-27 09:06:04','2024-01-27
09:06:04',NULL,'1468',NULL,NULL),(5978,1357,'SWT','applicants_certifications/
U1357T1706321664.pdf','applicants_certifications','cert. of training
2.pdf','U1357T1706321664.pdf','2024-01-27 10:14:24','2024-01-27
10:14:24',NULL,'1357',NULL,NULL),(5979,1357,'PDS','applicants_certifications/
U1357T1706321732.pdf','applicants_certifications','PDS.pdf','U1357T1706321732.pdf',
'2024-01-27 10:15:32','2024-01-27 10:15:32',NULL,'1357',NULL,NULL),
(5983,1726,'TOR','applicants_certifications/
U1726T1706367603.pdf','applicants_certifications','TOR for 24 units in
Education.pdf','U1726T1706367603.pdf','2024-01-27 23:00:03','2024-01-27
23:00:03',NULL,'1726',NULL,NULL),(5984,1726,'PDS','applicants_certifications/
U1726T1706371429.xlsx','applicants_certifications','Erna-
PDS.xlsx','U1726T1706371429.xlsx','2024-01-28 00:03:49','2024-01-28
00:03:49',NULL,'1726',NULL,NULL),(5985,1738,'TOR','applicants_certifications/
U1738T1706405378.png','applicants_certifications','Screenshot_2024-01-28-09-20-57-
68.png','U1738T1706405378.png','2024-01-28 09:29:38','2024-01-28
09:29:38',NULL,'1738',NULL,NULL),(5986,1739,'SWT','applicants_certifications/
U1739T1706409508.pdf','applicants_certifications','Certificate_of_Completion_new.pd
f','U1739T1706409508.pdf','2024-01-28 10:38:28','2024-01-28
10:38:28',NULL,'1739',NULL,NULL),(5987,1739,'SWT','applicants_certifications/
U1739T1706409543.pdf','applicants_certifications','Certificate_of_Completion.pdf','
U1739T1706409543.pdf','2024-01-28 10:39:03','2024-01-28
10:39:03',NULL,'1739',NULL,NULL),
(5988,1739,'ELIGIBILITY','applicants_certifications/
U1739T1706409585.pdf','applicants_certifications','Notice of
Rating.pdf','U1739T1706409585.pdf','2024-01-28 10:39:45','2024-01-28
10:39:45',NULL,'1739',NULL,NULL),
(5989,1739,'ELIGIBILITY','applicants_certifications/
U1739T1706409610.pdf','applicants_certifications','Notice of
Rating(S).pdf','U1739T1706409610.pdf','2024-01-28 10:40:10','2024-01-28
10:40:10',NULL,'1739',NULL,NULL),(5995,1737,'TOR','applicants_certifications/
U1737T1706427071.pdf','applicants_certifications','TOR.pdf','U1737T1706427071.pdf',
'2024-01-28 15:31:11','2024-01-28 15:31:11',NULL,'1737',NULL,NULL),
(5996,1737,'COE','applicants_certifications/
U1737T1706427103.pdf','applicants_certifications','COE.pdf','U1737T1706427103.pdf',
'2024-01-28 15:31:43','2024-01-28 15:31:43',NULL,'1737',NULL,NULL),
(5997,1737,'ELIGIBILITY','applicants_certifications/
U1737T1706427137.pdf','applicants_certifications','ELIG.pdf','U1737T1706427137.pdf'
,'2024-01-28 15:32:17','2024-01-28 15:32:17',NULL,'1737',NULL,NULL),
(5998,1737,'PDS','applicants_certifications/
U1737T1706427167.pdf','applicants_certifications','PDS.pdf','U1737T1706427167.pdf',
'2024-01-28 15:32:47','2024-01-28 15:32:47',NULL,'1737',NULL,NULL),
(6001,1718,'SWT','applicants_certifications/
U1718T1706428527.pdf','applicants_certifications','Bolla, Mary
Bernadeth.pdf','U1718T1706428527.pdf','2024-01-28 15:55:27','2024-01-28
15:55:27',NULL,'1718',NULL,NULL),(6005,1737,'SWT','applicants_certifications/
U1737T1706429007.pdf','applicants_certifications','TRAINING.pdf','U1737T1706429007.
pdf','2024-01-28 16:03:27','2024-01-28 16:03:27',NULL,'1737',NULL,NULL),
(6006,1726,'SWT','applicants_certifications/
U1726T1706440418.pdf','applicants_certifications','IMG.
1.pdf','U1726T1706440418.pdf','2024-01-28 19:13:38','2024-01-28
19:13:38',NULL,'1726',NULL,NULL),(6007,1726,'SWT','applicants_certifications/
U1726T1706440510.pdf','applicants_certifications','IMG.2.pdf','U1726T1706440510.pdf
','2024-01-28 19:15:10','2024-01-28 19:15:10',NULL,'1726',NULL,NULL),
(6008,1726,'SWT','applicants_certifications/
U1726T1706442632.pdf','applicants_certifications','IMG.3.pdf','U1726T17064
42632.pdf','2024-01-28 19:50:32','2024-01-28 19:50:32',NULL,'1726',NULL,NULL),
(6009,1726,'SWT','applicants_certifications/
U1726T1706444076.pdf','applicants_certifications','IMG.4.pdf','U1726T1706444076.pdf
','2024-01-28 20:14:36','2024-01-28 20:14:36',NULL,'1726',NULL,NULL),
(6010,1726,'SWT','applicants_certifications/
U1726T1706444201.pdf','applicants_certifications','IMG.5.pdf','U1726T1706444201.pdf
','2024-01-28 20:16:41','2024-01-28 20:16:41',NULL,'1726',NULL,NULL),
(6011,1726,'TOR','applicants_certifications/
U1726T1706447515.jpg','applicants_certifications','TOR
college_0.jpg','U1726T1706447515.jpg','2024-01-28 21:11:55','2024-01-28
21:11:55',NULL,'1726',NULL,NULL),(6012,1722,'COE','applicants_certifications/
U1722T1706495842.pdf','applicants_certifications','Bumidang_SR_COE.pdf','U1722T1706
495842.pdf','2024-01-29 10:37:22','2024-01-29 10:37:22',NULL,'1722',NULL,NULL),
(6013,1722,'ELIGIBILITY','applicants_certifications/
U1722T1706496537.pdf','applicants_certifications','Eligibility &
License.pdf','U1722T1706496537.pdf','2024-01-29 10:48:57','2024-01-29
10:48:57',NULL,'1722',NULL,NULL),(6014,1743,'TOR','applicants_certifications/
U1743T1706501856.pdf','applicants_certifications','tor.pdf','U1743T1706501856.pdf',
'2024-01-29 12:17:36','2024-01-29 12:17:36',NULL,'1743',NULL,NULL),
(6015,1743,'ELIGIBILITY','applicants_certifications/
U1743T1706501958.pdf','applicants_certifications','certificate of
eligibility.pdf','U1743T1706501958.pdf','2024-01-29 12:19:18','2024-01-29
12:19:18',NULL,'1743',NULL,NULL),(6016,1743,'PDS','applicants_certifications/
U1743T1706502693.pdf','applicants_certifications','PDS.pdf','U1743T1706502693.pdf',
'2024-01-29 12:31:33','2024-01-29 12:31:33',NULL,'1743',NULL,NULL),
(6018,712,'COE','applicants_certifications/
U712T1706504095.pdf','applicants_certifications','Certificate of
Employment.pdf','U712T1706504095.pdf','2024-01-29 12:54:55','2024-01-29
12:54:55',NULL,'712',NULL,NULL),
(6019,712,'ELIGIBILITY','applicants_certifications/
U712T1706504170.pdf','applicants_certifications','Certificate of
eligibility.pdf','U712T1706504170.pdf','2024-01-29 12:56:10','2024-01-29
12:56:10',NULL,'712',NULL,NULL),(6020,712,'TOR','applicants_certifications/
U712T1706505258.','applicants_certifications','Transcript of
Records','U712T1706505258.','2024-01-29 13:14:18','2024-01-29
13:14:18',NULL,'712',NULL,NULL),(6021,1749,'COE','applicants_certifications/
U1749T1706505876.jpg','applicants_certifications','Service
Record.jpg','U1749T1706505876.jpg','2024-01-29 13:24:36','2024-01-29
13:24:36',NULL,'1749',NULL,NULL),(6022,1749,'SWT','applicants_certifications/
U1749T1706505908.jpg','applicants_certifications','Seminar
Certificate.jpg','U1749T1706505908.jpg','2024-01-29 13:25:08','2024-01-29
13:25:08',NULL,'1749',NULL,NULL),
(6023,1749,'ELIGIBILITY','applicants_certifications/
U1749T1706505942.jpg','applicants_certifications','Eligibility.jpg','U1749T17065059
42.jpg','2024-01-29 13:25:42','2024-01-29 13:25:42',NULL,'1749',NULL,NULL),
(6024,1728,'TOR','applicants_certifications/
U1728T1706506609.pdf','applicants_certifications','Edralyn Joy N. Gandeza
[TOR].pdf','U1728T1706506609.pdf','2024-01-29 13:36:49','2024-01-29
13:36:49',NULL,'1728',NULL,NULL),(6025,1728,'COE','applicants_certifications/
U1728T1706506640.pdf','applicants_certifications','Edralyn Joy N. Gandeza
[COE].pdf','U1728T1706506640.pdf','2024-01-29 13:37:20','2024-01-29
13:37:20',NULL,'1728',NULL,NULL),(6026,1728,'SWT','applicants_certifications/
U1728T1706507094.pdf','applicants_certifications','Edralyn Joy N.
Gandeza(W1).pdf','U1728T1706507094.pdf','2024-01-29 13:44:54','2024-01-29
13:44:54',NULL,'1728',NULL,NULL),(6027,1728,'SWT','applicants_certifications/
U1728T1706507114.pdf','applicants_certifications','Edralyn Joy N. Gandeza
(W2).pdf','U1728T1706507114.pdf','2024-01-29 13:45:14','2024-01-29
13:45:14',NULL,'1728',NULL,NULL),(6028,1728,'SWT','applicants_certifications/
U1728T1706507134.pdf','applicants_certifications','Edralyn Joy N. Gandeza
(W3).pdf','U1728T1706507134.pdf','2024-01-29 13:45:34','2024-01-29
13:45:34',NULL,'1728',NULL,NULL),(6030,1750,'TOR','applicants_certifications/
U1750T1706507775.pdf','applicants_certifications','Transcript of
Record.pdf','U1750T1706507775.pdf','2024-01-29 13:56:15','2024-01-29
13:56:15',NULL,'1750',NULL,NULL),(6031,1750,'COE','applicants_certifications/
U1750T1706507802.pdf','applicants_certifications','Certificate of
Employment.pdf','U1750T1706507802.pdf','2024-01-29 13:56:42','2024-01-29
13:56:42',NULL,'1750',NULL,NULL),
(6032,1728,'ELIGIBILITY','applicants_certifications/
U1728T1706508179.pdf','applicants_certifications','Edralyn Joy N. Gandeza
[PRC].pdf','U1728T1706508179.pdf','2024-01-29 14:02:59','2024-01-29
14:02:59',NULL,'1728',NULL,NULL),
(6033,1728,'ELIGIBILITY','applicants_certifications/
U1728T1706508204.pdf','applicants_certifications','Edralyn Joy N. Gandeza
[CSC].pdf','U1728T1706508204.pdf','2024-01-29 14:03:24','2024-01-29
14:03:24',NULL,'1728',NULL,NULL),(6034,1750,'SWT','applicants_certifications/
U1750T1706508800.pdf','applicants_certifications','Certificates.pdf','U1750T1706508
800.pdf','2024-01-29 14:13:20','2024-01-29 14:13:20',NULL,'1750',NULL,NULL),
(6035,1750,'PDS','applicants_certifications/
U1750T1706508855.pdf','applicants_certifications','Personal Data
Sheet.pdf','U1750T1706508855.pdf','2024-01-29 14:14:15','2024-01-29
14:14:15',NULL,'1750',NULL,NULL),(6037,712,'SWT','applicants_certifications/
U712T1706511318.pdf','applicants_certifications','Training
Certificate.pdf','U712T1706511318.pdf','2024-01-29 14:55:18','2024-01-29
14:55:18',NULL,'712',NULL,NULL),(6038,1747,'TOR','applicants_certifications/
U1747T1706511697.pdf','applicants_certifications','OTR.pdf','U1747T1706511697.pdf',
'2024-01-29 15:01:37','2024-01-29 15:01:37',NULL,'1747',NULL,NULL),
(6039,1756,'PDS','applicants_certifications/
U1756T1706512125.docx','applicants_certifications','Personal Data
Sheet.docx','U1756T1706512125.docx','2024-01-29 15:08:45','2024-01-29
15:08:45',NULL,'1756',NULL,NULL),
(6041,1756,'ELIGIBILITY','applicants_certifications/
U1756T1706512268.docx','applicants_certifications','Eligibity.docx','U1756T17065122
68.docx','2024-01-29 15:11:08','2024-01-29 15:11:08',NULL,'1756',NULL,NULL),
(6042,712,'PDS','applicants_certifications/
U712T1706512275.pdf','applicants_certifications','Personal Data Sheet with Work
Experience Sheet .pdf','U712T1706512275.pdf','2024-01-29 15:11:15','2024-01-29
15:11:15',NULL,'712',NULL,NULL),(6043,1756,'TOR','applicants_certifications/
U1756T1706513043.docx','applicants_certifications','Transcript of
Records.docx','U1756T1706513043.docx','2024-01-29 15:24:03','2024-01-29
15:24:03',NULL,'1756',NULL,NULL),(6044,1728,'PDS','applicants_certifications/
U1728T1706515840.pdf','applicants_certifications','Edralyn Joy N. Gandeza [Work
Experience Sheet].pdf','U1728T1706515840.pdf','2024-01-29 16:10:40','2024-01-29
16:10:40',NULL,'1728',NULL,NULL),(6045,1768,'TOR','applicants_certifications/
U1768T1706520969.pdf','applicants_certifications','4.TRANSCRIPT OF
RECORDS .pdf','U1768T1706520969.pdf','2024-01-29 17:36:09','2024-01-29
17:36:09',NULL,'1768',NULL,NULL),
(6046,1768,'ELIGIBILITY','applicants_certifications/
U1768T1706521011.pdf','applicants_certifications','3.Cert of rating,passing and
license.pdf','U1768T1706521011.pdf','2024-01-29 17:36:51','2024-01-29
17:36:51',NULL,'1768',NULL,NULL),
(6047,1768,'ELIGIBILITY','applicants_certifications/
U1768T1706521037.pdf','applicants_certifications','Civil
Service.pdf','U1768T1706521037.pdf','2024-01-29 17:37:17','2024-01-29
17:37:17',NULL,'1768',NULL,NULL),(6048,1768,'TOR','applicants_certifications/
U1768T1706521412.pdf','applicants_certifications','Cert of Units
Earned.pdf','U1768T1706521412.pdf','2024-01-29 17:43:32','2024-01-29
17:43:32',NULL,'1768',NULL,NULL),
(6049,1769,'ELIGIBILITY','applicants_certifications/
U1769T1706523659.pdf','applicants_certifications','CERTIFICATE OF
ELIGIBILITY.pdf','U1769T1706523659.pdf','2024-01-29 18:20:59','2024-01-29
18:20:59',NULL,'1769',NULL,NULL),(6051,1740,'TOR','applicants_certifications/
U1740T1706530298.pdf','applicants_certifications','TOR (Abegail L.
Terso).pdf','U1740T1706530298.pdf','2024-01-29 20:11:38','2024-01-29
20:11:38',NULL,'1740',NULL,NULL),(6052,1740,'COE','applicants_certifications/
U1740T1706530354.pdf','applicants_certifications','Cert. of Employment (Abegail
Terso).pdf','U1740T1706530354.pdf','2024-01-29 20:12:34','2024-01-29
20:12:34',NULL,'1740',NULL,NULL),
(6053,1740,'ELIGIBILITY','applicants_certifications/
U1740T1706530610.pdf','applicants_certifications','Cert. of Eligibility & License
(Terso).pdf','U1740T1706530610.pdf','2024-01-29 20:16:50','2024-01-29
20:16:50',NULL,'1740',NULL,NULL),(6054,1740,'PDS','applicants_certifications/
U1740T1706534629.pdf','applicants_certifications','PDS (Abegail
Terso).pdf','U1740T1706534629.pdf','2024-01-29 21:23:49','2024-01-29
21:23:49',NULL,'1740',NULL,NULL),(6055,1749,'TOR','applicants_certifications/
U1749T1706534988.pdf','applicants_certifications','Transcript of
Records.pdf','U1749T1706534988.pdf','2024-01-29 21:29:48','2024-01-29
21:29:48',NULL,'1749',NULL,NULL),(6056,1749,'PDS','applicants_certifications/
U1749T1706535043.pdf','applicants_certifications','PDS.pdf','U1749T1706535043.pdf',
'2024-01-29 21:30:43','2024-01-29 21:30:43',NULL,'1749',NULL,NULL),
(6058,1758,'ELIGIBILITY','applicants_certifications/
U1758T1706536611.pdf','applicants_certifications','LICENCE.pdf','U1758T1706536611.p
df','2024-01-29 21:56:51','2024-01-29 21:56:51',NULL,'1758',NULL,NULL),
(6059,1758,'COE','applicants_certifications/
U1758T1706536764.pdf','applicants_certifications','CERTIFICATION-OF-
EMPLOYMENT.pdf','U1758T1706536764.pdf','2024-01-29 21:59:24','2024-01-29
21:59:24',NULL,'1758',NULL,NULL),(6060,1775,'TOR','applicants_certifications/
U1775T1706537791.pdf','applicants_certifications','VEGA-
TOR.pdf','U1775T1706537791.pdf','2024-01-29 22:16:31','2024-01-29
22:16:31',NULL,'1775',NULL,NULL),(6061,1740,'SWT','applicants_certifications/
U1740T1706538095.pdf','applicants_certifications','Certificates
(Abegail Terso).pdf','U1740T1706538095.pdf','2024-01-29 22:21:35','2024-01-29
22:21:35',NULL,'1740',NULL,NULL),(6062,1728,'PDS','applicants_certifications/
U1728T1706538172.pdf','applicants_certifications','Edralyn Gandeza [PDS
sheet1].pdf','U1728T1706538172.pdf','2024-01-29 22:22:52','2024-01-29
22:22:52',NULL,'1728',NULL,NULL),(6063,1728,'PDS','applicants_certifications/
U1728T1706538196.pdf','applicants_certifications','Edralyn Gandeza [PDS
sheet2].pdf','U1728T1706538196.pdf','2024-01-29 22:23:16','2024-01-29
22:23:16',NULL,'1728',NULL,NULL),(6064,1728,'PDS','applicants_certifications/
U1728T1706538213.pdf','applicants_certifications','Edralyn Gandeza [PDS
sheet3].pdf','U1728T1706538213.pdf','2024-01-29 22:23:33','2024-01-29
22:23:33',NULL,'1728',NULL,NULL),(6065,1728,'PDS','applicants_certifications/
U1728T1706538237.pdf','applicants_certifications','Edralyn Gandeza [PDS
sheet4].pdf','U1728T1706538237.pdf','2024-01-29 22:23:57','2024-01-29
22:23:57',NULL,'1728',NULL,NULL),(6066,1775,'SWT','applicants_certifications/
U1775T1706539317.pdf','applicants_certifications','Vega Maddul
trainings.pdf','U1775T1706539317.pdf','2024-01-29 22:41:57','2024-01-29
22:41:57',NULL,'1775',NULL,NULL),
(6067,1750,'ELIGIBILITY','applicants_certifications/
U1750T1706573561.pdf','applicants_certifications','D-Certificate of
Rating.pdf','U1750T1706573561.pdf','2024-01-30 08:12:41','2024-01-30
08:12:41',NULL,'1750',NULL,NULL),(6069,1782,'TOR','applicants_certifications/
U1782T1706578283.jpeg','applicants_certifications','IMG_5630.jpeg','U1782T170657828
3.jpeg','2024-01-30 09:31:23','2024-01-30 09:31:23',NULL,'1782',NULL,NULL),
(6070,1782,'TOR','applicants_certifications/
U1782T1706578298.jpeg','applicants_certifications','IMG_5631.jpeg','U1782T170657829
8.jpeg','2024-01-30 09:31:38','2024-01-30 09:31:38',NULL,'1782',NULL,NULL),
(6071,1782,'TOR','applicants_certifications/
U1782T1706578318.jpeg','applicants_certifications','IMG_5632.jpeg','U1782T170657831
8.jpeg','2024-01-30 09:31:58','2024-01-30 09:31:58',NULL,'1782',NULL,NULL),
(6073,1782,'ELIGIBILITY','applicants_certifications/
U1782T1706578374.jpeg','applicants_certifications','IMG_5634.jpeg','U1782T170657837
4.jpeg','2024-01-30 09:32:54','2024-01-30 09:32:54',NULL,'1782',NULL,NULL),
(6074,1782,'PDS','applicants_certifications/
U1782T1706578447.jpeg','applicants_certifications','IMG_5625.jpeg','U1782T170657844
7.jpeg','2024-01-30 09:34:07','2024-01-30 09:34:07',NULL,'1782',NULL,NULL),
(6075,1782,'PDS','applicants_certifications/
U1782T1706578474.jpeg','applicants_certifications','IMG_5626.jpeg','U1782T170657847
4.jpeg','2024-01-30 09:34:34','2024-01-30 09:34:34',NULL,'1782',NULL,NULL),
(6076,1782,'PDS','applicants_certifications/
U1782T1706578495.jpeg','applicants_certifications','IMG_5627.jpeg','U1782T170657849
5.jpeg','2024-01-30 09:34:55','2024-01-30 09:34:55',NULL,'1782',NULL,NULL),
(6077,1782,'PDS','applicants_certifications/
U1782T1706578515.jpeg','applicants_certifications','IMG_5628.jpeg','U1782T170657851
5.jpeg','2024-01-30 09:35:15','2024-01-30 09:35:15',NULL,'1782',NULL,NULL),
(6078,1782,'PDS','applicants_certifications/
U1782T1706578544.jpeg','applicants_certifications','IMG_5629.jpeg','U1782T170657854
4.jpeg','2024-01-30 09:35:44','2024-01-30 09:35:44',NULL,'1782',NULL,NULL),
(6079,1275,'SWT','applicants_certifications/
U1275T1706579022.jpg','applicants_certifications','2008-2011
Trainings.jpg','U1275T1706579022.jpg','2024-01-30 09:43:42','2024-01-30
09:43:42',NULL,'1275',NULL,NULL),(6081,1781,'TOR','applicants_certifications/
U1781T1706579162.pdf','applicants_certifications','TRANSCRIPT OF
RECORDS_VBN.pdf','U1781T1706579162.pdf','2024-01-30 09:46:02','2024-01-30
09:46:02',NULL,'1781',NULL,NULL),(6082,1782,'SWT','applicants_certifications/
U1782T1706579204.jpeg','applicants_certifications','IMG_5639.jpeg','U1782T170657920
4.jpeg','2024-01-30 09:46:44','2024-01-30 09:46:44',NULL,'1782',NULL,NULL),
(6083,1781,'ELIGIBILITY','applicants_certifications/
U1781T1706579206.pdf','applicants_certifications','CSC_NOTICE OF
RATING_VBN.pdf','U1781T1706579206.pdf','2024-01-30 09:46:46','2024-01-30
09:46:46',NULL,'1781',NULL,NULL),
(6084,1781,'ELIGIBILITY','applicants_certifications/
U1781T1706579225.pdf','applicants_certifications','LICENSE_VBN.pdf','U1781T17065792
25.pdf','2024-01-30 09:47:05','2024-01-30 09:47:05',NULL,'1781',NULL,NULL),
(6085,1275,'SWT','applicants_certifications/
U1275T1706579387.jpg','applicants_certifications','2012-2017
Trainings.jpg','U1275T1706579387.jpg','2024-01-30 09:49:47','2024-01-30
09:49:47',NULL,'1275',NULL,NULL),(6086,1275,'SWT','applicants_certifications/
U1275T1706579410.jpg','applicants_certifications','2018-2024
Trainings.jpg','U1275T1706579410.jpg','2024-01-30 09:50:10','2024-01-30
09:50:10',NULL,'1275',NULL,NULL),
(6087,1780,'ELIGIBILITY','applicants_certifications/
U1780T1706583296.jpg','applicants_certifications','CS
Prof.jpg','U1780T1706583296.jpg','2024-01-30 10:54:56','2024-01-30
10:54:56',NULL,'1780',NULL,NULL),
(6088,1747,'ELIGIBILITY','applicants_certifications/
U1747T1706583860.pdf','applicants_certifications','CERTIFICATE OF
ELIGIBILTY.pdf','U1747T1706583860.pdf','2024-01-30 11:04:20','2024-01-30
11:04:20',NULL,'1747',NULL,NULL),
(6091,1747,'ELIGIBILITY','applicants_certifications/
U1747T1706584174.pdf','applicants_certifications','VERIFICATION OF
RATING.pdf','U1747T1706584174.pdf','2024-01-30 11:09:34','2024-01-30
11:09:34',NULL,'1747',NULL,NULL),(6092,1780,'TOR','applicants_certifications/
U1780T1706584832.pdf','applicants_certifications','Transcript of Records_Tambis Joy
Marie I..pdf','U1780T1706584832.pdf','2024-01-30 11:20:32','2024-01-30
11:20:32',NULL,'1780',NULL,NULL),(6094,1780,'COE','applicants_certifications/
U1780T1706585110.jpg','applicants_certifications','Certificate of
Employment.jpg','U1780T1706585110.jpg','2024-01-30 11:25:10','2024-01-30
11:25:10',NULL,'1780',NULL,NULL),(6095,1789,'TOR','applicants_certifications/
U1789T1706588440.jpeg','applicants_certifications','received_2094494204222791.jpeg'
,'U1789T1706588440.jpeg','2024-01-30 12:20:40','2024-01-30
12:20:40',NULL,'1789',NULL,NULL),(6096,1789,'TOR','applicants_certifications/
U1789T1706588466.jpeg','applicants_certifications','received_886914076382184.jpeg',
'U1789T1706588466.jpeg','2024-01-30 12:21:06','2024-01-30
12:21:06',NULL,'1789',NULL,NULL),
(6097,1789,'ELIGIBILITY','applicants_certifications/
U1789T1706588498.jpeg','applicants_certifications','received_1044262542952181.jpeg'
,'U1789T1706588498.jpeg','2024-01-30 12:21:38','2024-01-30
12:21:38',NULL,'1789',NULL,NULL),
(6098,1787,'ELIGIBILITY','applicants_certifications/
U1787T1706589232.jpg','applicants_certifications','PRC
ID_Breezlyn.jpg','U1787T1706589232.jpg','2024-01-30 12:33:52','2024-01-30
12:33:52',NULL,'1787',NULL,NULL),(6099,1763,'SWT','applicants_certifications/
U1763T1706591562.jpg','applicants_certifications','Certificate-
1.jpg','U1763T1706591562.jpg','2024-01-30 13:12:42','2024-01-30
13:12:42',NULL,'1763',NULL,NULL),(6102,1763,'SWT','applicants_certifications/
U1763T1706591724.jpg','applicants_certifications','Certificate-
2.jpg','U1763T1706591724.jpg','2024-01-30 13:15:24','2024-01-30
13:15:24',NULL,'1763',NULL,NULL),(6103,1763,'SWT','applicants_certifications/
U1763T1706591776.jpg','applicants_certifications','Certificate-
3.jpg','U1763T1706591776.jpg','2024-01-30 13:16:16','2024-01-30
13:16:16',NULL,'1763',NULL,NULL),(6104,1763,'SWT','applicants_certifications/
U1763T1706591881.jpg','applicants_certifications','Certificate-
4.jpg','U1763T1706591881.jpg','2024-01-30 13:18:01','2024-01-30
13:18:01',NULL,'1763',NULL,NULL),(6107,1787,'TOR','applicants_certifications/
U1787T1706595833.pdf','applicants_certifications','TOR- Arellano
University.pdf','U1787T1706595833.pdf','2024-01-30 14:23:53','2024-01-30
14:23:53',NULL,'1787',NULL,NULL),(6111,1787,'COE','applicants_certifications/
U1787T1706599889.pdf','applicants_certifications','Certificate of Employment
(1).pdf','U1787T1706599889.pdf','2024-01-30 15:31:29','2024-01-30
15:31:29',NULL,'1787',NULL,NULL),(6112,1534,'COE','applicants_certifications/
U1534T1706600702.jpg','applicants_certifications','IMG20240130121026_01.jpg','U1534
T1706600702.jpg','2024-01-30 15:45:02','2024-01-30
15:45:02',NULL,'1534',NULL,NULL),(6114,1534,'SWT','applicants_certifications/
U1534T1706600835.jpg','applicants_certifications','IMG20240130153907_01.jpg','U1534
T1706600835.jpg','2024-01-30 15:47:15','2024-01-30
15:47:15',NULL,'1534',NULL,NULL),(6115,1534,'COE','applicants_certifications/
U1534T1706600964.jpg','applicants_certifications','IMG20240130120715_01.jpg','U1534
T1706600964.jpg','2024-01-30 15:49:24','2024-01-30
15:49:24',NULL,'1534',NULL,NULL),(6117,1763,'PDS','applicants_certifications/
U1763T1706601400.jpg','applicants_certifications','PDS-
1.jpg','U1763T1706601400.jpg','2024-01-30 15:56:40','2024-01-30
15:56:40',NULL,'1763',NULL,NULL),(6118,1783,'TOR','applicants_certifications/
U1783T1706601496.pdf','applicants_certifications','IFSU
Merge.pdf','U1783T1706601496.pdf','2024-01-30 15:58:16','2024-01-30
15:58:16',NULL,'1783',NULL,NULL),(6119,1763,'PDS','applicants_certifications/
U1763T1706601535.jpg','applicants_certifications','PDS-
2.jpg','U1763T1706601535.jpg','2024-01-30 15:58:55','2024-01-30
15:58:55',NULL,'1763',NULL,NULL),(6120,1763,'PDS','applicants_certifications/
U1763T1706601571.jpg','applicants_certifications','PDS-
3.jpg','U1763T1706601571.jpg','2024-01-30 15:59:31','2024-01-30
15:59:31',NULL,'1763',NULL,NULL),(6121,1763,'PDS','applicants_certifications/
U1763T1706601645.jpg','applicants_certifications','PDS-
4.jpg','U1763T1706601645.jpg','2024-01-30 16:00:45','2024-01-30
16:00:45',NULL,'1763',NULL,NULL),(6122,1787,'SWT','applicants_certifications/
U1787T1706601760.pdf','applicants_certifications','Training
Certificates.pdf','U1787T1706601760.pdf','2024-01-30 16:02:40','2024-01-30
16:02:40',NULL,'1787',NULL,NULL),(6123,1763,'PDS','applicants_certifications/
U1763T1706601829.jpg','applicants_certifications','WORK EXPERIENCE
SHEET.jpg','U1763T1706601829.jpg','2024-01-30
16:03:49','2024-01-30 16:03:49',NULL,'1763',NULL,NULL),
(6125,1763,'TOR','applicants_certifications/
U1763T1706602472.jpg','applicants_certifications','TOR-
1.jpg','U1763T1706602472.jpg','2024-01-30 16:14:32','2024-01-30
16:14:32',NULL,'1763',NULL,NULL),(6126,1763,'TOR','applicants_certifications/
U1763T1706602489.jpg','applicants_certifications','TOR-
2.jpg','U1763T1706602489.jpg','2024-01-30 16:14:49','2024-01-30
16:14:49',NULL,'1763',NULL,NULL),(6127,1763,'TOR','applicants_certifications/
U1763T1706602504.jpg','applicants_certifications','TOR-
3.jpg','U1763T1706602504.jpg','2024-01-30 16:15:04','2024-01-30
16:15:04',NULL,'1763',NULL,NULL),(6128,1763,'TOR','applicants_certifications/
U1763T1706602649.jpg','applicants_certifications','Diploma.jpg','U1763T1706602649.j
pg','2024-01-30 16:17:29','2024-01-30 16:17:29',NULL,'1763',NULL,NULL),
(6129,1795,'TOR','applicants_certifications/
U1795T1706607177.pdf','applicants_certifications','tor.pdf','U1795T1706607177.pdf',
'2024-01-30 17:32:57','2024-01-30 17:32:57',NULL,'1795',NULL,NULL),
(6130,1795,'ELIGIBILITY','applicants_certifications/
U1795T1706607294.pdf','applicants_certifications','certificate of
license.pdf','U1795T1706607294.pdf','2024-01-30 17:34:54','2024-01-30
17:34:54',NULL,'1795',NULL,NULL),(6132,1730,'TOR','applicants_certifications/
U1730T1706612026.pdf','applicants_certifications','TORDiploma.pdf','U1730T170661202
6.pdf','2024-01-30 18:53:46','2024-01-30 18:53:46',NULL,'1730',NULL,NULL),
(6133,1802,'TOR','applicants_certifications/
U1802T1706616555.jpg','applicants_certifications','TOR
(1).jpg','U1802T1706616555.jpg','2024-01-30 20:09:15','2024-01-30
20:09:15',NULL,'1802',NULL,NULL),(6134,1802,'TOR','applicants_certifications/
U1802T1706616569.jpg','applicants_certifications','TOR
(2).jpg','U1802T1706616569.jpg','2024-01-30 20:09:29','2024-01-30
20:09:29',NULL,'1802',NULL,NULL),
(6135,1802,'ELIGIBILITY','applicants_certifications/
U1802T1706616589.jpg','applicants_certifications','CSE PROF.
CERT..jpg','U1802T1706616589.jpg','2024-01-30 20:09:49','2024-01-30
20:09:49',NULL,'1802',NULL,NULL),(6136,1802,'PDS','applicants_certifications/
U1802T1706616618.jpg','applicants_certifications','CamScanner 01-30-2024
18.15_1.jpg','U1802T1706616618.jpg','2024-01-30 20:10:18','2024-01-30
20:10:18',NULL,'1802',NULL,NULL),(6137,1802,'PDS','applicants_certifications/
U1802T1706616629.jpg','applicants_certifications','CamScanner 01-30-2024
18.15_2.jpg','U1802T1706616629.jpg','2024-01-30 20:10:29','2024-01-30
20:10:29',NULL,'1802',NULL,NULL),(6138,1802,'PDS','applicants_certifications/
U1802T1706616642.jpg','applicants_certifications','CamScanner 01-30-2024
18.15_3.jpg','U1802T1706616642.jpg','2024-01-30 20:10:42','2024-01-30
20:10:42',NULL,'1802',NULL,NULL),(6139,1802,'PDS','applicants_certifications/
U1802T1706616653.jpg','applicants_certifications','CamScanner 01-30-2024
18.15_4.jpg','U1802T1706616653.jpg','2024-01-30 20:10:53','2024-01-30
20:10:53',NULL,'1802',NULL,NULL),(6140,1782,'COE','applicants_certifications/
U1782T1706616852.jpeg','applicants_certifications','IMG_5636.jpeg','U1782T170661685
2.jpeg','2024-01-30 20:14:12','2024-01-30 20:14:12',NULL,'1782',NULL,NULL),
(6142,1782,'COE','applicants_certifications/
U1782T1706616906.jpeg','applicants_certifications','IMG_5635.jpeg','U1782T170661690
6.jpeg','2024-01-30 20:15:06','2024-01-30 20:15:06',NULL,'1782',NULL,NULL),
(6143,1768,'PDS','applicants_certifications/
U1768T1706624426.pdf','applicants_certifications','2024 updated
PDS.pdf','U1768T1706624426.pdf','2024-01-30 22:20:26','2024-01-30
22:20:26',NULL,'1768',NULL,NULL),(6145,1768,'COE','applicants_certifications/
U1768T1706624709.pdf','applicants_certifications','updated
performance.pdf','U1768T1706624709.pdf','2024-01-30 22:25:09','2024-01-30
22:25:09',NULL,'1768',NULL,NULL),(6146,1768,'COE','applicants_certifications/
U1768T1706624740.pdf','applicants_certifications','6.1 Certificate of
Employment.pdf','U1768T1706624740.pdf','2024-01-30 22:25:40','2024-01-30
22:25:40',NULL,'1768',NULL,NULL),(6147,1785,'TOR','applicants_certifications/
U1785T1706660743.pdf','applicants_certifications','CamScanner 09-17-2023 15.29
(1).pdf','U1785T1706660743.pdf','2024-01-31 08:25:43','2024-01-31
08:25:43',NULL,'1785',NULL,NULL),
(6148,1785,'ELIGIBILITY','applicants_certifications/
U1785T1706661036.pdf','applicants_certifications','CS
ELIGIBILITY.pdf','U1785T1706661036.pdf','2024-01-31 08:30:36','2024-01-31
08:30:36',NULL,'1785',NULL,NULL),(6149,1785,'SWT','applicants_certifications/
U1785T1706662677.pdf','applicants_certifications','certificate oof trainings and
seminars_1.pdf','U1785T1706662677.pdf','2024-01-31 08:57:57','2024-01-31
08:57:57',NULL,'1785',NULL,NULL),(6150,1785,'SWT','applicants_certifications/
U1785T1706662702.pdf','applicants_certifications','certificate oof trainings and
seminars_2.pdf','U1785T1706662702.pdf','2024-01-31 08:58:22','2024-01-31
08:58:22',NULL,'1785',NULL,NULL),(6151,1785,'SWT','applicants_certifications/
U1785T1706662726.pdf','applicants_certifications','certificate oof trainings and
seminars_3.pdf','U1785T1706662726.pdf','2024-01-31 08:58:46','2024-01-31
08:58:46',NULL,'1785',NULL,NULL),(6152,1785,'SWT','applicants_certifications/
U1785T1706662743.pdf','applicants_certifications','certificate oof trainings and
seminars_9.pdf','U1785T1706662743.pdf','2024-01-31 08:59:03','2024-01-31
08:59:03',NULL,'1785',NULL,NULL),(6153,1795,'PDS','applicants_certifications/
U1795T1706667489.pdf','applicants_certifications','PDS.pdf','U1795T1706667489.pdf',
'2024-01-31 10:18:09','2024-01-31 10:18:09',NULL,'1795',NULL,NULL),
(6154,1395,'SWT','applicants_certifications/
U1395T1706669829.pdf','applicants_certifications','latest seminars
3.pdf','U1395T1706669829.pdf','2024-01-31 10:57:09','2024-01-31
10:57:09',NULL,'1395',NULL,NULL),(6155,1395,'PDS','applicants_certifications/
U1395T1706669975.pdf','applicants_certifications','Application
letters.pdf','U1395T1706669975.pdf','2024-01-31 10:59:35','2024-01-31
10:59:35',NULL,'1395',NULL,NULL),(6156,1719,'SWT','applicants_certifications/
U1719T1706671099.pdf','applicants_certifications','CERTIFICATES OF TRAINING
COMPRESSED.pdf','U1719T1706671099.pdf','2024-01-31 11:18:19','2024-01-31
11:18:19',NULL,'1719',NULL,NULL),(6157,1804,'SWT','applicants_certifications/
U1804T1706672076.jpg','applicants_certifications','work
experiences_10.jpg','U1804T1706672076.jpg','2024-01-31 11:34:36','2024-01-31
11:34:36',NULL,'1804',NULL,NULL),(6159,1804,'PDS','applicants_certifications/
U1804T1706672323.jpg','applicants_certifications','pds2_1.jpg','U1804T1706672323.jp
g','2024-01-31 11:38:43','2024-01-31 11:38:43',NULL,'1804',NULL,NULL),
(6161,1804,'ELIGIBILITY','applicants_certifications/
U1804T1706672490.jpg','applicants_certifications','eligibility_1.jpg','U1804T170667
2490.jpg','2024-01-31 11:41:30','2024-01-31 11:41:30',NULL,'1804',NULL,NULL),
(6162,1804,'ELIGIBILITY','applicants_certifications/
U1804T1706672523.jpg','applicants_certifications','eligibility_2.jpg','U1804T170667
2523.jpg','2024-01-31 11:42:03','2024-01-31 11:42:03',NULL,'1804',NULL,NULL),
(6163,1804,'PDS','applicants_certifications/
U1804T1706672569.jpg','applicants_certifications','pds2_2.jpg','U1804T1706672569.jp
g','2024-01-31 11:42:49','2024-01-31 11:42:49',NULL,'1804',NULL,NULL),
(6164,1804,'PDS','applicants_certifications/
U1804T1706672603.jpg','applicants_certifications','pds2_3.jpg','U1804T1706672603.jp
g','2024-01-31 11:43:23','2024-01-31 11:43:23',NULL,'1804',NULL,NULL),
(6165,1804,'PDS','applicants_certifications/
U1804T1706672633.jpg','applicants_certifications','pds2_4.jpg','U1804T1706672633.jp
g','2024-01-31 11:43:53','2024-01-31 11:43:53',NULL,'1804',NULL,NULL),
(6166,1804,'COE','applicants_certifications/
U1804T1706672675.jpg','applicants_certifications','work
experiences_1.jpg','U1804T1706672675.jpg','2024-01-31 11:44:35','2024-01-31
11:44:35',NULL,'1804',NULL,NULL),(6167,1804,'COE','applicants_certifications/
U1804T1706672789.jpg','applicants_certifications','work
experiences_2.jpg','U1804T1706672789.jpg','2024-01-31 11:46:29','2024-01-31
11:46:29',NULL,'1804',NULL,NULL),(6168,1804,'COE','applicants_certifications/
U1804T1706672820.jpg','applicants_certifications','work
experiences_3.jpg','U1804T1706672820.jpg','2024-01-31 11:47:00','2024-01-31
11:47:00',NULL,'1804',NULL,NULL),(6169,1804,'COE','applicants_certifications/
U1804T1706672875.jpg','applicants_certifications','work
experiences_4.jpg','U1804T1706672875.jpg','2024-01-31 11:47:55','2024-01-31
11:47:55',NULL,'1804',NULL,NULL),(6170,1804,'TOR','applicants_certifications/
U1804T1706672970.jpg','applicants_certifications','transcript of
record_1.jpg','U1804T1706672970.jpg','2024-01-31 11:49:30','2024-01-31
11:49:30',NULL,'1804',NULL,NULL),(6171,1804,'TOR','applicants_certifications/
U1804T1706673003.jpg','applicants_certifications','transcript of
record_2.jpg','U1804T1706673003.jpg','2024-01-31 11:50:03','2024-01-31
11:50:03',NULL,'1804',NULL,NULL),(6172,1804,'COE','applicants_certifications/
U1804T1706673035.jpg','applicants_certifications','work
experiences_5.jpg','U1804T1706673035.jpg','2024-01-31 11:50:35','2024-01-31
11:50:35',NULL,'1804',NULL,NULL),(6173,1804,'COE','applicants_certifications/
U1804T1706673068.jpg','applicants_certifications','work
experiences_6.jpg','U1804T1706673068.jpg','2024-01-31 11:51:08','2024-01-31
11:51:08',NULL,'1804',NULL,NULL),(6174,1804,'COE','applicants_certifications/
U1804T1706673099.jpg','applicants_certifications','work
experiences_7.jpg','U1804T1706673099.jpg','2024-01-31 11:51:39','2024-01-31
11:51:39',NULL,'1804',NULL,NULL),(6175,1815,'TOR','applicants_certifications/
U1815T1706674057.pdf','applicants_certifications','D1.
TOR1_Franz.pdf','U1815T1706674057.pdf','2024-01-31 12:07:37','2024-01-31
12:07:37',NULL,'1815',NULL,NULL),(6176,1815,'PDS','applicants_certifications/
U1815T1706674432.xlsx','applicants_certifications','CS Form No. 212 Personal Data
Sheet revised.xlsx','U1815T1706674432.xlsx','2024-01-31 12:13:52','2024-01-31
12:13:52',NULL,'1815',NULL,NULL),(6177,1763,'SWT','applicants_certifications/
U1763T1706676776.jpg','applicants_certifications','Certificate-
5.jpg','U1763T1706676776.jpg','2024-01-31 12:52:56','2024-01-31
12:52:56',NULL,'1763',NULL,NULL),
(6179,1763,'ELIGIBILITY','applicants_certifications/
U1763T1706676847.jpg','applicants_certifications','Civil Service
Certificate.jpg','U1763T1706676847.jpg','2024-01-31 12:54:07','2024-01-31
12:54:07',NULL,'1763',NULL,NULL),
(6181,1815,'ELIGIBILITY','applicants_certifications/
U1815T1706677086.pdf','applicants_certifications','C.
Eligibility.pdf','U1815T1706677086.pdf','2024-01-31 12:58:06','2024-01-31
12:58:06',NULL,'1815',NULL,NULL),(6182,1785,'SWT','applicants_certifications/
U1785T1706677445.pdf','applicants_certifications','certificate oof trainings and
seminars_1.pdf','U1785T1706677445.pdf','2024-01-31 13:04:05','2024-01-31
13:04:05',NULL,'1785',NULL,NULL),(6183,1785,'SWT','applicants_certifications/
U1785T1706677469.pdf','applicants_certifications','certificate oof trainings and
seminars_2.pdf','U1785T1706677469.pdf','2024-01-31 13:04:29','2024-01-31
13:04:29',NULL,'1785',NULL,NULL),(6184,1785,'SWT','applicants_certifications/
U1785T1706677487.pdf','applicants_certifications','certificate oof trainings and
seminars_3.pdf','U1785T1706677487.pdf','2024-01-31 13:04:47','2024-01-31
13:04:47',NULL,'1785',NULL,NULL),
(6185,1808,'ELIGIBILITY','applicants_certifications/
U1808T1706683377.jpg','applicants_certifications','CSC
Certificate.jpg','U1808T1706683377.jpg','2024-01-31 14:42:57','2024-01-31
14:42:57',NULL,'1808',NULL,NULL),
(6186,1808,'ELIGIBILITY','applicants_certifications/
U1808T1706683742.jpg','applicants_certifications','CPA_certificate_A4.jpg','U1808T1
706683742.jpg','2024-01-31 14:49:02','2024-01-31 14:49:02',NULL,'1808',NULL,NULL),
(6187,1808,'TOR','applicants_certifications/
U1808T1706684458.jpg','applicants_certifications','TOR_PAGE1_A4.jpg','U1808T1706684
458.jpg','2024-01-31 15:00:58','2024-01-31 15:00:58',NULL,'1808',NULL,NULL),
(6188,1808,'TOR','applicants_certifications/
U1808T1706684474.jpg','applicants_certifications','TOR_PAGE2_A4.jpg','U1808T1706684
474.jpg','2024-01-31 15:01:14','2024-01-31 15:01:14',NULL,'1808',NULL,NULL),
(6189,1808,'TOR','applicants_certifications/
U1808T1706684487.jpg','applicants_certifications','TOR_PAGE3_A4.jpg','U1808T1706684
487.jpg','2024-01-31 15:01:27','2024-01-31 15:01:27',NULL,'1808',NULL,NULL),
(6190,1808,'PDS','applicants_certifications/
U1808T1706684616.pdf','applicants_certifications','latest_pds_scan.pdf','U1808T1706
684616.pdf','2024-01-31 15:03:36','2024-01-31 15:03:36',NULL,'1808',NULL,NULL),
(6191,1808,'COE','applicants_certifications/
U1808T1706684992.png','applicants_certifications','Not_Applicable.png','U1808T17066
84992.png','2024-01-31 15:09:52','2024-01-31 15:09:52',NULL,'1808',NULL,NULL),
(6192,1808,'SWT','applicants_certifications/
U1808T1706685008.png','applicants_certifications','Not_Applicable.png','U1808T17066
85008.png','2024-01-31 15:10:08','2024-01-31 15:10:08',NULL,'1808',NULL,NULL),
(6193,1719,'SWT','applicants_certifications/
U1719T1706685181.pdf','applicants_certifications','CERTIFICATE OF TRAINING AND
SEMINAR 2.pdf','U1719T1706685181.pdf','2024-01-31 15:13:01','2024-01-31
15:13:01',NULL,'1719',NULL,NULL),(6194,1719,'SWT','applicants_certifications/
U1719T1706685210.pdf','applicants_certifications','CERTIFICATE OF TRAINING AND
SEMINAR 3.pdf','U1719T1706685210.pdf','2024-01-31 15:13:30','2024-01-31
15:13:30',NULL,'1719',NULL,NULL),(6195,1811,'PDS','applicants_certifications/
U1811T1706687539.jpg','applicants_certifications','PDS_NOEMI BINUHI
(1).jpg','U1811T1706687539.jpg','2024-01-31 15:52:19','2024-01-31
15:52:19',NULL,'1811',NULL,NULL),(6196,1811,'PDS','applicants_certifications/
U1811T1706687555.jpg','applicants_certifications','PDS_NOEMI BINUHI
(2).jpg','U1811T1706687555.jpg','2024-01-31 15:52:35','2024-01-31
15:52:35',NULL,'1811',NULL,NULL),(6197,1811,'PDS','applicants_certifications/
U1811T1706687576.jpg','applicants_certifications','PDS_NOEMI BINUHI
(3).jpg','U1811T1706687576.jpg','2024-01-31 15:52:56','2024-01-31
15:52:56',NULL,'1811',NULL,NULL),(6198,1811,'PDS','applicants_certifications/
U1811T1706687597.jpg','applicants_certifications','PDS_NOEMI BINUHI
(4).jpg','U1811T1706687597.jpg','2024-01-31 15:53:17','2024-01-31
15:53:17',NULL,'1811',NULL,NULL),
(6199,1811,'ELIGIBILITY','applicants_certifications/
U1811T1706688222.jpg','applicants_certifications','CSProf.jpg','U1811T1706688222.jp
g','2024-01-31 16:03:42','2024-01-31 16:03:42',NULL,'1811',NULL,NULL),
(6200,1821,'PDS','applicants_certifications/
U1821T1706690072.jpeg','applicants_certifications','1.jpeg','U1821T1706690072.jpeg'
,'2024-01-31 16:34:32','2024-01-31 16:34:32',NULL,'1821',NULL,NULL),
(6201,1821,'PDS','applicants_certifications/
U1821T1706690090.jpeg','applicants_certifications','2.jpeg','U1821T1706690090.jpeg'
,'2024-01-31 16:34:50','2024-01-31 16:34:50',NULL,'1821',NULL,NULL),
(6202,1821,'PDS','applicants_certifications/
U1821T1706690103.jpeg','applicants_certifications','3.jpeg','U1821T1706690103.jpeg'
,'2024-01-31 16:35:03','2024-01-31 16:35:03',NULL,'1821',NULL,NULL),
(6203,1821,'PDS','applicants_certifications/
U1821T1706690117.jpeg','applicants_certifications','4.jpeg','U1821T1706690117.jpeg'
,'2024-01-31 16:35:17','2024-01-31 16:35:17',NULL,'1821',NULL,NULL),
(6204,1821,'SWT','applicants_certifications/
U1821T1706690265.jpeg','applicants_certifications','TRAINING
1.jpeg','U1821T1706690265.jpeg','2024-01-31 16:37:45','2024-01-31
16:37:45',NULL,'1821',NULL,NULL),(6206,1824,'COE','applicants_certifications/
U1824T1706711810.pdf','applicants_certifications','Certificate of
Employment.pdf','U1824T1706711810.pdf','2024-01-31 22:36:50','2024-01-31
22:36:50',NULL,'1824',NULL,NULL),(6207,1824,'TOR','applicants_certifications/
U1824T1706712327.pdf','applicants_certifications','Official Transcript of
Records.pdf','U1824T1706712327.pdf','2024-01-31 22:45:27','2024-01-31
22:45:27',NULL,'1824',NULL,NULL),
(6208,1824,'ELIGIBILITY','applicants_certifications/
U1824T1706712950.pdf','applicants_certifications','License.pdf','U1824T1706712950.p
df','2024-01-31 22:55:50','2024-01-31 22:55:50',NULL,'1824',NULL,NULL),
(6209,1824,'SWT','applicants_certifications/
U1824T1706713842.pdf','applicants_certifications','Seminar Workshop & Training
Certificates.pdf','U1824T1706713842.pdf','2024-01-31 23:10:42','2024-01-31
23:10:42',NULL,'1824',NULL,NULL),(6210,1824,'PDS','applicants_certifications/
U1824T1706715314.pdf','applicants_certifications','Personal Data
Sheet.pdf','U1824T1706715314.pdf','2024-01-31 23:35:14','2024-01-31
23:35:14',NULL,'1824',NULL,NULL),(6211,1824,'PDS','applicants_certifications/
U1824T1706715317.pdf','applicants_certifications','Personal Data
Sheet.pdf','U1824T1706715317.pdf','2024-01-31 23:35:17','2024-01-31
23:35:17',NULL,'1824',NULL,NULL),(6228,1821,'SWT','applicants_certifications/
U1821T1706746642.jpeg','applicants_certifications','CERT.jpeg','U1821T1706746642.jp
eg','2024-02-01 08:17:22','2024-02-01 08:17:22',NULL,'1821',NULL,NULL),
(6230,1821,'TOR','applicants_certifications/
U1821T1706746825.jpeg','applicants_certifications','TOR.jpeg','U1821T1706746825.jpe
g','2024-02-01 08:20:25','2024-02-01 08:20:25',NULL,'1821',NULL,NULL),
(6231,1821,'TOR','applicants_certifications/
U1821T1706746839.jpeg','applicants_certifications','TOR
2.jpeg','U1821T1706746839.jpeg','2024-02-01 08:20:39','2024-02-01
08:20:39',NULL,'1821',NULL,NULL),(6232,1821,'COE','applicants_certifications/
U1821T1706747115.jpeg','applicants_certifications','COE
1.jpeg','U1821T1706747115.jpeg','2024-02-01 08:25:15','2024-02-01
08:25:15',NULL,'1821',NULL,NULL),(6233,1821,'COE','applicants_certifications/
U1821T1706747130.jpeg','applicants_certifications','COE
2.jpeg','U1821T1706747130.jpeg','2024-02-01 08:25:30','2024-02-01
08:25:30',NULL,'1821',NULL,NULL),(6234,1821,'COE','applicants_certifications/
U1821T1706747140.jpeg','applicants_certifications','COE
3.jpeg','U1821T1706747140.jpeg','2024-02-01 08:25:40','2024-02-01
08:25:40',NULL,'1821',NULL,NULL),(6235,1821,'SWT','applicants_certifications/
U1821T1706747158.jpeg','applicants_certifications','COE
4.jpeg','U1821T1706747158.jpeg','2024-02-01 08:25:58','2024-02-01
08:25:58',NULL,'1821',NULL,NULL),
(6236,1821,'ELIGIBILITY','applicants_certifications/
U1821T1706747174.jpeg','applicants_certifications','CSE.jpeg','U1821T1706747174.jpe
g','2024-02-01 08:26:14','2024-02-01 08:26:14',NULL,'1821',NULL,NULL),
(6237,1781,'COE','applicants_certifications/
U1781T1706754834.pdf','applicants_certifications','COE_VBN.pdf','U1781T1706754834.p
df','2024-02-01 10:33:54','2024-02-01 10:33:54',NULL,'1781',NULL,NULL),
(6239,1780,'SWT','applicants_certifications/
U1780T1706756269.pdf','applicants_certifications','Training_Tambis.pdf','U1780T1706
756269.pdf','2024-02-01 10:57:49','2024-02-01 10:57:49',NULL,'1780',NULL,NULL),
(6240,1780,'PDS','applicants_certifications/
U1780T1706756330.pdf','applicants_certifications','PDS_Tambis.pdf','U1780T170675633
0.pdf','2024-02-01 10:58:50','2024-02-01 10:58:50',NULL,'1780',NULL,NULL),
(6241,1806,'TOR','applicants_certifications/
U1806T1706758607.jpg','applicants_certifications','transcript of
record_1.jpg','U1806T1706758607.jpg','2024-02-01 11:36:47','2024-02-01
11:36:47',NULL,'1806',NULL,NULL),(6242,1806,'TOR','applicants_certifications/
U1806T1706758659.jpg','applicants_certifications','transcript of
record_2.jpg','U1806T1706758659.jpg','2024-02-01 11:37:39','2024-02-01
11:37:39',NULL,'1806',NULL,NULL),
(6246,1806,'ELIGIBILITY','applicants_certifications/
U1806T1706759056.jpg','applicants_certifications','eligibility_1.jpg','U1806T170675
9056.jpg','2024-02-01 11:44:16','2024-02-01 11:44:16',NULL,'1806',NULL,NULL),
(6247,1790,'TOR','applicants_certifications/
U1790T1706759074.pdf','applicants_certifications','PDF_1706758016670.pdf','U1790T17
06759074.pdf','2024-02-01 11:44:34','2024-02-01 11:44:34',NULL,'1790',NULL,NULL),
(6248,1110,'TOR','applicants_certifications/
U1110T1706759201.jpg','applicants_certifications','Diploma
of Business.jpg','U1110T1706759201.jpg','2024-02-01 11:46:41','2024-02-01
11:46:41',NULL,'1110',NULL,NULL),(6249,1806,'COE','applicants_certifications/
U1806T1706759132.jpg','applicants_certifications','work
experiences_1.jpg','U1806T1706759132.jpg','2024-02-01 11:45:32','2024-02-01
11:45:32',NULL,'1806',NULL,NULL),(6250,1806,'COE','applicants_certifications/
U1806T1706759157.jpg','applicants_certifications','work
experiences_2.jpg','U1806T1706759157.jpg','2024-02-01 11:45:57','2024-02-01
11:45:57',NULL,'1806',NULL,NULL),(6251,1806,'COE','applicants_certifications/
U1806T1706759182.jpg','applicants_certifications','work
experiences_3.jpg','U1806T1706759182.jpg','2024-02-01 11:46:22','2024-02-01
11:46:22',NULL,'1806',NULL,NULL),(6252,1790,'COE','applicants_certifications/
U1790T1706759189.pdf','applicants_certifications','PDF_1706759143076.pdf','U1790T17
06759189.pdf','2024-02-01 11:46:29','2024-02-01 11:46:29',NULL,'1790',NULL,NULL),
(6253,1806,'COE','applicants_certifications/
U1806T1706759203.jpg','applicants_certifications','work
experiences_4.jpg','U1806T1706759203.jpg','2024-02-01 11:46:43','2024-02-01
11:46:43',NULL,'1806',NULL,NULL),(6254,1806,'COE','applicants_certifications/
U1806T1706759227.jpg','applicants_certifications','work
experiences_5.jpg','U1806T1706759227.jpg','2024-02-01 11:47:07','2024-02-01
11:47:07',NULL,'1806',NULL,NULL),(6255,1110,'TOR','applicants_certifications/
U1110T1706759261.jpg','applicants_certifications','Diploma of Business
2.jpg','U1110T1706759261.jpg','2024-02-01 11:47:41','2024-02-01
11:47:41',NULL,'1110',NULL,NULL),(6256,1806,'SWT','applicants_certifications/
U1806T1706759263.jpg','applicants_certifications','work
experiences_8.jpg','U1806T1706759263.jpg','2024-02-01 11:47:43','2024-02-01
11:47:43',NULL,'1806',NULL,NULL),(6257,1806,'COE','applicants_certifications/
U1806T1706759301.jpg','applicants_certifications','work
experiences_6.jpg','U1806T1706759301.jpg','2024-02-01 11:48:21','2024-02-01
11:48:21',NULL,'1806',NULL,NULL),(6258,1806,'COE','applicants_certifications/
U1806T1706759332.jpg','applicants_certifications','work
experiences_7.jpg','U1806T1706759332.jpg','2024-02-01 11:48:52','2024-02-01
11:48:52',NULL,'1806',NULL,NULL),(6262,1790,'SWT','applicants_certifications/
U1790T1706759496.pdf','applicants_certifications','PDF_1706759288768.pdf','U1790T17
06759496.pdf','2024-02-01 11:51:36','2024-02-01 11:51:36',NULL,'1790',NULL,NULL),
(6263,1806,'SWT','applicants_certifications/
U1806T1706759591.jpg','applicants_certifications','work
experiences_9.jpg','U1806T1706759591.jpg','2024-02-01 11:53:11','2024-02-01
11:53:11',NULL,'1806',NULL,NULL),
(6264,1790,'ELIGIBILITY','applicants_certifications/
U1790T1706759682.pdf','applicants_certifications','PDF_1706759637469.pdf','U1790T17
06759682.pdf','2024-02-01 11:54:42','2024-02-01 11:54:42',NULL,'1790',NULL,NULL),
(6265,1806,'ELIGIBILITY','applicants_certifications/
U1806T1706759695.jpg','applicants_certifications','eligibility_2.jpg','U1806T170675
9695.jpg','2024-02-01 11:54:55','2024-02-01 11:54:55',NULL,'1806',NULL,NULL),
(6266,1806,'PDS','applicants_certifications/
U1806T1706759725.jpg','applicants_certifications','pds2_1.jpg','U1806T1706759725.jp
g','2024-02-01 11:55:25','2024-02-01 11:55:25',NULL,'1806',NULL,NULL),
(6267,1806,'PDS','applicants_certifications/
U1806T1706759752.jpg','applicants_certifications','pds2_2.jpg','U1806T1706759752.jp
g','2024-02-01 11:55:52','2024-02-01 11:55:52',NULL,'1806',NULL,NULL),
(6268,1806,'PDS','applicants_certifications/
U1806T1706759776.jpg','applicants_certifications','pds2_3.jpg','U1806T1706759776.jp
g','2024-02-01 11:56:16','2024-02-01 11:56:16',NULL,'1806',NULL,NULL),
(6269,1790,'PDS','applicants_certifications/
U1790T1706759796.pdf','applicants_certifications','PDF_1706759750286.pdf','U1790T17
06759796.pdf','2024-02-01 11:56:36','2024-02-01 11:56:36',NULL,'1790',NULL,NULL),
(6270,1806,'PDS','applicants_certifications/
U1806T1706759803.jpg','applicants_certifications','pds2_4.jpg','U1806T1706759803.jp
g','2024-02-01 11:56:43','2024-02-01 11:56:43',NULL,'1806',NULL,NULL),
(6271,1763,'COE','applicants_certifications/
U1763T1706765609.jpg','applicants_certifications','Certificate of Employment-
2.jpg','U1763T1706765609.jpg','2024-02-01 13:33:29','2024-02-01
13:33:29',NULL,'1763',NULL,NULL),(6274,1402,'TOR','applicants_certifications/
U1402T1706765888.jpg','applicants_certifications','TOR1.jpg','U1402T1706765888.jpg'
,'2024-02-01 13:38:08','2024-02-01 13:38:08',NULL,'1402',NULL,NULL),
(6275,1402,'TOR','applicants_certifications/
U1402T1706765945.jpg','applicants_certifications','TOR2.jpg','U1402T1706765945.jpg'
,'2024-02-01 13:39:05','2024-02-01 13:39:05',NULL,'1402',NULL,NULL),
(6276,1402,'COE','applicants_certifications/
U1402T1706766002.jpg','applicants_certifications','coe.jpg','U1402T1706766002.jpg',
'2024-02-01 13:40:02','2024-02-01 13:40:02',NULL,'1402',NULL,NULL),
(6277,1402,'ELIGIBILITY','applicants_certifications/
U1402T1706766032.jpg','applicants_certifications','CS
subprof.jpg','U1402T1706766032.jpg','2024-02-01 13:40:32','2024-02-01
13:40:32',NULL,'1402',NULL,NULL),
(6279,1402,'ELIGIBILITY','applicants_certifications/
U1402T1706766065.jpg','applicants_certifications','CSC
PROF.jpg','U1402T1706766065.jpg','2024-02-01 13:41:05','2024-02-01
13:41:05',NULL,'1402',NULL,NULL),(6281,1402,'SWT','applicants_certifications/
U1402T1706766196.jpg','applicants_certifications','cert
1.jpg','U1402T1706766196.jpg','2024-02-01 13:43:16','2024-02-01
13:43:16',NULL,'1402',NULL,NULL),(6282,1402,'SWT','applicants_certifications/
U1402T1706766209.jpg','applicants_certifications','cert
2.jpg','U1402T1706766209.jpg','2024-02-01 13:43:29','2024-02-01
13:43:29',NULL,'1402',NULL,NULL),(6283,1402,'SWT','applicants_certifications/
U1402T1706766221.jpg','applicants_certifications','cert
3.jpg','U1402T1706766221.jpg','2024-02-01 13:43:41','2024-02-01
13:43:41',NULL,'1402',NULL,NULL),(6284,1402,'SWT','applicants_certifications/
U1402T1706766239.jpg','applicants_certifications','cert
4.jpg','U1402T1706766239.jpg','2024-02-01 13:43:59','2024-02-01
13:43:59',NULL,'1402',NULL,NULL),(6285,1402,'SWT','applicants_certifications/
U1402T1706766265.jpg','applicants_certifications','cert5.jpg','U1402T1706766265.jpg
','2024-02-01 13:44:25','2024-02-01 13:44:25',NULL,'1402',NULL,NULL),
(6286,1402,'SWT','applicants_certifications/
U1402T1706766284.jpg','applicants_certifications','cert6.jpg','U1402T1706766284.jpg
','2024-02-01 13:44:44','2024-02-01 13:44:44',NULL,'1402',NULL,NULL),
(6287,1402,'SWT','applicants_certifications/
U1402T1706766423.jpg','applicants_certifications','cert7.jpg','U1402T1706766423.jpg
','2024-02-01 13:47:03','2024-02-01 13:47:03',NULL,'1402',NULL,NULL),
(6288,1402,'SWT','applicants_certifications/
U1402T1706766470.jpg','applicants_certifications','cert8.jpg','U1402T1706766470.jpg
','2024-02-01 13:47:50','2024-02-01 13:47:50',NULL,'1402',NULL,NULL),
(6289,1402,'SWT','applicants_certifications/
U1402T1706766514.jpg','applicants_certifications','cert9.jpg','U1402T1706766514.jpg
','2024-02-01 13:48:34','2024-02-01 13:48:34',NULL,'1402',NULL,NULL),
(6290,1402,'SWT','applicants_certifications/
U1402T1706766528.jpg','applicants_certifications','cert10.jpg','U1402T1706766528.jp
g','2024-02-01 13:48:48','2024-02-01 13:48:48',NULL,'1402',NULL,NULL),
(6291,1402,'SWT','applicants_certifications/
U1402T1706766540.jpg','applicants_certifications','cert11.jpg','U1402T1706766540.jp
g','2024-02-01 13:49:00','2024-02-01 13:49:00',NULL,'1402',NULL,NULL),
(6292,1402,'PDS','applicants_certifications/
U1402T1706768239.jpg','applicants_certifications','pds_1.jpg','U1402T1706768239.jpg
','2024-02-01 14:17:19','2024-02-01 14:17:19',NULL,'1402',NULL,NULL),
(6293,1402,'PDS','applicants_certifications/
U1402T1706768257.jpg','applicants_certifications','pds_2.jpg','U1402T1706768257.jpg
','2024-02-01 14:17:37','2024-02-01 14:17:37',NULL,'1402',NULL,NULL),
(6294,1402,'PDS','applicants_certifications/
U1402T1706768272.jpg','applicants_certifications','pds_3.jpg','U1402T1706768272.jpg
','2024-02-01 14:17:52','2024-02-01 14:17:52',NULL,'1402',NULL,NULL),
(6295,1402,'PDS','applicants_certifications/
U1402T1706768304.jpg','applicants_certifications','pds_4.jpg','U1402T1706768304.jpg
','2024-02-01 14:18:24','2024-02-01 14:18:24',NULL,'1402',NULL,NULL),
(6296,1402,'PDS','applicants_certifications/
U1402T1706768318.jpg','applicants_certifications','attachment
1.jpg','U1402T1706768318.jpg','2024-02-01 14:18:38','2024-02-01
14:18:38',NULL,'1402',NULL,NULL),(6297,1402,'PDS','applicants_certifications/
U1402T1706768334.jpg','applicants_certifications','attachment
2.jpg','U1402T1706768334.jpg','2024-02-01 14:18:54','2024-02-01
14:18:54',NULL,'1402',NULL,NULL),(6298,1402,'PDS','applicants_certifications/
U1402T1706768382.jpg','applicants_certifications','attachment
3.jpg','U1402T1706768382.jpg','2024-02-01 14:19:42','2024-02-01
14:19:42',NULL,'1402',NULL,NULL),(6300,1805,'TOR','applicants_certifications/
U1805T1706768731.pdf','applicants_certifications','TOR.pdf','U1805T1706768731.pdf',
'2024-02-01 14:25:31','2024-02-01 14:25:31',NULL,'1805',NULL,NULL),
(6301,1805,'COE','applicants_certifications/
U1805T1706768943.pdf','applicants_certifications','COE.pdf','U1805T1706768943.pdf',
'2024-02-01 14:29:03','2024-02-01 14:29:03',NULL,'1805',NULL,NULL),
(6302,1805,'COE','applicants_certifications/
U1805T1706768961.pdf','applicants_certifications','Certification- Tayaban,
Julie.pdf','U1805T1706768961.pdf','2024-02-01 14:29:21','2024-02-01
14:29:21',NULL,'1805',NULL,NULL),(6303,1805,'SWT','applicants_certifications/
U1805T1706769626.pdf','applicants_certifications','Training.pdf','U1805T1706769626.
pdf','2024-02-01 14:40:26','2024-02-01 14:40:26',NULL,'1805',NULL,NULL),
(6309,1784,'PDS','applicants_certifications/
U1784T1706772543.xlsx','applicants_certifications','CS FORM No. 212
PDS.xlsx','U1784T1706772543.xlsx','2024-02-01 15:29:03','2024-02-01
15:29:03',NULL,'1784',NULL,NULL),(6310,1784,'PDS','applicants_certifications/
U1784T1706772558.docx','applicants_certifications','CS
Form No. 212 Attachment - Work Experience Sheet Vilga
Leyan.docx','U1784T1706772558.docx','2024-02-01 15:29:18','2024-02-01
15:29:18',NULL,'1784',NULL,NULL),
(6312,1784,'ELIGIBILITY','applicants_certifications/
U1784T1706773784.docx','applicants_certifications','CERTIFICATE OF ELIGIBILITY and
LICENSE.docx','U1784T1706773784.docx','2024-02-01 15:49:44','2024-02-01
15:49:44',NULL,'1784',NULL,NULL),(6313,1807,'TOR','applicants_certifications/
U1807T1706774106.jpeg','applicants_certifications','received_7843408992340476.jpeg'
,'U1807T1706774106.jpeg','2024-02-01 15:55:06','2024-02-01
15:55:06',NULL,'1807',NULL,NULL),(6314,1807,'TOR','applicants_certifications/
U1807T1706774140.jpeg','applicants_certifications','received_691660863047343.jpeg',
'U1807T1706774140.jpeg','2024-02-01 15:55:40','2024-02-01
15:55:40',NULL,'1807',NULL,NULL),
(6315,1807,'ELIGIBILITY','applicants_certifications/
U1807T1706774184.jpeg','applicants_certifications','received_911196290653939.jpeg',
'U1807T1706774184.jpeg','2024-02-01 15:56:24','2024-02-01
15:56:24',NULL,'1807',NULL,NULL),(6317,1763,'COE','applicants_certifications/
U1763T1706774707.jpg','applicants_certifications','Certificate of Employment -
1.jpg','U1763T1706774707.jpg','2024-02-01 16:05:07','2024-02-01
16:05:07',NULL,'1763',NULL,NULL),
(6318,1807,'ELIGIBILITY','applicants_certifications/
U1807T1706775300.JPG','applicants_certifications','IMG_20240201_161318.JPG','U1807T
1706775300.JPG','2024-02-01 16:15:00','2024-02-01 16:15:00',NULL,'1807',NULL,NULL),
(6319,1807,'PDS','applicants_certifications/
U1807T1706775342.jpeg','applicants_certifications','received_671923008271120.jpeg',
'U1807T1706775342.jpeg','2024-02-01 16:15:42','2024-02-01
16:15:42',NULL,'1807',NULL,NULL),(6320,1807,'PDS','applicants_certifications/
U1807T1706775377.jpeg','applicants_certifications','received_402003842191749.jpeg',
'U1807T1706775377.jpeg','2024-02-01 16:16:17','2024-02-01
16:16:17',NULL,'1807',NULL,NULL),(6321,1807,'PDS','applicants_certifications/
U1807T1706775398.jpeg','applicants_certifications','received_304659092582419.jpeg',
'U1807T1706775398.jpeg','2024-02-01 16:16:38','2024-02-01
16:16:38',NULL,'1807',NULL,NULL),(6322,1807,'PDS','applicants_certifications/
U1807T1706775428.jpeg','applicants_certifications','received_265354983121280.jpeg',
'U1807T1706775428.jpeg','2024-02-01 16:17:08','2024-02-01
16:17:08',NULL,'1807',NULL,NULL),(6323,1784,'TOR','applicants_certifications/
U1784T1706775893.jpg','applicants_certifications','Screenshot_2024-02-01-16-00-02-
28_7d3732e0db753b41ce33f38683748ad7.jpg','U1784T1706775893.jpg','2024-02-01
16:24:53','2024-02-01 16:24:53',NULL,'1784',NULL,NULL),
(6324,1784,'TOR','applicants_certifications/
U1784T1706776069.doc','applicants_certifications','Transcript of
Records.doc','U1784T1706776069.doc','2024-02-01 16:27:49','2024-02-01
16:27:49',NULL,'1784',NULL,NULL),(6325,1781,'SWT','applicants_certifications/
U1781T1706776179.pdf','applicants_certifications','E-CERTIFICATE - VIRGIE B.
NAGTALON.pdf','U1781T1706776179.pdf','2024-02-01 16:29:39','2024-02-01
16:29:39',NULL,'1781',NULL,NULL),(6326,1781,'SWT','applicants_certifications/
U1781T1706776205.pdf','applicants_certifications','Virgie Nagtalon_Dec. 9_Basic
Bookkeeping.pdf','U1781T1706776205.pdf','2024-02-01 16:30:05','2024-02-01
16:30:05',NULL,'1781',NULL,NULL),(6327,1781,'SWT','applicants_certifications/
U1781T1706776226.pdf','applicants_certifications','Virgie Nagtalon_Dec. 9_Advanced
Bookkeeping.pdf','U1781T1706776226.pdf','2024-02-01 16:30:26','2024-02-01
16:30:26',NULL,'1781',NULL,NULL),(6328,1784,'TOR','applicants_certifications/
U1784T1706777886.pdf','applicants_certifications','TRANSCRIPT OF
RECORDS.pdf','U1784T1706777886.pdf','2024-02-01 16:58:06','2024-02-01
16:58:06',NULL,'1784',NULL,NULL),(6329,1759,'SWT','applicants_certifications/
U1759T1706778491.pdf','applicants_certifications','BON
CERTIFICATES.pdf','U1759T1706778491.pdf','2024-02-01 17:08:11','2024-02-01
17:08:11',NULL,'1759',NULL,NULL),(6330,1759,'PDS','applicants_certifications/
U1759T1706778547.pdf','applicants_certifications','BON PDS
(pdf).pdf','U1759T1706778547.pdf','2024-02-01 17:09:07','2024-02-01
17:09:07',NULL,'1759',NULL,NULL),
(6331,1759,'ELIGIBILITY','applicants_certifications/
U1759T1706778578.pdf','applicants_certifications','Rating
pdf.pdf','U1759T1706778578.pdf','2024-02-01 17:09:38','2024-02-01
17:09:38',NULL,'1759',NULL,NULL),(6332,1784,'SWT','applicants_certifications/
U1784T1706778579.pdf','applicants_certifications','CERTIFICATE OF
TRAININGS.pdf','U1784T1706778579.pdf','2024-02-01 17:09:39','2024-02-01
17:09:39',NULL,'1784',NULL,NULL),(6333,1759,'TOR','applicants_certifications/
U1759T1706778668.pdf','applicants_certifications','BON
OTR_compressed.pdf','U1759T1706778668.pdf','2024-02-01 17:11:08','2024-02-01
17:11:08',NULL,'1759',NULL,NULL),
(6334,1831,'ELIGIBILITY','applicants_certifications/
U1831T1706787412.pdf','applicants_certifications','CS PROF
CERTIFICATE.pdf','U1831T1706787412.pdf','2024-02-01 19:36:52','2024-02-01
19:36:52',NULL,'1831',NULL,NULL),(6335,1831,'TOR','applicants_certifications/
U1831T1706787772.pdf','applicants_certifications','Transcript of
Records.pdf','U1831T1706787772.pdf','2024-02-01 19:42:52','2024-02-01
19:42:52',NULL,'1831',NULL,NULL),(6337,1831,'SWT','applicants_certifications/
U1831T1706787805.pdf','applicants_certifications','Certificates.pdf','U1831T1706787
805.pdf','2024-02-01 19:43:25','2024-02-01 19:43:25',NULL,'1831',NULL,NULL),
(6338,1775,'PDS','applicants_certifications/
U1775T1706790516.pdf','applicants_certifications','VEGA-PDS-Personal Data
Sheet_with scan sign attorney.pdf','U1775T1706790516.pdf','2024-02-01
20:28:36','2024-02-01 20:28:36',NULL,'1775',NULL,NULL),
(6340,1825,'TOR','applicants_certifications/
U1825T1706790559.pdf','applicants_certifications','Transcript of
Records.pdf','U1825T1706790559.pdf','2024-02-01 20:29:19','2024-02-01
20:29:19',NULL,'1825',NULL,NULL),
(6341,1775,'ELIGIBILITY','applicants_certifications/
U1775T1706790610.PNG','applicants_certifications','LET_Rating2023.PNG','U1775T17067
90610.PNG','2024-02-01 20:30:10','2024-02-01 20:30:10',NULL,'1775',NULL,NULL),
(6342,1825,'SWT','applicants_certifications/
U1825T1706790867.pdf','applicants_certifications','Certificates of Trainings &
Seminars.pdf','U1825T1706790867.pdf','2024-02-01 20:34:27','2024-02-01
20:34:27',NULL,'1825',NULL,NULL),(6343,1832,'TOR','applicants_certifications/
U1832T1706790892.jpg','applicants_certifications','IMG_20240201_191450.jpg','U1832T
1706790892.jpg','2024-02-01 20:34:52','2024-02-01 20:34:52',NULL,'1832',NULL,NULL),
(6344,1832,'TOR','applicants_certifications/
U1832T1706790915.jpg','applicants_certifications','IMG_20240201_191511.jpg','U1832T
1706790915.jpg','2024-02-01 20:35:15','2024-02-01 20:35:15',NULL,'1832',NULL,NULL),
(6345,1832,'TOR','applicants_certifications/
U1832T1706790931.jpg','applicants_certifications','IMG_20240201_191528.jpg','U1832T
1706790931.jpg','2024-02-01 20:35:31','2024-02-01 20:35:31',NULL,'1832',NULL,NULL),
(6347,1825,'PDS','applicants_certifications/
U1825T1706790992.pdf','applicants_certifications','PDS and Work Experience
Sheet.pdf','U1825T1706790992.pdf','2024-02-01 20:36:32','2024-02-01
20:36:32',NULL,'1825',NULL,NULL),(6348,1832,'SWT','applicants_certifications/
U1832T1706790992.jpg','applicants_certifications','IMG_20240201_191721.jpg','U1832T
1706790992.jpg','2024-02-01 20:36:32','2024-02-01 20:36:32',NULL,'1832',NULL,NULL),
(6349,1825,'SWT','applicants_certifications/
U1825T1706791028.pdf','applicants_certifications','Award
Certificates.pdf','U1825T1706791028.pdf','2024-02-01 20:37:08','2024-02-01
20:37:08',NULL,'1825',NULL,NULL),
(6350,1832,'ELIGIBILITY','applicants_certifications/
U1832T1706791126.jpg','applicants_certifications','Screenshot_20240201_203732.jpg',
'U1832T1706791126.jpg','2024-02-01 20:38:46','2024-02-01
20:38:46',NULL,'1832',NULL,NULL),
(6351,1832,'ELIGIBILITY','applicants_certifications/
U1832T1706791158.jpg','applicants_certifications','IMG_20240201_191852.jpg','U1832T
1706791158.jpg','2024-02-01 20:39:18','2024-02-01 20:39:18',NULL,'1832',NULL,NULL),
(6352,1836,'TOR','applicants_certifications/
U1836T1706791791.pdf','applicants_certifications','TRANSCRIPT OF RECORDS- JOANNEL
GANO.pdf','U1836T1706791791.pdf','2024-02-01 20:49:51','2024-02-01
20:49:51',NULL,'1836',NULL,NULL),(6353,1836,'PDS','applicants_certifications/
U1836T1706791864.pdf','applicants_certifications','PDS- JOANNEL
GANO.pdf','U1836T1706791864.pdf','2024-02-01 20:51:04','2024-02-01
20:51:04',NULL,'1836',NULL,NULL),
(6356,1837,'ELIGIBILITY','applicants_certifications/
U1837T1706794226.pdf','applicants_certifications','BUCCAHAN_Eligibility.pdf','U1837
T1706794226.pdf','2024-02-01 21:30:26','2024-02-01
21:30:26',NULL,'1837',NULL,NULL),
(6357,1825,'ELIGIBILITY','applicants_certifications/
U1825T1706794272.pdf','applicants_certifications','Certificate of
Eligibility.pdf','U1825T1706794272.pdf','2024-02-01 21:31:12','2024-02-01
21:31:12',NULL,'1825',NULL,NULL),(6358,1837,'SWT','applicants_certifications/
U1837T1706794278.pdf','applicants_certifications','BUCCAHAN_Trainings.pdf','U1837T1
706794278.pdf','2024-02-01 21:31:18','2024-02-01 21:31:18',NULL,'1837',NULL,NULL),
(6359,1825,'COE','applicants_certifications/
U1825T1706794301.pdf','applicants_certifications','Certificate of
Employment_PRULIFE UK.pdf','U1825T1706794301.pdf','2024-02-01 21:31:41','2024-02-01
21:31:41',NULL,'1825',NULL,NULL),(6360,1825,'COE','applicants_certifications/
U1825T1706794332.pdf','applicants_certifications','Certificate of Employment_DSWD-
CAR.pdf','U1825T1706794332.pdf','2024-02-01 21:32:12','2024-02-01
21:32:12',NULL,'1825',NULL,NULL),(6361,1825,'COE','applicants_certifications/
U1825T1706794370.pdf','applicants_certifications','OJT
Certificate.pdf','U1825T1706794370.pdf','2024-02-01 21:32:50','2024-02-01
21:32:50',NULL,'1825',NULL,NULL),(6362,985,'PDS','applicants_certifications/
U985T1706795616.pdf','applicants_certifications','PDS2024-JAN-
2.pdf','U985T1706795616.pdf','2024-02-01
21:53:36','2024-02-01 21:53:36',NULL,'985',NULL,NULL),
(6363,985,'PDS','applicants_certifications/
U985T1706795667.pdf','applicants_certifications','PDS2024-JAN-
1.pdf','U985T1706795667.pdf','2024-02-01 21:54:27','2024-02-01
21:54:27',NULL,'985',NULL,NULL),(6364,985,'TOR','applicants_certifications/
U985T1706795833.pdf','applicants_certifications','TOR-
AUTH.pdf','U985T1706795833.pdf','2024-02-01 21:57:13','2024-02-01
21:57:13',NULL,'985',NULL,NULL),(6365,1779,'TOR','applicants_certifications/
U1779T1706796064.pdf','applicants_certifications','Transcript of
Records.pdf','U1779T1706796064.pdf','2024-02-01 22:01:04','2024-02-01
22:01:04',NULL,'1779',NULL,NULL),(6366,1779,'COE','applicants_certifications/
U1779T1706796090.pdf','applicants_certifications','Certificate of
Employment.pdf','U1779T1706796090.pdf','2024-02-01 22:01:30','2024-02-01
22:01:30',NULL,'1779',NULL,NULL),
(6367,1779,'ELIGIBILITY','applicants_certifications/
U1779T1706796151.pdf','applicants_certifications','Certificate of
Eligibility.pdf','U1779T1706796151.pdf','2024-02-01 22:02:31','2024-02-01
22:02:31',NULL,'1779',NULL,NULL),(6368,1779,'PDS','applicants_certifications/
U1779T1706796181.pdf','applicants_certifications','Personal Data
Sheet.pdf','U1779T1706796181.pdf','2024-02-01 22:03:01','2024-02-01
22:03:01',NULL,'1779',NULL,NULL),(6369,985,'SWT','applicants_certifications/
U985T1706796506.pdf','applicants_certifications','Certificate_of_Completion_new.pdf
','U985T1706796506.pdf','2024-02-01 22:08:26','2024-02-01
22:08:26',NULL,'985',NULL,NULL),(6370,985,'SWT','applicants_certifications/
U985T1706796534.pdf','applicants_certifications','Certificate_Sylvette Joy M.
Licyayo.pdf','U985T1706796534.pdf','2024-02-01 22:08:54','2024-02-01
22:08:54',NULL,'985',NULL,NULL),(6371,1779,'SWT','applicants_certifications/
U1779T1706796918.pdf','applicants_certifications','Pollution Control
Officer.pdf','U1779T1706796918.pdf','2024-02-01 22:15:18','2024-02-01
22:15:18',NULL,'1779',NULL,NULL),(6372,1779,'SWT','applicants_certifications/
U1779T1706796937.pdf','applicants_certifications','Adobe Photoshop
(CS6).pdf','U1779T1706796937.pdf','2024-02-01 22:15:37','2024-02-01
22:15:37',NULL,'1779',NULL,NULL),(6373,1779,'SWT','applicants_certifications/
U1779T1706796954.pdf','applicants_certifications','Advance
Excel.pdf','U1779T1706796954.pdf','2024-02-01 22:15:54','2024-02-01
22:15:54',NULL,'1779',NULL,NULL),(6374,1779,'SWT','applicants_certifications/
U1779T1706796970.pdf','applicants_certifications','Staad Pro Training
Program.pdf','U1779T1706796970.pdf','2024-02-01 22:16:10','2024-02-01
22:16:10',NULL,'1779',NULL,NULL),(6375,1779,'SWT','applicants_certifications/
U1779T1706796986.pdf','applicants_certifications','Driving
(NCII).pdf','U1779T1706796986.pdf','2024-02-01 22:16:26','2024-02-01
22:16:26',NULL,'1779',NULL,NULL),(6376,1779,'SWT','applicants_certifications/
U1779T1706797006.pdf','applicants_certifications','Technical Drafting
(NCII).pdf','U1779T1706797006.pdf','2024-02-01 22:16:46','2024-02-01
22:16:46',NULL,'1779',NULL,NULL),(6377,1825,'COE','applicants_certifications/
U1825T1706798979.pdf','applicants_certifications','IPCR
Rating.pdf','U1825T1706798979.pdf','2024-02-01 22:49:39','2024-02-01
22:49:39',NULL,'1825',NULL,NULL),(6379,1823,'PDS','applicants_certifications/
U1823T1706801660.pdf','applicants_certifications','Application
Letter.pdf','U1823T1706801660.pdf','2024-02-01 23:34:20','2024-02-01
23:34:20',NULL,'1823',NULL,NULL),(6381,1823,'TOR','applicants_certifications/
U1823T1706802639.pdf','applicants_certifications','Transcript of
Records .pdf','U1823T1706802639.pdf','2024-02-01 23:50:39','2024-02-01
23:50:39',NULL,'1823',NULL,NULL),(6382,1823,'SWT','applicants_certifications/
U1823T1706803023.pdf','applicants_certifications','Certificate of
Training.pdf','U1823T1706803023.pdf','2024-02-01 23:57:03','2024-02-01
23:57:03',NULL,'1823',NULL,NULL),(6384,1823,'PDS','applicants_certifications/
U1823T1706803113.pdf','applicants_certifications','Notarized Personal Data
Sheet.pdf','U1823T1706803113.pdf','2024-02-01 23:58:33','2024-02-01
23:58:33',NULL,'1823',NULL,NULL),
(6387,1823,'ELIGIBILITY','applicants_certifications/
U1823T1706803448.pdf','applicants_certifications','CSC
Verification.pdf','U1823T1706803448.pdf','2024-02-02 00:04:08','2024-02-02
00:04:08',NULL,'1823',NULL,NULL),(6388,1823,'SWT','applicants_certifications/
U1823T1706803463.pdf','applicants_certifications','PRC
License.pdf','U1823T1706803463.pdf','2024-02-02 00:04:23','2024-02-02
00:04:23',NULL,'1823',NULL,NULL),(6389,1839,'TOR','applicants_certifications/
U1839T1706823878.pdf','applicants_certifications','tor_1.pdf','U1839T1706823878.pdf
','2024-02-02 05:44:38','2024-02-02 05:44:38',NULL,'1839',NULL,NULL),
(6390,1839,'COE','applicants_certifications/
U1839T1706824564.pdf','applicants_certifications','COE.pdf','U1839T1706824564.pdf',
'2024-02-02 05:56:04','2024-02-02 05:56:04',NULL,'1839',NULL,NULL),
(6393,1839,'SWT','applicants_certifications/
U1839T1706824780.pdf','applicants_certifications','CERT.pdf','U1839T1706824780.pdf'
,'2024-02-02 05:59:40','2024-02-02 05:59:40',NULL,'1839',NULL,NULL),
(6394,1839,'ELIGIBILITY','applicants_certifications/
U1839T1706824807.pdf','applicants_certifications','Notice of
Rating.pdf','U1839T1706824807.pdf','2024-02-02 06:00:07','2024-02-02
06:00:07',NULL,'1839',NULL,NULL),(6395,681,'COE','applicants_certifications/
U681T1706828524.jpg','applicants_certifications','CamScanner 01-31-2024
14.11_1.jpg','U681T1706828524.jpg','2024-02-02 07:02:04','2024-02-02
07:02:04',NULL,'681',NULL,NULL),(6396,1841,'COE','applicants_certifications/
U1841T1706835346.jpeg','applicants_certifications','CERT. OF EMPLOYMENT
ICEDREAM.jpeg','U1841T1706835346.jpeg','2024-02-02 08:55:46','2024-02-02
08:55:46',NULL,'1841',NULL,NULL),(6398,1747,'COE','applicants_certifications/
U1747T1706835446.pdf','applicants_certifications','COE.pdf','U1747T1706835446.pdf',
'2024-02-02 08:57:26','2024-02-02 08:57:26',NULL,'1747',NULL,NULL),
(6399,1832,'PDS','applicants_certifications/
U1832T1706843139.jpg','applicants_certifications','IMG_20240202_105510_1.jpg','U183
2T1706843139.jpg','2024-02-02 11:05:39','2024-02-02
11:05:39',NULL,'1832',NULL,NULL),(6400,1832,'PDS','applicants_certifications/
U1832T1706843182.jpg','applicants_certifications','IMG_20240202_105609_1.jpg','U183
2T1706843182.jpg','2024-02-02 11:06:22','2024-02-02
11:06:22',NULL,'1832',NULL,NULL),(6401,1832,'PDS','applicants_certifications/
U1832T1706843208.jpg','applicants_certifications','IMG_20240202_105710_1.jpg','U183
2T1706843208.jpg','2024-02-02 11:06:48','2024-02-02
11:06:48',NULL,'1832',NULL,NULL),(6402,1832,'PDS','applicants_certifications/
U1832T1706843249.jpg','applicants_certifications','IMG_20240202_105734_1.jpg','U183
2T1706843249.jpg','2024-02-02 11:07:29','2024-02-02
11:07:29',NULL,'1832',NULL,NULL),(6404,1534,'PDS','applicants_certifications/
U1534T1706845797.jpg','applicants_certifications','Page5.3.jpg','U1534T1706845797.j
pg','2024-02-02 11:49:57','2024-02-02 11:49:57',NULL,'1534',NULL,NULL),
(6407,1082,'TOR','applicants_certifications/
U1082T1706846179.pdf','applicants_certifications','TOR.pdf','U1082T1706846179.pdf',
'2024-02-02 11:56:19','2024-02-02 11:56:19',NULL,'1082',NULL,NULL),
(6410,1799,'TOR','applicants_certifications/
U1799T1706846581.jpg','applicants_certifications','CamScanner 02-02-2024
07.51.jpg','U1799T1706846581.jpg','2024-02-02 12:03:01','2024-02-02
12:03:01',NULL,'1799',NULL,NULL),(6411,1799,'TOR','applicants_certifications/
U1799T1706846644.jpg','applicants_certifications','CamScanner 02-02-2024
07.51.jpg','U1799T1706846644.jpg','2024-02-02 12:04:04','2024-02-02
12:04:04',NULL,'1799',NULL,NULL),(6412,1799,'COE','applicants_certifications/
U1799T1706846871.jpg','applicants_certifications','CamScanner 02-02-2024
12.07_1.jpg','U1799T1706846871.jpg','2024-02-02 12:07:51','2024-02-02
12:07:51',NULL,'1799',NULL,NULL),(6413,1799,'SWT','applicants_certifications/
U1799T1706846921.pdf','applicants_certifications','RQ Free Webinar 14 Oct 2023 -
Session 23.pdf','U1799T1706846921.pdf','2024-02-02 12:08:41','2024-02-02
12:08:41',NULL,'1799',NULL,NULL),
(6414,1799,'ELIGIBILITY','applicants_certifications/
U1799T1706846996.jpg','applicants_certifications','CamScanner 02-02-2024
12.05_1.jpg','U1799T1706846996.jpg','2024-02-02 12:09:56','2024-02-02
12:09:56',NULL,'1799',NULL,NULL),(6415,1799,'PDS','applicants_certifications/
U1799T1706847663.jpg','applicants_certifications','CamScanner 02-02-2024
12.19_1.jpg','U1799T1706847663.jpg','2024-02-02 12:21:03','2024-02-02
12:21:03',NULL,'1799',NULL,NULL),(6416,1799,'PDS','applicants_certifications/
U1799T1706847696.jpg','applicants_certifications','CamScanner 02-02-2024
12.13_1.jpg','U1799T1706847696.jpg','2024-02-02 12:21:36','2024-02-02
12:21:36',NULL,'1799',NULL,NULL),(6417,1799,'PDS','applicants_certifications/
U1799T1706847748.jpg','applicants_certifications','CamScanner 02-02-2024 12.13
(1)_1.jpg','U1799T1706847748.jpg','2024-02-02 12:22:28','2024-02-02
12:22:28',NULL,'1799',NULL,NULL),(6418,1799,'PDS','applicants_certifications/
U1799T1706847786.jpg','applicants_certifications','CamScanner 02-02-2024
12.07_3.jpg','U1799T1706847786.jpg','2024-02-02 12:23:06','2024-02-02
12:23:06',NULL,'1799',NULL,NULL),(6419,1784,'COE','applicants_certifications/
U1784T1706848525.pdf','applicants_certifications','Certificate of
Employment.pdf','U1784T1706848525.pdf','2024-02-02 12:35:25','2024-02-02
12:35:25',NULL,'1784',NULL,NULL),(6420,985,'PDS','applicants_certifications/
U985T1706851163.pdf','applicants_certifications','WES-
JAN.pdf','U985T1706851163.pdf','2024-02-02 13:19:23','2024-02-02
13:19:23',NULL,'985',NULL,NULL),(6421,1722,'PDS','applicants_certifications/
U1722T1706854181.pdf','applicants_certifications','pds Jan 19
24.pdf','U1722T1706854181.pdf','2024-02-02 14:09:41','2024-02-02
14:09:41',NULL,'1722',NULL,NULL),(6422,1769,'TOR','applicants_certifications/
U1769T1706855013.pdf','applicants_certifications','TRANSCRIPT OF
RECORDS.pdf','U1769T1706855013.pdf','2024-02-02
14:23:33','2024-02-02 14:23:33',NULL,'1769',NULL,NULL),
(6423,1769,'PDS','applicants_certifications/
U1769T1706855066.pdf','applicants_certifications','PERSONAL DATA
SHEET.pdf','U1769T1706855066.pdf','2024-02-02 14:24:26','2024-02-02
14:24:26',NULL,'1769',NULL,NULL),(6424,1831,'COE','applicants_certifications/
U1831T1706856194.pdf','applicants_certifications','COE.pdf','U1831T1706856194.pdf',
'2024-02-02 14:43:14','2024-02-02 14:43:14',NULL,'1831',NULL,NULL),
(6425,1831,'PDS','applicants_certifications/
U1831T1706856215.pdf','applicants_certifications','PDS.pdf','U1831T1706856215.pdf',
'2024-02-02 14:43:35','2024-02-02 14:43:35',NULL,'1831',NULL,NULL),
(6426,54,'ELIGIBILITY','applicants_certifications/
U54T1706858473.pdf','applicants_certifications','Cert_ CS
Professional.pdf','U54T1706858473.pdf','2024-02-02 15:21:13','2024-02-02
15:21:13',NULL,'54',NULL,NULL),(6427,1715,'TOR','applicants_certifications/
U1715T1706864271.pdf','applicants_certifications','TOR.pdf','U1715T1706864271.pdf',
'2024-02-02 16:57:51','2024-02-02 16:57:51',NULL,'1715',NULL,NULL),
(6428,1838,'TOR','applicants_certifications/
U1838T1706864319.pdf','applicants_certifications','TOR.pdf','U1838T1706864319.pdf',
'2024-02-02 16:58:39','2024-02-02 16:58:39',NULL,'1838',NULL,NULL),
(6429,1838,'ELIGIBILITY','applicants_certifications/
U1838T1706864345.pdf','applicants_certifications','LISCENSE.pdf','U1838T1706864345.
pdf','2024-02-02 16:59:05','2024-02-02 16:59:05',NULL,'1838',NULL,NULL),
(6430,1838,'PDS','applicants_certifications/
U1838T1706864369.pdf','applicants_certifications','PDS.pdf','U1838T1706864369.pdf',
'2024-02-02 16:59:29','2024-02-02 16:59:29',NULL,'1838',NULL,NULL),
(6431,1838,'SWT','applicants_certifications/
U1838T1706864458.pdf','applicants_certifications','Doc_by_Scan_Shot (3)
(1).pdf','U1838T1706864458.pdf','2024-02-02 17:00:58','2024-02-02
17:00:58',NULL,'1838',NULL,NULL),(6432,1715,'COE','applicants_certifications/
U1715T1706864837.pdf','applicants_certifications','COE.pdf','U1715T1706864837.pdf',
'2024-02-02 17:07:17','2024-02-02 17:07:17',NULL,'1715',NULL,NULL),
(6433,1551,'SWT','applicants_certifications/
U1551T1706865748.pdf','applicants_certifications','Training
Certificate.pdf','U1551T1706865748.pdf','2024-02-02 17:22:28','2024-02-02
17:22:28',NULL,'1551',NULL,NULL),(6434,1715,'SWT','applicants_certifications/
U1715T1706866226.pdf','applicants_certifications','TRAININGS.pdf','U1715T1706866226
.pdf','2024-02-02 17:30:26','2024-02-02 17:30:26',NULL,'1715',NULL,NULL),
(6435,1715,'ELIGIBILITY','applicants_certifications/
U1715T1706866248.jpg','applicants_certifications','Eligibility.jpg','U1715T17068662
48.jpg','2024-02-02 17:30:48','2024-02-02 17:30:48',NULL,'1715',NULL,NULL),
(6436,1715,'PDS','applicants_certifications/
U1715T1706866270.pdf','applicants_certifications','PDS.pdf','U1715T1706866270.pdf',
'2024-02-02 17:31:10','2024-02-02 17:31:10',NULL,'1715',NULL,NULL),
(6437,1837,'TOR','applicants_certifications/
U1837T1706868089.pdf','applicants_certifications','BUCCAHAN_TOR.pdf','U1837T1706868
089.pdf','2024-02-02 18:01:29','2024-02-02 18:01:29',NULL,'1837',NULL,NULL),
(6438,1837,'COE','applicants_certifications/
U1837T1706868144.pdf','applicants_certifications','BUCCAHAN_CoE.pdf','U1837T1706868
144.pdf','2024-02-02 18:02:24','2024-02-02 18:02:24',NULL,'1837',NULL,NULL),
(6439,1846,'ELIGIBILITY','applicants_certifications/
U1846T1706870693.pdf','applicants_certifications','Christine Joy Gasatan
(Certification of Passing).pdf','U1846T1706870693.pdf','2024-02-02 18:44:53','2024-
02-02 18:44:53',NULL,'1846',NULL,NULL),
(6440,1846,'TOR','applicants_certifications/
U1846T1706871393.pdf','applicants_certifications','Christine Joy Gasatan
(TOR).pdf','U1846T1706871393.pdf','2024-02-02 18:56:33','2024-02-02
18:56:33',NULL,'1846',NULL,NULL),(6441,1846,'PDS','applicants_certifications/
U1846T1706871937.pdf','applicants_certifications','Christine Joy Gasatan
(PDS).pdf','U1846T1706871937.pdf','2024-02-02 19:05:37','2024-02-02
19:05:37',NULL,'1846',NULL,NULL),(6442,1846,'SWT','applicants_certifications/
U1846T1706872182.pdf','applicants_certifications','Christine Joy Gasatan (TRAINING
CERTIFICATES).pdf','U1846T1706872182.pdf','2024-02-02 19:09:42','2024-02-02
19:09:42',NULL,'1846',NULL,NULL),(6443,1787,'PDS','applicants_certifications/
U1787T1706877767.pdf','applicants_certifications','PDS
(1).pdf','U1787T1706877767.pdf','2024-02-02 20:42:47','2024-02-02
20:42:47',NULL,'1787',NULL,NULL),(6444,1468,'COE','applicants_certifications/
U1468T1706881017.jpg','applicants_certifications','416519668_207245422480627_292228
9966207359633_n.jpg','U1468T1706881017.jpg','2024-02-02 21:36:57','2024-02-02
21:36:57',NULL,'1468',NULL,NULL),(6447,1851,'COE','applicants_certifications/
U1851T1706928232.pdf','applicants_certifications','certificate-of-
employment.pdf','U1851T1706928232.pdf','2024-02-03 10:43:52','2024-02-03
10:43:52',NULL,'1851',NULL,NULL),
(6450,1851,'ELIGIBILITY','applicants_certifications/
U1851T1706929482.pdf','applicants_certifications','LICENCES.pdf','U1851T1706929482.
pdf','2024-02-03 11:04:42','2024-02-03 11:04:42',NULL,'1851',NULL,NULL),
(6453,1853,'SWT','applicants_certifications/
U1853T1706929646.jpg','applicants_certifications','CamScanner 01-31-2024
09.11.jpg','U1853T1706929646.jpg','2024-02-03 11:07:26','2024-02-03
11:07:26',NULL,'1853',NULL,NULL),(6454,1853,'PDS','applicants_certifications/
U1853T1706929747.docx','applicants_certifications','RESUME.docx','U1853T1706929747.
docx','2024-02-03 11:09:07','2024-02-03 11:09:07',NULL,'1853',NULL,NULL),
(6455,1853,'ELIGIBILITY','applicants_certifications/
U1853T1706929769.jpg','applicants_certifications','CamScanner 01-31-2024
10.43_1.jpg','U1853T1706929769.jpg','2024-02-03 11:09:29','2024-02-03
11:09:29',NULL,'1853',NULL,NULL),(6456,1851,'PDS','applicants_certifications/
U1851T1706930719.pdf','applicants_certifications','pds oly
2024.pdf','U1851T1706930719.pdf','2024-02-03 11:25:19','2024-02-03
11:25:19',NULL,'1851',NULL,NULL),(6457,1851,'SWT','applicants_certifications/
U1851T1706933892.pdf','applicants_certifications','CERTIFICATES.pdf','U1851T1706933
892.pdf','2024-02-03 12:18:12','2024-02-03 12:18:12',NULL,'1851',NULL,NULL),
(6458,1851,'TOR','applicants_certifications/
U1851T1706935145.pdf','applicants_certifications','tor and
diploma.pdf','U1851T1706935145.pdf','2024-02-03 12:39:05','2024-02-03
12:39:05',NULL,'1851',NULL,NULL),(6463,54,'COE','applicants_certifications/
U54T1706944916.pdf','applicants_certifications','COE_ Information
Officer.pdf','U54T1706944916.pdf','2024-02-03 15:21:56','2024-02-03
15:21:56',NULL,'54',NULL,NULL),(6464,54,'COE','applicants_certifications/
U54T1706944945.pdf','applicants_certifications','COE_ Admin Assist
III.pdf','U54T1706944945.pdf','2024-02-03 15:22:25','2024-02-03
15:22:25',NULL,'54',NULL,NULL),(6465,54,'COE','applicants_certifications/
U54T1706944971.pdf','applicants_certifications','COE_ I want English Online
Tutorial.pdf','U54T1706944971.pdf','2024-02-03 15:22:51','2024-02-03
15:22:51',NULL,'54',NULL,NULL),(6466,54,'COE','applicants_certifications/
U54T1706944991.pdf','applicants_certifications','COE_ Oxphone International
Company.pdf','U54T1706944991.pdf','2024-02-03 15:23:11','2024-02-03
15:23:11',NULL,'54',NULL,NULL),(6468,54,'SWT','applicants_certifications/
U54T1706945073.pdf','applicants_certifications','Cert_ Ancestral
Domain.pdf','U54T1706945073.pdf','2024-02-03 15:24:33','2024-02-03
15:24:33',NULL,'54',NULL,NULL),(6469,54,'SWT','applicants_certifications/
U54T1706945533.pdf','applicants_certifications','Cert_ Contest
2.pdf','U54T1706945533.pdf','2024-02-03 15:32:13','2024-02-03
15:32:13',NULL,'54',NULL,NULL),(6470,54,'SWT','applicants_certifications/
U54T1706945570.pdf','applicants_certifications','Cert_ EIC
Material.pdf','U54T1706945570.pdf','2024-02-03 15:32:50','2024-02-03
15:32:50',NULL,'54',NULL,NULL),(6471,54,'SWT','applicants_certifications/
U54T1706945618.pdf','applicants_certifications','Cert_ Guest Lecturer on News
Writing.pdf','U54T1706945618.pdf','2024-02-03 15:33:38','2024-02-03
15:33:38',NULL,'54',NULL,NULL),(6472,54,'SWT','applicants_certifications/
U54T1706945693.pdf','applicants_certifications','Cert_ Image
Editing.pdf','U54T1706945693.pdf','2024-02-03 15:34:53','2024-02-03
15:34:53',NULL,'54',NULL,NULL),(6473,54,'SWT','applicants_certifications/
U54T1706945717.pdf','applicants_certifications','Cert_ Information
Literacy.pdf','U54T1706945717.pdf','2024-02-03 15:35:17','2024-02-03
15:35:17',NULL,'54',NULL,NULL),(6474,54,'SWT','applicants_certifications/
U54T1706945790.pdf','applicants_certifications','Cert_ ISO 9001 2015 Quality
Management System.pdf','U54T1706945790.pdf','2024-02-03 15:36:30','2024-02-03
15:36:30',NULL,'54',NULL,NULL),(6475,54,'SWT','applicants_certifications/
U54T1706945823.pdf','applicants_certifications','Cert_ Journ Writing, Videography
and Comm Info.pdf','U54T1706945823.pdf','2024-02-03 15:37:03','2024-02-03
15:37:03',NULL,'54',NULL,NULL),(6476,54,'SWT','applicants_certifications/
U54T1706945999.pdf','applicants_certifications','Cert_ Online Training on Effective
Media Relations.pdf','U54T1706945999.pdf','2024-02-03 15:39:59','2024-02-03
15:39:59',NULL,'54',NULL,NULL),(6477,54,'SWT','applicants_certifications/
U54T1706946034.pdf','applicants_certifications','Cert_ Organizational
Behavior.pdf','U54T1706946034.pdf','2024-02-03 15:40:34','2024-02-03
15:40:34',NULL,'54',NULL,NULL),(6478,54,'SWT','applicants_certifications/
U54T1706946154.pdf','applicants_certifications','Cert_ Public Fiscal
Administation.pdf','U54T1706946154.pdf','2024-02-03 15:42:34','2024-02-03
15:42:34',NULL,'54',NULL,NULL),(6479,54,'SWT','applicants_certifications/
U54T1706946220.pdf','applicants_certifications','Cert_ Public Service and
Governance.pdf','U54T1706946220.pdf','2024-02-03 15:43:40','2024-02-03
15:43:40',NULL,'54',NULL,NULL),(6480,54,'SWT','applicants_certifications/
U54T1706946257.pdf','applicants_certifications','Cert_ Research
JSTOR.pdf','U54T1706946257.pdf','2024-02-03 15:44:17','2024-02-03
15:44:17',NULL,'54',NULL,NULL),(6481,54,'SWT','applicants_certifications/
U54T1706946294.pdf','applicants_certifications','Cert_ Strat
Planning.pdf','U54T1706946294.pdf','2024-02-03 15:44:54','2024-02-03
15:44:54',NULL,'54',NULL,NULL),(6482,54,'SWT','applicants_certifications/
U54T1706946329.pdf','applicants_certifications','Cert_ Textbook Writing and
Copyright Law.pdf','U54T1706946329.pdf','2024-02-03 15:45:29','2024-02-03
15:45:29',NULL,'54',NULL,NULL),(6483,54,'SWT','applicants_certifications/
U54T1706946362.pdf','applicants_certifications','Cert_ Training on Administrative
Communication.pdf','U54T1706946362.pdf','2024-02-03 15:46:02','2024-02-03
15:46:02',NULL,'54',NULL,NULL),(6484,54,'PDS','applicants_certifications/
U54T1706949736.pdf','applicants_certifications','Personal Data Sheet _ Florida
Robles.pdf','U54T1706949736.pdf','2024-02-03 16:42:16','2024-02-03
16:42:16',NULL,'54',NULL,NULL),(6485,54,'PDS','applicants_certifications/
U54T1706948263.pdf','applicants_certifications','PDS Work Sheet_ Florida
Robles.pdf','U54T1706948263.pdf','2024-02-03 16:17:43','2024-02-03
16:17:43',NULL,'54',NULL,NULL),(6486,54,'PDS','applicants_certifications/
U54T1706948740.pdf','applicants_certifications','FLORIDA - IPCR JAN-JUNE
2023.pdf','U54T1706948740.pdf','2024-02-03 16:25:40','2024-02-03
16:25:40',NULL,'54',NULL,NULL),(6487,1741,'TOR','applicants_certifications/
U1741T1707015729.jpg','applicants_certifications','IMG_20240201_121423_123.jpg','U1
741T1707015729.jpg','2024-02-04 11:02:09','2024-02-04
11:02:09',NULL,'1741',NULL,NULL),(6488,1741,'TOR','applicants_certifications/
U1741T1707015755.jpg','applicants_certifications','IMG_20240201_121442_501.jpg','U1
741T1707015755.jpg','2024-02-04 11:02:35','2024-02-04
11:02:35',NULL,'1741',NULL,NULL),(6489,1741,'TOR','applicants_certifications/
U1741T1707015777.jpg','applicants_certifications','IMG_20240201_121459_545.jpg','U1
741T1707015777.jpg','2024-02-04 11:02:57','2024-02-04
11:02:57',NULL,'1741',NULL,NULL),(6490,1741,'COE','applicants_certifications/
U1741T1707015799.jpg','applicants_certifications','IMG_20240201_121653_260.jpg','U1
741T1707015799.jpg','2024-02-04 11:03:19','2024-02-04
11:03:19',NULL,'1741',NULL,NULL),(6492,1747,'SWT','applicants_certifications/
U1747T1707016307.png','applicants_certifications','Screenshot
(40).png','U1747T1707016307.png','2024-02-04 11:11:47','2024-02-04
11:11:47',NULL,'1747',NULL,NULL),(6494,1747,'SWT','applicants_certifications/
U1747T1707016351.png','applicants_certifications','Screenshot
(41).png','U1747T1707016351.png','2024-02-04 11:12:32','2024-02-04
11:12:32',NULL,'1747',NULL,NULL),(6495,1747,'SWT','applicants_certifications/
U1747T1707016375.png','applicants_certifications','Screenshot
(42).png','U1747T1707016375.png','2024-02-04 11:12:55','2024-02-04
11:12:55',NULL,'1747',NULL,NULL),(6497,1747,'SWT','applicants_certifications/
U1747T1707016438.png','applicants_certifications','Screenshot
(44).png','U1747T1707016438.png','2024-02-04 11:13:58','2024-02-04
11:13:58',NULL,'1747',NULL,NULL),(6498,1747,'SWT','applicants_certifications/
U1747T1707016466.png','applicants_certifications','Screenshot
(45).png','U1747T1707016466.png','2024-02-04 11:14:26','2024-02-04
11:14:26',NULL,'1747',NULL,NULL),(6499,1747,'SWT','applicants_certifications/
U1747T1707016497.png','applicants_certifications','Screenshot
(46).png','U1747T1707016497.png','2024-02-04 11:14:57','2024-02-04
11:14:57',NULL,'1747',NULL,NULL),(6501,1747,'SWT','applicants_certifications/
U1747T1707016697.png','applicants_certifications','Screenshot
(39).png','U1747T1707016697.png','2024-02-04 11:18:17','2024-02-04
11:18:17',NULL,'1747',NULL,NULL),(6503,1747,'SWT','applicants_certifications/
U1747T1707016782.png','applicants_certifications','Screenshot
(51).png','U1747T1707016782.png','2024-02-04 11:19:42','2024-02-04
11:19:42',NULL,'1747',NULL,NULL),(6504,1747,'SWT','applicants_certifications/
U1747T1707016800.png','applicants_certifications','Screenshot
(52).png','U1747T1707016800.png','2024-02-04 11:20:00','2024-02-04
11:20:00',NULL,'1747',NULL,NULL),(6505,1747,'SWT','applicants_certifications/
U1747T1707016817.png','applicants_certifications','Screenshot
(53).png','U1747T1707016817.png','2024-02-04 11:20:17','2024-02-04
11:20:17',NULL,'1747',NULL,NULL),(6506,1747,'SWT','applicants_certifications/
U1747T1707016832.png','applicants_certifications','Screenshot
(54).png','U1747T1707016832.png','2024-02-04 11:20:32','2024-02-04
11:20:32',NULL,'1747',NULL,NULL),(6507,1747,'SWT','applicants_certifications/
U1747T1707016852.png','applicants_certifications','Screenshot
(56).png','U1747T1707016852.png','2024-02-04 11:20:52','2024-02-04
11:20:52',NULL,'1747',NULL,NULL),(6508,1747,'SWT','applicants_certifications/
U1747T1707016871.png','applicants_certifications','Screenshot
(55).png','U1747T1707016871.png','2024-02-04 11:21:11','2024-02-04
11:21:11',NULL,'1747',NULL,NULL),(6510,1747,'SWT','applicants_certifications/
U1747T1707016933.png','applicants_certifications','Screenshot
(57).png','U1747T1707016933.png','2024-02-04 11:22:13','2024-02-04
11:22:13',NULL,'1747',NULL,NULL),(6511,1747,'SWT','applicants_certifications/
U1747T1707016954.png','applicants_certifications','Screenshot
(58).png','U1747T1707016954.png','2024-02-04 11:22:34','2024-02-04
11:22:34',NULL,'1747',NULL,NULL),(6512,1747,'SWT','applicants_certifications/
U1747T1707016972.png','applicants_certifications','Screenshot
(59).png','U1747T1707016972.png','2024-02-04 11:22:52','2024-02-04
11:22:52',NULL,'1747',NULL,NULL),(6513,1747,'SWT','applicants_certifications/
U1747T1707016992.png','applicants_certifications','Screenshot
(60).png','U1747T1707016992.png','2024-02-04 11:23:12','2024-02-04
11:23:12',NULL,'1747',NULL,NULL),(6514,1747,'SWT','applicants_certifications/
U1747T1707017017.png','applicants_certifications','Screenshot
(61).png','U1747T1707017017.png','2024-02-04 11:23:37','2024-02-04
11:23:37',NULL,'1747',NULL,NULL),(6515,1747,'SWT','applicants_certifications/
U1747T1707017034.png','applicants_certifications','Screenshot
(62).png','U1747T1707017034.png','2024-02-04 11:23:54','2024-02-04
11:23:54',NULL,'1747',NULL,NULL),(6516,1747,'SWT','applicants_certifications/
U1747T1707017056.png','applicants_certifications','Screenshot
(63).png','U1747T1707017056.png','2024-02-04 11:24:16','2024-02-04
11:24:16',NULL,'1747',NULL,NULL),(6517,1747,'SWT','applicants_certifications/
U1747T1707017076.png','applicants_certifications','Screenshot
(64).png','U1747T1707017076.png','2024-02-04 11:24:36','2024-02-04
11:24:36',NULL,'1747',NULL,NULL),(6518,1718,'SWT','applicants_certifications/
U1718T1707017381.pdf','applicants_certifications','BOLLA, MB - OJT
CERT.pdf','U1718T1707017381.pdf','2024-02-04 11:29:41','2024-02-04
11:29:41',NULL,'1718',NULL,NULL),(6519,1747,'PDS','applicants_certifications/
U1747T1707017416.xlsx','applicants_certifications','Personal-Data-Sheet-CS-Form-
No.-212-Revised-2017-3 (1).xlsx','U1747T1707017416.xlsx','2024-02-04
11:30:16','2024-02-04 11:30:16',NULL,'1747',NULL,NULL),
(6520,1718,'PDS','applicants_certifications/
U1718T1707018327.pdf','applicants_certifications','BOLLA, MB. -
PDS.pdf','U1718T1707018327.pdf','2024-02-04 11:45:27','2024-02-04
11:45:27',NULL,'1718',NULL,NULL),(6521,1718,'TOR','applicants_certifications/
U1718T1707018733.pdf','applicants_certifications','BOLLA, MB. -
TOR.pdf','U1718T1707018733.pdf','2024-02-04 11:52:13','2024-02-04
11:52:13',NULL,'1718',NULL,NULL),(6522,1718,'COE','applicants_certifications/
U1718T1707018990.pdf','applicants_certifications','BOLLA, MB. - CERT. OF
EMPLOYMENT.pdf','U1718T1707018990.pdf','2024-02-04 11:56:30','2024-02-04
11:56:30',NULL,'1718',NULL,NULL),
(6523,1718,'ELIGIBILITY','applicants_certifications/
U1718T1707019492.pdf','applicants_certifications','BOLLA,
MB .pdf','U1718T1707019492.pdf','2024-02-04 12:04:52','2024-02-04
12:04:52',NULL,'1718',NULL,NULL),(6524,1718,'PDS','applicants_certifications/
U1718T1707034099.pdf','applicants_certifications','BOLLA, MB - WORK EXPERIENCE
SHEET.pdf','U1718T1707034099.pdf','2024-02-04 16:08:19','2024-02-04
16:08:19',NULL,'1718',NULL,NULL),(6526,1859,'TOR','applicants_certifications/
U1859T1707034415.jpeg','applicants_certifications','IMG_9362.jpeg','U1859T170703441
5.jpeg','2024-02-04 16:13:35','2024-02-04 16:13:35',NULL,'1859',NULL,NULL),
(6527,1859,'TOR','applicants_certifications/
U1859T1707034441.jpeg','applicants_certifications','IMG_9363.jpeg','U1859T170703444
1.jpeg','2024-02-04 16:14:01','2024-02-04 16:14:01',NULL,'1859',NULL,NULL),
(6528,1859,'TOR','applicants_certifications/
U1859T1707034487.jpeg','applicants_certifications','IMG_9364.jpeg','U1859T170703448
7.jpeg','2024-02-04 16:14:47','2024-02-04 16:14:47',NULL,'1859',NULL,NULL),
(6529,1859,'TOR','applicants_certifications/
U1859T1707034503.jpeg','applicants_certifications','IMG_9365.jpeg','U1859T170703450
3.jpeg','2024-02-04 16:15:03','2024-02-04 16:15:03',NULL,'1859',NULL,NULL),
(6530,1859,'COE','applicants_certifications/
U1859T1707034540.jpeg','applicants_certifications','IMG_9353.jpeg','U1859T170703454
0.jpeg','2024-02-04 16:15:40','2024-02-04 16:15:40',NULL,'1859',NULL,NULL),
(6531,1859,'COE','applicants_certifications/
U1859T1707034558.jpeg','applicants_certifications','IMG_9354.jpeg','U1859T170703455
8.jpeg','2024-02-04 16:15:58','2024-02-04 16:15:58',NULL,'1859',NULL,NULL),
(6532,1859,'SWT','applicants_certifications/
U1859T1707034577.jpeg','applicants_certifications','IMG_9350.jpeg','U1859T170703457
7.jpeg','2024-02-04 16:16:17','2024-02-04 16:16:17',NULL,'1859',NULL,NULL),
(6533,1859,'SWT','applicants_certifications/
U1859T1707034596.jpeg','applicants_certifications','IMG_9351.jpeg','U1859T170703459
6.jpeg','2024-02-04 16:16:36','2024-02-04 16:16:36',NULL,'1859',NULL,NULL),
(6534,1859,'SWT','applicants_certifications/
U1859T1707034609.jpeg','applicants_certifications','IMG_9352.jpeg','U1859T170703460
9.jpeg','2024-02-04 16:16:49','2024-02-04 16:16:49',NULL,'1859',NULL,NULL),
(6535,1859,'ELIGIBILITY','applicants_certifications/
U1859T1707034626.jpeg','applicants_certifications','IMG_9371.jpeg','U1859T170703462
6.jpe
g','2024-02-04 16:17:06','2024-02-04 16:17:06',NULL,'1859',NULL,NULL),
(6536,1859,'ELIGIBILITY','applicants_certifications/
U1859T1707034646.jpeg','applicants_certifications','IMG_9361.jpeg','U1859T170703464
6.jpeg','2024-02-04 16:17:26','2024-02-04 16:17:26',NULL,'1859',NULL,NULL),
(6537,1859,'ELIGIBILITY','applicants_certifications/
U1859T1707034673.jpeg','applicants_certifications','IMG_9349.jpeg','U1859T170703467
3.jpeg','2024-02-04 16:17:53','2024-02-04 16:17:53',NULL,'1859',NULL,NULL),
(6538,1742,'PDS','applicants_certifications/
U1742T1707037478.pdf','applicants_certifications','PDS2024.pdf','U1742T1707037478.p
df','2024-02-04 17:04:38','2024-02-04 17:04:38',NULL,'1742',NULL,NULL),
(6539,1742,'ELIGIBILITY','applicants_certifications/
U1742T1707037518.png','applicants_certifications','prc.png','U1742T1707037518.png',
'2024-02-04 17:05:18','2024-02-04 17:05:18',NULL,'1742',NULL,NULL),
(6540,1718,'ELIGIBILITY','applicants_certifications/
U1718T1707038274.pdf','applicants_certifications','HGE
pd907.pdf','U1718T1707038274.pdf','2024-02-04 17:17:54','2024-02-04
17:17:54',NULL,'1718',NULL,NULL),(6541,1860,'TOR','applicants_certifications/
U1860T1707038799.pdf','applicants_certifications','WAKIT-EDLYN-M.-
TOR.pdf','U1860T1707038799.pdf','2024-02-04 17:26:39','2024-02-04
17:26:39',NULL,'1860',NULL,NULL),(6542,1860,'COE','applicants_certifications/
U1860T1707038825.pdf','applicants_certifications','WAKIT-EDLYN-M.-SERVICE-
RECORDS.pdf','U1860T1707038825.pdf','2024-02-04 17:27:05','2024-02-04
17:27:05',NULL,'1860',NULL,NULL),(6543,1860,'SWT','applicants_certifications/
U1860T1707038842.pdf','applicants_certifications','WAKIT-EDLYN-M.-CERTIFICATES-OF-
TRAININGS-ATTENDED.pdf','U1860T1707038842.pdf','2024-02-04 17:27:22','2024-02-04
17:27:22',NULL,'1860',NULL,NULL),
(6544,1860,'ELIGIBILITY','applicants_certifications/
U1860T1707038860.pdf','applicants_certifications','WAKIT-EDLYN-M.-
ELIGIBILITY.pdf','U1860T1707038860.pdf','2024-02-04 17:27:40','2024-02-04
17:27:40',NULL,'1860',NULL,NULL),(6547,1560,'SWT','applicants_certifications/
U1560T1707039514.pdf','applicants_certifications','DILG -LGA LER-LED-LMS-LGUS-79
Oct Dec 2023.pdf','U1560T1707039514.pdf','2024-02-04 17:38:34','2024-02-04
17:38:34',NULL,'1560',NULL,NULL),(6548,1560,'SWT','applicants_certifications/
U1560T1707039552.pdf','applicants_certifications','TOUR PACKAGE DELIVERY MARCH
2022.pdf','U1560T1707039552.pdf','2024-02-04 17:39:12','2024-02-04
17:39:12',NULL,'1560',NULL,NULL),(6549,1560,'SWT','applicants_certifications/
U1560T1707039586.pdf','applicants_certifications','DIGITAL IS THE NEW ESENTIAL
MARCH 2022.pdf','U1560T1707039586.pdf','2024-02-04 17:39:46','2024-02-04
17:39:46',NULL,'1560',NULL,NULL),(6550,1860,'PDS','applicants_certifications/
U1860T1707039654.pdf','applicants_certifications','WAKIT-EDLYN-M.-
PDS.pdf','U1860T1707039654.pdf','2024-02-04 17:40:54','2024-02-04
17:40:54',NULL,'1860',NULL,NULL),(6551,1560,'SWT','applicants_certifications/
U1560T1707039717.pdf','applicants_certifications','SUSTAINABLE TOURISM AND CARRYING
CAPACITY SEPT 2021.pdf','U1560T1707039717.pdf','2024-02-04 17:41:57','2024-02-04
17:41:57',NULL,'1560',NULL,NULL),(6552,1560,'SWT','applicants_certifications/
U1560T1707039759.pdf','applicants_certifications','BUILDING FOREST AND LANDSCAPE
RESTORATION JULY 2021.pdf','U1560T1707039759.pdf','2024-02-04 17:42:39','2024-02-04
17:42:39',NULL,'1560',NULL,NULL),(6553,1560,'SWT','applicants_certifications/
U1560T1707039811.jpg','applicants_certifications','IFSU Organizational Behavior
Topic 2 - Feb 2021.jpg','U1560T1707039811.jpg','2024-02-04 17:43:31','2024-02-04
17:43:31',NULL,'1560',NULL,NULL),(6554,1560,'SWT','applicants_certifications/
U1560T1707039836.jpg','applicants_certifications','IFSU Organizational Behavior
Topic 3.jpg','U1560T1707039836.jpg','2024-02-04 17:43:56','2024-02-04
17:43:56',NULL,'1560',NULL,NULL),(6555,1560,'SWT','applicants_certifications/
U1560T1707039869.pdf','applicants_certifications','Child Safe Tourism in Digital
Platforms Feb 2021.pdf','U1560T1707039869.pdf','2024-02-04 17:44:29','2024-02-04
17:44:29',NULL,'1560',NULL,NULL),(6557,1560,'SWT','applicants_certifications/
U1560T1707039979.pdf','applicants_certifications','Architecture and Design for
Tourism Properties August 2020.pdf','U1560T1707039979.pdf','2024-02-04
17:46:19','2024-02-04 17:46:19',NULL,'1560',NULL,NULL),
(6558,1560,'SWT','applicants_certifications/
U1560T1707040020.pdf','applicants_certifications','The Practice of Professionalism
July 2020.pdf','U1560T1707040020.pdf','2024-02-04 17:47:00','2024-02-04
17:47:00',NULL,'1560',NULL,NULL),(6559,1560,'SWT','applicants_certifications/
U1560T1707040039.pdf','applicants_certifications','Advance Tourism Stat October
2020.pdf','U1560T1707040039.pdf','2024-02-04 17:47:19','2024-02-04
17:47:19',NULL,'1560',NULL,NULL),(6560,1560,'SWT','applicants_certifications/
U1560T1707040082.pdf','applicants_certifications','Filipino Brand of Service Sept.
2019.pdf','U1560T1707040082.pdf','2024-02-04 17:48:02','2024-02-04
17:48:02',NULL,'1560',NULL,NULL),(6561,1560,'SWT','applicants_certifications/
U1560T1707040585.pdf','applicants_certifications','Progressive Accreditation System
July 2019.pdf','U1560T1707040585.pdf','2024-02-04 17:56:25','2024-02-04
17:56:25',NULL,'1560',NULL,NULL),(6562,1560,'SWT','applicants_certifications/
U1560T1707040606.pdf','applicants_certifications','Tech Writing in Local Governance
March 2019.pdf','U1560T1707040606.pdf','2024-02-04 17:56:46','2024-02-04
17:56:46',NULL,'1560',NULL,NULL),(6563,1560,'SWT','applicants_certifications/
U1560T1707040634.pdf','applicants_certifications','PLLENRO NatCon March
2019.pdf','U1560T1707040634.pdf','2024-02-04 17:57:14','2024-02-04
17:57:14',NULL,'1560',NULL,NULL),(6564,1560,'SWT','applicants_certifications/
U1560T1707040693.pdf','applicants_certifications','Mun IEC Speakers Feb
2019.pdf','U1560T1707040693.pdf','2024-02-04 17:58:13','2024-02-04
17:58:13',NULL,'1560',NULL,NULL),
(6570,1862,'ELIGIBILITY','applicants_certifications/
U1862T1707042398.jpg','applicants_certifications','Document
36_13.jpg','U1862T1707042398.jpg','2024-02-04 18:26:38','2024-02-04
18:26:38',NULL,'1862',NULL,NULL),(6571,1862,'PDS','applicants_certifications/
U1862T1707042440.jpg','applicants_certifications','Document
36_4.jpg','U1862T1707042440.jpg','2024-02-04 18:27:20','2024-02-04
18:27:20',NULL,'1862',NULL,NULL),(6572,1862,'PDS','applicants_certifications/
U1862T1707042462.jpg','applicants_certifications','Document
36_5.jpg','U1862T1707042462.jpg','2024-02-04 18:27:42','2024-02-04
18:27:42',NULL,'1862',NULL,NULL),(6573,1862,'PDS','applicants_certifications/
U1862T1707042480.jpg','applicants_certifications','Document
36_7.jpg','U1862T1707042480.jpg','2024-02-04 18:28:00','2024-02-04
18:28:00',NULL,'1862',NULL,NULL),(6574,1862,'PDS','applicants_certifications/
U1862T1707042499.jpg','applicants_certifications','Document
36_8.jpg','U1862T1707042499.jpg','2024-02-04 18:28:19','2024-02-04
18:28:19',NULL,'1862',NULL,NULL),
(6575,1862,'ELIGIBILITY','applicants_certifications/
U1862T1707042534.jpg','applicants_certifications','Document
36_14.jpg','U1862T1707042534.jpg','2024-02-04 18:28:54','2024-02-04
18:28:54',NULL,'1862',NULL,NULL),(6576,1862,'SWT','applicants_certifications/
U1862T1707042557.jpg','applicants_certifications','Document
36_15.jpg','U1862T1707042557.jpg','2024-02-04 18:29:17','2024-02-04
18:29:17',NULL,'1862',NULL,NULL),(6577,1862,'SWT','applicants_certifications/
U1862T1707042573.jpg','applicants_certifications','Document
36_16.jpg','U1862T1707042573.jpg','2024-02-04 18:29:33','2024-02-04
18:29:33',NULL,'1862',NULL,NULL),(6578,1862,'COE','applicants_certifications/
U1862T1707042593.jpg','applicants_certifications','Document
36_18.jpg','U1862T1707042593.jpg','2024-02-04 18:29:53','2024-02-04
18:29:53',NULL,'1862',NULL,NULL),(6579,1862,'TOR','applicants_certifications/
U1862T1707042630.jpg','applicants_certifications','Document
36_9.jpg','U1862T1707042630.jpg','2024-02-04 18:30:30','2024-02-04
18:30:30',NULL,'1862',NULL,NULL),(6580,1862,'TOR','applicants_certifications/
U1862T1707042646.jpg','applicants_certifications','Document
36_11.jpg','U1862T1707042646.jpg','2024-02-04 18:30:46','2024-02-04
18:30:46',NULL,'1862',NULL,NULL),(6581,1862,'TOR','applicants_certifications/
U1862T1707042661.jpg','applicants_certifications','Document
36_12.jpg','U1862T1707042661.jpg','2024-02-04 18:31:01','2024-02-04
18:31:01',NULL,'1862',NULL,NULL),(6587,1861,'TOR','applicants_certifications/
U1861T1707050479.jpg','applicants_certifications','TOR_1.jpg','U1861T1707050479.jpg
','2024-02-04 20:41:19','2024-02-04 20:41:19',NULL,'1861',NULL,NULL),
(6589,1861,'TOR','applicants_certifications/
U1861T1707050541.jpg','applicants_certifications','TOR_2.jpg','U1861T1707050541.jpg
','2024-02-04 20:42:21','2024-02-04 20:42:21',NULL,'1861',NULL,NULL),
(6591,1861,'COE','applicants_certifications/
U1861T1707050602.docx','applicants_certifications','COE_FINAL_Lily.docx','U1861T170
7050602.docx','2024-02-04 20:43:22','2024-02-04 20:43:22',NULL,'1861',NULL,NULL),
(6593,1861,'ELIGIBILITY','applicants_certifications/
U1861T1707050675.jpg','applicants_certifications','Certificate of
Eligibility.jpg','U1861T1707050675.jpg','2024-02-04 20:44:35','2024-02-04
20:44:35',NULL,'1861',NULL,NULL),
(6595,1867,'ELIGIBILITY','applicants_certifications/
U1867T1707061023.pdf','applicants_certifications','PRC.pdf','U1867T1707061023.pdf',
'2024-02-04 23:37:03','2024-02-04 23:37:03',NULL,'1867',NULL,NULL),
(6596,1768,'SWT','applicants_certifications/
U1768T1707064499.pdf','applicants_certifications','Certificate of Trainings-1-
compressed.pdf','U1768T1707064499.pdf','2024-02-05 00:34:59','2024-02-05
00:34:59',NULL,'1768',NULL,NULL),
(6597,1741,'ELIGIBILITY','applicants_certifications/
U1741T1707087327.jpg','applicants_certifications','IMG_20240201_121610_282.jpg','U1
741T1707087327.jpg','2024-02-05 06:55:27','2024-02-05
06:55:27',NULL,'1741',NULL,NULL),
(6598,1741,'ELIGIBILITY','applicants_certifications/
U1741T1707087356.jpg','applicants_certifications','IMG_20240201_121538_499.jpg','U1
741T1707
087356.jpg','2024-02-05 06:55:56','2024-02-05 06:55:56',NULL,'1741',NULL,NULL),
(6599,1866,'ELIGIBILITY','applicants_certifications/
U1866T1707091736.jpg','applicants_certifications','17070916747848993107850396635440
.jpg','U1866T1707091736.jpg','2024-02-05 08:08:56','2024-02-05
08:08:56',NULL,'1866',NULL,NULL),
(6600,1866,'ELIGIBILITY','applicants_certifications/
U1866T1707091755.jpg','applicants_certifications','17070916747848993107850396635440
.jpg','U1866T1707091755.jpg','2024-02-05 08:09:15','2024-02-05
08:09:15',NULL,'1866',NULL,NULL),
(6601,1866,'ELIGIBILITY','applicants_certifications/
U1866T1707091918.jpg','applicants_certifications','1707091820984553904100958601410.
jpg','U1866T1707091918.jpg','2024-02-05 08:11:58','2024-02-05
08:11:58',NULL,'1866',NULL,NULL),(6602,1774,'COE','applicants_certifications/
U1774T1707093278.pdf','applicants_certifications','6 COEMP
(1).pdf','U1774T1707093278.pdf','2024-02-05 08:34:38','2024-02-05
08:34:38',NULL,'1774',NULL,NULL),
(6603,1774,'ELIGIBILITY','applicants_certifications/
U1774T1707093310.pdf','applicants_certifications','4
COELIG.pdf','U1774T1707093310.pdf','2024-02-05 08:35:10','2024-02-05
08:35:10',NULL,'1774',NULL,NULL),(6604,1774,'PDS','applicants_certifications/
U1774T1707093350.pdf','applicants_certifications','2.A
PDS.pdf','U1774T1707093350.pdf','2024-02-05 08:35:50','2024-02-05
08:35:50',NULL,'1774',NULL,NULL),(6605,1774,'SWT','applicants_certifications/
U1774T1707093720.pdf','applicants_certifications','5 CERT
(1).pdf','U1774T1707093720.pdf','2024-02-05 08:42:00','2024-02-05
08:42:00',NULL,'1774',NULL,NULL),(6606,1774,'TOR','applicants_certifications/
U1774T1707093851.pdf','applicants_certifications','3.
TOR.pdf','U1774T1707093851.pdf','2024-02-05 08:44:11','2024-02-05
08:44:11',NULL,'1774',NULL,NULL),(6607,1766,'PDS','applicants_certifications/
U1766T1707093917.xlsx','applicants_certifications','MY
PDS.xlsx','U1766T1707093917.xlsx','2024-02-05 08:45:17','2024-02-05
08:45:17',NULL,'1766',NULL,NULL),
(6608,1766,'ELIGIBILITY','applicants_certifications/
U1766T1707094465.pdf','applicants_certifications','LET
CERT.pdf','U1766T1707094465.pdf','2024-02-05 08:54:25','2024-02-05
08:54:25',NULL,'1766',NULL,NULL),(6609,1866,'PDS','applicants_certifications/
U1866T1707095223.xlsx','applicants_certifications','my pds DEO-
final.xlsx','U1866T1707095223.xlsx','2024-02-05 09:07:03','2024-02-05
09:07:03',NULL,'1866',NULL,NULL),(6611,681,'SWT','applicants_certifications/
U681T1707096934.jpg','applicants_certifications','Unearthing E-Sertipiko (6)
(1).jpg','U681T1707096934.jpg','2024-02-05 09:35:34','2024-02-05
09:35:34',NULL,'681',NULL,NULL),(6612,681,'PDS','applicants_certifications/
U681T1707097001.pdf','applicants_certifications','Work
Experience.pdf','U681T1707097001.pdf','2024-02-05 09:36:41','2024-02-05
09:36:41',NULL,'681',NULL,NULL),(6613,1275,'PDS','applicants_certifications/
U1275T1707097280.jpg','applicants_certifications','2024
PDS.jpg','U1275T1707097280.jpg','2024-02-05 09:41:20','2024-02-05
09:41:20',NULL,'1275',NULL,NULL),(6615,1828,'COE','applicants_certifications/
U1828T1707097798.pdf','applicants_certifications','2_Certificate of
Employment_Velasco, Adrian Chris P.pdf','U1828T1707097798.pdf','2024-02-05
09:49:58','2024-02-05 09:49:58',NULL,'1828',NULL,NULL),
(6617,1828,'ELIGIBILITY','applicants_certifications/
U1828T1707097920.pdf','applicants_certifications','4_Certificate of
Eligibility_Velasco,Adrian Chris P.pdf','U1828T1707097920.pdf','2024-02-05
09:52:00','2024-02-05 09:52:00',NULL,'1828',NULL,NULL),
(6618,1828,'PDS','applicants_certifications/
U1828T1707097944.pdf','applicants_certifications','5_Personal Data
Sheet_Velasco,Adrian Chris P.pdf','U1828T1707097944.pdf','2024-02-05
09:52:24','2024-02-05 09:52:24',NULL,'1828',NULL,NULL),
(6619,1869,'ELIGIBILITY','applicants_certifications/
U1869T1707098057.pdf','applicants_certifications','40628B33-6523-4045-B474-
3278F7509D84.pdf','U1869T1707098057.pdf','2024-02-05 09:54:17','2024-02-05
09:54:17',NULL,'1869',NULL,NULL),(6620,1867,'COE','applicants_certifications/
U1867T1707098165.pdf','applicants_certifications','COE.pdf','U1867T1707098165.pdf',
'2024-02-05 09:56:05','2024-02-05 09:56:05',NULL,'1867',NULL,NULL),
(6621,1867,'SWT','applicants_certifications/
U1867T1707098797.pdf','applicants_certifications','ELP.pdf','U1867T1707098797.pdf',
'2024-02-05 10:06:37','2024-02-05 10:06:37',NULL,'1867',NULL,NULL),
(6622,1828,'TOR','applicants_certifications/
U1828T1707098977.pdf','applicants_certifications','1_Transcript of Records_Velasco,
Adrian Chris P.pdf','U1828T1707098977.pdf','2024-02-05 10:09:37','2024-02-05
10:09:37',NULL,'1828',NULL,NULL),(6623,1828,'SWT','applicants_certifications/
U1828T1707099143.pdf','applicants_certifications','3_Seminar Workshop & Training
Certificates.pdf','U1828T1707099143.pdf','2024-02-05 10:12:23','2024-02-05
10:12:23',NULL,'1828',NULL,NULL),
(6624,1562,'ELIGIBILITY','applicants_certifications/
U1562T1707099814.pdf','applicants_certifications','Cert of
Eligibility.pdf','U1562T1707099814.pdf','2024-02-05 10:23:34','2024-02-05
10:23:34',NULL,'1562',NULL,NULL),(6625,1562,'COE','applicants_certifications/
U1562T1707099911.pdf','applicants_certifications','Service
Records.pdf','U1562T1707099911.pdf','2024-02-05 10:25:11','2024-02-05
10:25:11',NULL,'1562',NULL,NULL),(6626,1110,'SWT','applicants_certifications/
U1110T1707102913.jpg','applicants_certifications','cert.
recognition1.jpg','U1110T1707102913.jpg','2024-02-05 11:15:13','2024-02-05
11:15:13',NULL,'1110',NULL,NULL),(6627,1110,'SWT','applicants_certifications/
U1110T1707102968.jpg','applicants_certifications','cert.
recognition2.jpg','U1110T1707102968.jpg','2024-02-05 11:16:08','2024-02-05
11:16:08',NULL,'1110',NULL,NULL),(6628,1110,'SWT','applicants_certifications/
U1110T1707103007.jpg','applicants_certifications','cert.
recognition3.jpg','U1110T1707103007.jpg','2024-02-05 11:16:47','2024-02-05
11:16:47',NULL,'1110',NULL,NULL),(6629,1391,'COE','applicants_certifications/
U1391T1707105165.PDF','applicants_certifications','Certificate of
Employment_Leumae_Shine _Dulnuan.PDF','U1391T1707105165.PDF','2024-02-05
11:52:45','2024-02-05 11:52:45',NULL,'1391',NULL,NULL),
(6632,1842,'PDS','applicants_certifications/
U1842T1707105351.pdf','applicants_certifications','KIEZEL BACWO-
PDS.pdf','U1842T1707105351.pdf','2024-02-05 11:55:51','2024-02-05
11:55:51',NULL,'1842',NULL,NULL),(6633,1842,'COE','applicants_certifications/
U1842T1707105551.jpg','applicants_certifications','COE.jpg','U1842T1707105551.jpg',
'2024-02-05 11:59:11','2024-02-05 11:59:11',NULL,'1842',NULL,NULL),
(6634,1875,'TOR','applicants_certifications/
U1875T1707105664.pdf','applicants_certifications','Official Transcript of
Records.pdf','U1875T1707105664.pdf','2024-02-05 12:01:04','2024-02-05
12:01:04',NULL,'1875',NULL,NULL),
(6635,1875,'ELIGIBILITY','applicants_certifications/
U1875T1707105689.pdf','applicants_certifications','Certificate of
Eligibility.pdf','U1875T1707105689.pdf','2024-02-05 12:01:29','2024-02-05
12:01:29',NULL,'1875',NULL,NULL),(6636,1391,'SWT','applicants_certifications/
U1391T1707106326.pdf','applicants_certifications','Seminar Workshop_Training
Certificates_Leumae_Shine_Dulnuan.pdf','U1391T1707106326.pdf','2024-02-05
12:12:06','2024-02-05 12:12:06',NULL,'1391',NULL,NULL),
(6637,1861,'PDS','applicants_certifications/
U1861T1707106783.jpg','applicants_certifications','PDS_1.jpg','U1861T1707106783.jpg
','2024-02-05 12:19:43','2024-02-05 12:19:43',NULL,'1861',NULL,NULL),
(6638,1861,'PDS','applicants_certifications/
U1861T1707106800.jpg','applicants_certifications','PDS_2.jpg','U1861T1707106800.jpg
','2024-02-05 12:20:00','2024-02-05 12:20:00',NULL,'1861',NULL,NULL),
(6639,1861,'PDS','applicants_certifications/
U1861T1707106816.jpg','applicants_certifications','PDS_3.jpg','U1861T1707106816.jpg
','2024-02-05 12:20:16','2024-02-05 12:20:16',NULL,'1861',NULL,NULL),
(6640,1842,'SWT','applicants_certifications/
U1842T1707107044.jpg','applicants_certifications','certificate
1.jpg','U1842T1707107044.jpg','2024-02-05 12:24:04','2024-02-05
12:24:04',NULL,'1842',NULL,NULL),(6641,1842,'SWT','applicants_certifications/
U1842T1707107157.jpg','applicants_certifications','certificate
2.jpg','U1842T1707107157.jpg','2024-02-05 12:25:57','2024-02-05
12:25:57',NULL,'1842',NULL,NULL),(6643,1842,'SWT','applicants_certifications/
U1842T1707107202.jpg','applicants_certifications','certificate
3.jpg','U1842T1707107202.jpg','2024-02-05 12:26:42','2024-02-05
12:26:42',NULL,'1842',NULL,NULL),
(6644,1842,'ELIGIBILITY','applicants_certifications/
U1842T1707107340.jpg','applicants_certifications','CSE.jpg','U1842T1707107340.jpg',
'2024-02-05 12:29:00','2024-02-05 12:29:00',NULL,'1842',NULL,NULL),
(6645,1842,'TOR','applicants_certifications/
U1842T1707107506.pdf','applicants_certifications','Transcript-of-
Record.pdf','U1842T1707107506.pdf','2024-02-05 12:31:46','2024-02-05
12:31:46',NULL,'1842',NULL,NULL),(6647,1766,'SWT','applicants_certifications/
U1766T1707107835.pdf','applicants_certifications','cert2.pdf','U1766T1707107835.pdf
','2024-02-05 12:37:15','2024-02-05 12:37:15',NULL,'1766',NULL,NULL),
(6648,1766,'SWT','applicants_certifications/
U1766T1707107867.pdf','applicants_certifications','cert4.pdf','U1766T1707107867.pdf
','2024-02-05 12:37:47','2024-02-05 12:37:47',NULL,'1766',NULL,NULL),
(6649,1766,'SWT','applicants_certifications/
U1766T1707107910.pdf','applicants_certifications','cert1.pdf','U1766T1707107910.pdf
','2024-02-05 12:38:30','2024-02-05 12:38:30',NULL,'1766',NULL,NULL),
(6650,1766,'SWT','applicants_certifications/
U1766T1707107940.pdf','applicants_certifications','cert3.pdf','U1766T1707107940.pdf
','2024-02-05 12:39:00','2024-02-05 12:39:00',NULL,'1766',NULL,NULL),
(6653,1877,'TOR','applicants_certifications/
U1877T1707108867.pdf','applicants_certifications','OTR.pdf','U1877T1707108867.pdf',
'2024-02-05 12:54:27','2024-02-05 12:54:27',NULL,'1877',NULL,NULL),
(6654,1877,'COE','applicants_certifications/
U1877T1707109028.pdf','applicants_certifications','Certificate
of Employment.pdf','U1877T1707109028.pdf','2024-02-05 12:57:08','2024-02-05
12:57:08',NULL,'1877',NULL,NULL),(6655,1877,'SWT','applicants_certifications/
U1877T1707109079.pdf','applicants_certifications','Seminars and
Trainings.pdf','U1877T1707109079.pdf','2024-02-05 12:57:59','2024-02-05
12:57:59',NULL,'1877',NULL,NULL),
(6657,1877,'ELIGIBILITY','applicants_certifications/
U1877T1707109126.pdf','applicants_certifications','PRC
LICENSE.pdf','U1877T1707109126.pdf','2024-02-05 12:58:46','2024-02-05
12:58:46',NULL,'1877',NULL,NULL),(6658,1877,'PDS','applicants_certifications/
U1877T1707109174.pdf','applicants_certifications','PDS.pdf','U1877T1707109174.pdf',
'2024-02-05 12:59:34','2024-02-05 12:59:34',NULL,'1877',NULL,NULL),
(6659,1560,'TOR','applicants_certifications/
U1560T1707109271.pdf','applicants_certifications','TOR Bachelor\'s
Degree.pdf','U1560T1707109271.pdf','2024-02-05 13:01:11','2024-02-05
13:01:11',NULL,'1560',NULL,NULL),(6661,1560,'TOR','applicants_certifications/
U1560T1707109296.pdf','applicants_certifications','TOR
MPA.pdf','U1560T1707109296.pdf','2024-02-05 13:01:36','2024-02-05
13:01:36',NULL,'1560',NULL,NULL),
(6662,1560,'ELIGIBILITY','applicants_certifications/
U1560T1707109322.pdf','applicants_certifications','CSC
Eligiblity.pdf','U1560T1707109322.pdf','2024-02-05 13:02:02','2024-02-05
13:02:02',NULL,'1560',NULL,NULL),(6663,1560,'PDS','applicants_certifications/
U1560T1707109369.pdf','applicants_certifications','PDS.pdf','U1560T1707109369.pdf',
'2024-02-05 13:02:49','2024-02-05 13:02:49',NULL,'1560',NULL,NULL),
(6664,1560,'PDS','applicants_certifications/
U1560T1707109387.pdf','applicants_certifications','PDS last
sheet.pdf','U1560T1707109387.pdf','2024-02-05 13:03:07','2024-02-05
13:03:07',NULL,'1560',NULL,NULL),(6665,1560,'PDS','applicants_certifications/
U1560T1707109410.pdf','applicants_certifications','work experience
sheet.pdf','U1560T1707109410.pdf','2024-02-05 13:03:30','2024-02-05
13:03:30',NULL,'1560',NULL,NULL),(6666,1560,'PDS','applicants_certifications/
U1560T1707109442.pdf','applicants_certifications','IPCR.pdf','U1560T1707109442.pdf'
,'2024-02-05 13:04:02','2024-02-05 13:04:02',NULL,'1560',NULL,NULL),
(6667,1861,'PDS','applicants_certifications/
U1861T1707109483.jpg','applicants_certifications','PDS-
4.jpg','U1861T1707109483.jpg','2024-02-05 13:04:43','2024-02-05
13:04:43',NULL,'1861',NULL,NULL),(6668,1861,'PDS','applicants_certifications/
U1861T1707109504.docx','applicants_certifications','Application_Letter_(admin_assis
tant I).docx_Lily Joy Wigan.docx','U1861T1707109504.docx','2024-02-05
13:05:04','2024-02-05 13:05:04',NULL,'1861',NULL,NULL),
(6669,1861,'PDS','applicants_certifications/
U1861T1707109523.docx','applicants_certifications','Application_Letter_(admin_offic
er_I).docx_Lily Joy Wigan.docx','U1861T1707109523.docx','2024-02-05
13:05:23','2024-02-05 13:05:23',NULL,'1861',NULL,NULL),
(6670,1861,'PDS','applicants_certifications/
U1861T1707109543.docx','applicants_certifications','Application_Letter_(admin_offic
er_II)[1].docx-Lily Joy Wigan.docx','U1861T1707109543.docx','2024-02-05
13:05:43','2024-02-05 13:05:43',NULL,'1861',NULL,NULL),
(6677,1878,'TOR','applicants_certifications/
U1878T1707110005.pdf','applicants_certifications','TOR1.pdf','U1878T1707110005.pdf'
,'2024-02-05 13:13:25','2024-02-05 13:13:25',NULL,'1878',NULL,NULL),
(6678,1878,'TOR','applicants_certifications/
U1878T1707110090.pdf','applicants_certifications','TOR2.pdf','U1878T1707110090.pdf'
,'2024-02-05 13:14:50','2024-02-05 13:14:50',NULL,'1878',NULL,NULL),
(6680,1877,'SWT','applicants_certifications/
U1877T1707110170.pdf','applicants_certifications','Certificate
2.pdf','U1877T1707110170.pdf','2024-02-05 13:16:10','2024-02-05
13:16:10',NULL,'1877',NULL,NULL),(6681,1877,'SWT','applicants_certifications/
U1877T1707110187.pdf','applicants_certifications','Certificate
1.pdf','U1877T1707110187.pdf','2024-02-05 13:16:27','2024-02-05
13:16:27',NULL,'1877',NULL,NULL),(6682,1872,'TOR','applicants_certifications/
U1872T1707110436.pdf','applicants_certifications','TRANSCRIPT OF
RECORD.pdf','U1872T1707110436.pdf','2024-02-05 13:20:36','2024-02-05
13:20:36',NULL,'1872',NULL,NULL),(6683,1716,'TOR','applicants_certifications/
U1716T1707110757.pdf','applicants_certifications','OTR.pdf','U1716T1707110757.pdf',
'2024-02-05 13:25:57','2024-02-05 13:25:57',NULL,'1716',NULL,NULL),
(6684,1716,'COE','applicants_certifications/
U1716T1707110827.jpg','applicants_certifications','CERTIFICATE OF
EMPLOYMENT.jpg','U1716T1707110827.jpg','2024-02-05 13:27:07','2024-02-05
13:27:07',NULL,'1716',NULL,NULL),(6685,1872,'SWT','applicants_certifications/
U1872T1707111019.pdf','applicants_certifications','CERTIFICATES.pdf','U1872T1707111
019.pdf','2024-02-05 13:30:19','2024-02-05 13:30:19',NULL,'1872',NULL,NULL),
(6686,1716,'ELIGIBILITY','applicants_certifications/
U1716T1707111457.jpg','applicants_certifications','CERTIFICATE OF
ELIGIBILITY.jpg','U1716T1707111457.jpg','2024-02-05 13:37:37','2024-02-05
13:37:37',NULL,'1716',NULL,NULL),(6687,1716,'PDS','applicants_certifications/
U1716T1707111571.pdf','applicants_certifications','PDS.pdf','U1716T1707111571.pdf',
'2024-02-05 13:39:31','2024-02-05 13:39:31',NULL,'1716',NULL,NULL),
(6688,1766,'TOR','applicants_certifications/
U1766T1707111648.pdf','applicants_certifications','tr1.pdf','U1766T1707111648.pdf',
'2024-02-05 13:40:48','2024-02-05 13:40:48',NULL,'1766',NULL,NULL),
(6689,1766,'TOR','applicants_certifications/
U1766T1707111664.pdf','applicants_certifications','tr2.pdf','U1766T1707111664.pdf',
'2024-02-05 13:41:04','2024-02-05 13:41:04',NULL,'1766',NULL,NULL),
(6691,1766,'TOR','applicants_certifications/
U1766T1707111713.pdf','applicants_certifications','tr3.pdf','U1766T1707111713.pdf',
'2024-02-05 13:41:53','2024-02-05 13:41:53',NULL,'1766',NULL,NULL),
(6692,1766,'COE','applicants_certifications/
U1766T1707111752.pdf','applicants_certifications','Service
Record.pdf','U1766T1707111752.pdf','2024-02-05 13:42:32','2024-02-05
13:42:32',NULL,'1766',NULL,NULL),(6693,1869,'PDS','applicants_certifications/
U1869T1707112019.pdf','applicants_certifications','PDS_compressed.pdf','U1869T17071
12019.pdf','2024-02-05 13:46:59','2024-02-05 13:46:59',NULL,'1869',NULL,NULL),
(6694,1869,'TOR','applicants_certifications/
U1869T1707112139.pdf','applicants_certifications','1E520263-5908-4806-9CDF-
8A3B487A6245.pdf','U1869T1707112139.pdf','2024-02-05 13:48:59','2024-02-05
13:48:59',NULL,'1869',NULL,NULL),(6695,1406,'TOR','applicants_certifications/
U1406T1707112445.jpg','applicants_certifications','TOR-
Page1.jpg','U1406T1707112445.jpg','2024-02-05 13:54:05','2024-02-05
13:54:05',NULL,'1406',NULL,NULL),(6696,1406,'TOR','applicants_certifications/
U1406T1707112467.jpg','applicants_certifications','TOR-
Page2.jpg','U1406T1707112467.jpg','2024-02-05 13:54:27','2024-02-05
13:54:27',NULL,'1406',NULL,NULL),(6698,1406,'TOR','applicants_certifications/
U1406T1707112532.jpg','applicants_certifications','TOR-
Page3.jpg','U1406T1707112532.jpg','2024-02-05 13:55:32','2024-02-05
13:55:32',NULL,'1406',NULL,NULL),(6699,1406,'COE','applicants_certifications/
U1406T1707112566.pdf','applicants_certifications','Employment -
DENR.pdf','U1406T1707112566.pdf','2024-02-05 13:56:06','2024-02-05
13:56:06',NULL,'1406',NULL,NULL),(6700,1406,'COE','applicants_certifications/
U1406T1707112585.pdf','applicants_certifications','Employment -
PSA.pdf','U1406T1707112585.pdf','2024-02-05 13:56:25','2024-02-05
13:56:25',NULL,'1406',NULL,NULL),(6701,1716,'SWT','applicants_certifications/
U1716T1707112719.pdf','applicants_certifications','Certificate of
trainings.pdf','U1716T1707112719.pdf','2024-02-05 13:58:39','2024-02-05
13:58:39',NULL,'1716',NULL,NULL),(6702,1406,'PDS','applicants_certifications/
U1406T1707112801.jpg','applicants_certifications','PDS-
page1.jpg','U1406T1707112801.jpg','2024-02-05 14:00:01','2024-02-05
14:00:01',NULL,'1406',NULL,NULL),(6703,1406,'PDS','applicants_certifications/
U1406T1707112816.jpg','applicants_certifications','PDS-
page2.jpg','U1406T1707112816.jpg','2024-02-05 14:00:16','2024-02-05
14:00:16',NULL,'1406',NULL,NULL),(6704,1406,'PDS','applicants_certifications/
U1406T1707112832.jpg','applicants_certifications','PDS-
page3.jpg','U1406T1707112832.jpg','2024-02-05 14:00:32','2024-02-05
14:00:32',NULL,'1406',NULL,NULL),(6705,1406,'PDS','applicants_certifications/
U1406T1707112846.jpg','applicants_certifications','PDS-
page4.jpg','U1406T1707112846.jpg','2024-02-05 14:00:46','2024-02-05
14:00:46',NULL,'1406',NULL,NULL),(6706,1406,'PDS','applicants_certifications/
U1406T1707112860.jpg','applicants_certifications','PDS-
page5a.jpg','U1406T1707112860.jpg','2024-02-05 14:01:00','2024-02-05
14:01:00',NULL,'1406',NULL,NULL),(6707,1406,'PDS','applicants_certifications/
U1406T1707112876.jpg','applicants_certifications','PDS-
page5b.jpg','U1406T1707112876.jpg','2024-02-05 14:01:16','2024-02-05
14:01:16',NULL,'1406',NULL,NULL),(6708,1406,'PDS','applicants_certifications/
U1406T1707112894.jpg','applicants_certifications','PDS-
page5c.jpg','U1406T1707112894.jpg','2024-02-05 14:01:34','2024-02-05
14:01:34',NULL,'1406',NULL,NULL),(6709,1406,'SWT','applicants_certifications/
U1406T1707112944.jpg','applicants_certifications','8 Wired and Wireless Networking
Solution.jpg','U1406T1707112944.jpg','2024-02-05 14:02:24','2024-02-05
14:02:24',NULL,'1406',NULL,NULL),(6711,1391,'PDS','applicants_certifications/
U1391T1707113024.pdf','applicants_certifications','Personal Data Sheet_Work
Experience Sheet_Leumae_Dulnuan.pdf','U1391T1707113024.pdf','2024-02-05
14:03:44','2024-02-05 14:03:44',NULL,'1391',NULL,NULL),
(6712,1406,'SWT','applicants_certifications/
U1406T1707113058.jpg','applicants_certifications','9 Y4IT-
1.jpg','U1406T1707113058.jpg','2024-02-05 14:04:18','2024-02-05
14:04:18',NULL,'1406',NULL,NULL),(6713,1406,'SWT','applicants_certifications/
U1406T1707113083.jpg','applicants_certifications','9 Y4IT-
2.jpg','U1406T1707113083.jpg','2024-02-05 14:04:43','2024-02-05
14:04:43',NULL,'1406',NULL,NULL),(6714,1406,'SWT','applicants_certifications/
U1406T1707113099.jpg','applicants_certifications','10
Business Process Outsourcing and Cloud
Computing.jpg','U1406T1707113099.jpg','2024-02-05 14:04:59','2024-02-05
14:04:59',NULL,'1406',NULL,NULL),(6715,1406,'SWT','applicants_certifications/
U1406T1707113117.jpg','applicants_certifications','11 Population
Census.jpg','U1406T1707113117.jpg','2024-02-05 14:05:17','2024-02-05
14:05:17',NULL,'1406',NULL,NULL),(6716,1406,'SWT','applicants_certifications/
U1406T1707113143.jpg','applicants_certifications','12 Graphic
Design.jpg','U1406T1707113143.jpg','2024-02-05 14:05:43','2024-02-05
14:05:43',NULL,'1406',NULL,NULL),(6718,1406,'SWT','applicants_certifications/
U1406T1707113198.jpg','applicants_certifications','13 Financial
Management.jpg','U1406T1707113198.jpg','2024-02-05 14:06:38','2024-02-05
14:06:38',NULL,'1406',NULL,NULL),(6719,1406,'SWT','applicants_certifications/
U1406T1707113216.jpg','applicants_certifications','14 Basic Life
Support.jpg','U1406T1707113216.jpg','2024-02-05 14:06:56','2024-02-05
14:06:56',NULL,'1406',NULL,NULL),(6720,1406,'SWT','applicants_certifications/
U1406T1707113235.jpg','applicants_certifications','15 Documentation & Report
Writing.jpg','U1406T1707113235.jpg','2024-02-05 14:07:15','2024-02-05
14:07:15',NULL,'1406',NULL,NULL),(6721,1406,'SWT','applicants_certifications/
U1406T1707113255.jpg','applicants_certifications','16 Nursery Establishment &
Management.jpg','U1406T1707113255.jpg','2024-02-05 14:07:35','2024-02-05
14:07:35',NULL,'1406',NULL,NULL),(6723,1406,'SWT','applicants_certifications/
U1406T1707113269.jpg','applicants_certifications','17 Survey, Mapping, and
Planning.jpg','U1406T1707113269.jpg','2024-02-05 14:07:49','2024-02-05
14:07:49',NULL,'1406',NULL,NULL),(6724,1406,'SWT','applicants_certifications/
U1406T1707113315.jpg','applicants_certifications','18 Organizational Management and
Planning.jpg','U1406T1707113315.jpg','2024-02-05 14:08:35','2024-02-05
14:08:35',NULL,'1406',NULL,NULL),(6725,1406,'SWT','applicants_certifications/
U1406T1707113330.jpg','applicants_certifications','19 Cash Flow
Management.jpg','U1406T1707113330.jpg','2024-02-05 14:08:50','2024-02-05
14:08:50',NULL,'1406',NULL,NULL),(6726,1406,'SWT','applicants_certifications/
U1406T1707113369.jpg','applicants_certifications','20 Audit and Inventory
Skills.jpg','U1406T1707113369.jpg','2024-02-05 14:09:29','2024-02-05
14:09:29',NULL,'1406',NULL,NULL),(6727,1153,'COE','applicants_certifications/
U1153T1707113382.pdf','applicants_certifications','COE0001.pdf','U1153T1707113382.p
df','2024-02-05 14:09:42','2024-02-05 14:09:42',NULL,'1153',NULL,NULL),
(6728,1406,'SWT','applicants_certifications/
U1406T1707113385.jpg','applicants_certifications','21 Drone Aerial Mapping and
Orthophoto Processing.jpg','U1406T1707113385.jpg','2024-02-05 14:09:45','2024-02-05
14:09:45',NULL,'1406',NULL,NULL),(6729,1406,'SWT','applicants_certifications/
U1406T1707113400.jpg','applicants_certifications','22 ENR Laws and
Policies.jpg','U1406T1707113400.jpg','2024-02-05 14:10:00','2024-02-05
14:10:00',NULL,'1406',NULL,NULL),(6730,1153,'SWT','applicants_certifications/
U1153T1707113434.pdf','applicants_certifications','certificate.pdf','U1153T17071134
34.pdf','2024-02-05 14:10:34','2024-02-05 14:10:34',NULL,'1153',NULL,NULL),
(6731,1406,'SWT','applicants_certifications/
U1406T1707113440.jpg','applicants_certifications','23 Conflict
Resolution.jpg','U1406T1707113440.jpg','2024-02-05 14:10:40','2024-02-05
14:10:40',NULL,'1406',NULL,NULL),(6732,1406,'SWT','applicants_certifications/
U1406T1707113457.jpg','applicants_certifications','24 Org
Strengthening.jpg','U1406T1707113457.jpg','2024-02-05 14:10:57','2024-02-05
14:10:57',NULL,'1406',NULL,NULL),(6733,1406,'SWT','applicants_certifications/
U1406T1707113481.jpg','applicants_certifications','25 Business
Processing.jpg','U1406T1707113481.jpg','2024-02-05 14:11:21','2024-02-05
14:11:21',NULL,'1406',NULL,NULL),
(6734,1153,'ELIGIBILITY','applicants_certifications/
U1153T1707113959.pdf','applicants_certifications',' CERTIFICATE OF
ELIGIBILITY.pdf','U1153T1707113959.pdf','2024-02-05 14:19:19','2024-02-05
14:19:19',NULL,'1153',NULL,NULL),(6735,1406,'SWT','applicants_certifications/
U1406T1707114022.jpg','applicants_certifications','Cert of Recognition-
DENR3.jpg','U1406T1707114022.jpg','2024-02-05 14:20:22','2024-02-05
14:20:22',NULL,'1406',NULL,NULL),(6736,1560,'SWT','applicants_certifications/
U1560T1707114025.pdf','applicants_certifications','Addressing the Expectations of
Online Customers August 2020.pdf','U1560T1707114025.pdf','2024-02-05
14:20:25','2024-02-05 14:20:25',NULL,'1560',NULL,NULL),
(6739,1406,'SWT','applicants_certifications/
U1406T1707114078.jpg','applicants_certifications','Cert of Recognition -
DepEd.jpg','U1406T1707114078.jpg','2024-02-05 14:21:18','2024-02-05
14:21:18',NULL,'1406',NULL,NULL),(6740,1560,'SWT','applicants_certifications/
U1560T1707114086.pdf','applicants_certifications','Tourism and Hospitality
Enterprise Recovery July 2020.pdf','U1560T1707114086.pdf','2024-02-05
14:21:26','2024-02-05 14:21:26',NULL,'1560',NULL,NULL),
(6741,1406,'SWT','applicants_certifications/
U1406T1707114095.jpg','applicants_certifications','Cert of Recognition -
DENR2.jpg','U1406T1707114095.jpg','2024-02-05 14:21:35','2024-02-05
14:21:35',NULL,'1406',NULL,NULL),(6742,1406,'SWT','applicants_certifications/
U1406T1707114108.jpg','applicants_certifications','Cert of Recognition -
DENR1.jpg','U1406T1707114108.jpg','2024-02-05 14:21:48','2024-02-05
14:21:48',NULL,'1406',NULL,NULL),(6743,1560,'SWT','applicants_certifications/
U1560T1707114115.pdf','applicants_certifications','Addressing the Expectations of
Online Customers August 2020.pdf','U1560T1707114115.pdf','2024-02-05
14:21:55','2024-02-05 14:21:55',NULL,'1560',NULL,NULL),
(6744,1406,'SWT','applicants_certifications/
U1406T1707114122.jpg','applicants_certifications','Cert of Appreciation -
TESDA.jpg','U1406T1707114122.jpg','2024-02-05 14:22:02','2024-02-05
14:22:02',NULL,'1406',NULL,NULL),(6745,1560,'SWT','applicants_certifications/
U1560T1707114133.pdf','applicants_certifications','Best Approaches to Writing
Effective Business Letters August 2020.pdf','U1560T1707114133.pdf','2024-02-05
14:22:13','2024-02-05 14:22:13',NULL,'1560',NULL,NULL),
(6746,1406,'SWT','applicants_certifications/
U1406T1707114140.jpg','applicants_certifications','Cert of Appreciation - BLGU
Jucbong.jpg','U1406T1707114140.jpg','2024-02-05 14:22:20','2024-02-05
14:22:20',NULL,'1406',NULL,NULL),(6747,1560,'SWT','applicants_certifications/
U1560T1707114154.pdf','applicants_certifications','Bangon Turismo Positive
Behaviors During Pandemic Sept 2020.pdf','U1560T1707114154.pdf','2024-02-05
14:22:34','2024-02-05 14:22:34',NULL,'1560',NULL,NULL),
(6748,1406,'SWT','applicants_certifications/
U1406T1707114166.jpg','applicants_certifications','Recommendation -
DENR.jpg','U1406T1707114166.jpg','2024-02-05 14:22:46','2024-02-05
14:22:46',NULL,'1406',NULL,NULL),(6749,1560,'SWT','applicants_certifications/
U1560T1707114181.pdf','applicants_certifications','Agroforestry CIFOR CRAF Oct
2021.pdf','U1560T1707114181.pdf','2024-02-05 14:23:01','2024-02-05
14:23:01',NULL,'1560',NULL,NULL),(6750,1406,'SWT','applicants_certifications/
U1406T1707114190.jpg','applicants_certifications','Loyalty Award-
2.jpg','U1406T1707114190.jpg','2024-02-05 14:23:10','2024-02-05
14:23:10',NULL,'1406',NULL,NULL),(6751,1406,'SWT','applicants_certifications/
U1406T1707114203.jpg','applicants_certifications','Loyalty Award-
1.jpg','U1406T1707114203.jpg','2024-02-05 14:23:23','2024-02-05
14:23:23',NULL,'1406',NULL,NULL),(6757,1153,'TOR','applicants_certifications/
U1153T1707114833.pdf','applicants_certifications','OTR.pdf','U1153T1707114833.pdf',
'2024-02-05 14:33:53','2024-02-05 14:33:53',NULL,'1153',NULL,NULL),
(6758,1872,'ELIGIBILITY','applicants_certifications/
U1872T1707114910.pdf','applicants_certifications','LICENSE.pdf','U1872T1707114910.p
df','2024-02-05 14:35:10','2024-02-05 14:35:10',NULL,'1872',NULL,NULL),
(6759,1872,'PDS','applicants_certifications/
U1872T1707114944.pdf','applicants_certifications','Personal Data
Sheet.pdf','U1872T1707114944.pdf','2024-02-05 14:35:44','2024-02-05
14:35:44',NULL,'1872',NULL,NULL),(6760,1872,'COE','applicants_certifications/
U1872T1707114971.pdf','applicants_certifications','WORK
EXPERIENCE.pdf','U1872T1707114971.pdf','2024-02-05 14:36:11','2024-02-05
14:36:11',NULL,'1872',NULL,NULL),(6761,1153,'PDS','applicants_certifications/
U1153T1707115940.pdf','applicants_certifications','PDS AND WORK EXPERIENCE
SHEET.pdf','U1153T1707115940.pdf','2024-02-05 14:52:20','2024-02-05
14:52:20',NULL,'1153',NULL,NULL),(6762,1882,'SWT','applicants_certifications/
U1882T1707118575.pdf','applicants_certifications','cert.pdf','U1882T1707118575.pdf'
,'2024-02-05 15:36:15','2024-02-05 15:36:15',NULL,'1882',NULL,NULL),
(6763,1882,'SWT','applicants_certifications/
U1882T1707118611.pdf','applicants_certifications','orca_share_media1706787046367_71
58783735728134293.pdf','U1882T1707118611.pdf','2024-02-05 15:36:51','2024-02-05
15:36:51',NULL,'1882',NULL,NULL),
(6764,1882,'ELIGIBILITY','applicants_certifications/
U1882T1707118937.pdf','applicants_certifications','license.pdf','U1882T1707118937.p
df','2024-02-05 15:42:17','2024-02-05 15:42:17',NULL,'1882',NULL,NULL),
(6765,1882,'COE','applicants_certifications/
U1882T1707119457.pdf','applicants_certifications','work experience
sheet.pdf','U1882T1707119457.pdf','2024-02-05 15:50:57','2024-02-05
15:50:57',NULL,'1882',NULL,NULL),(6766,1110,'PDS','applicants_certifications/
U1110T1707120413.jpg','applicants_certifications','pds1.jpg','U1110T1707120413.jpg'
,'2024-02-05 16:06:53','2024-02-05 16:06:53',NULL,'1110',NULL,NULL),
(6767,1110,'PDS','applicants_certifications/
U1110T1707120431.jpg','applicants_certifications','pds2.jpg','U1110T1707120431.jpg'
,'2024-02-05 16:07:11','2024-02-05 16:07:11',NULL,'1110',NULL,NULL),
(6768,1110,'PDS','applicants_certifications/
U1110T1707120447.jpg','applicants_certifications','pds3.jpg','U1110T1707120447.jpg'
,'2024-02-05 16:07:27','2024-02-05
16:07:27',NULL,'1110',NULL,NULL),(6769,1110,'PDS','applicants_certifications/
U1110T1707120464.jpg','applicants_certifications','pds4.jpg','U1110T1707120464.jpg'
,'2024-02-05 16:07:44','2024-02-05 16:07:44',NULL,'1110',NULL,NULL),
(6770,1110,'SWT','applicants_certifications/
U1110T1707120498.jpg','applicants_certifications','duties& responsibilities
1.jpg','U1110T1707120498.jpg','2024-02-05 16:08:18','2024-02-05
16:08:18',NULL,'1110',NULL,NULL),(6771,1110,'SWT','applicants_certifications/
U1110T1707120518.jpg','applicants_certifications','duties&
responsibilities2.jpg','U1110T1707120518.jpg','2024-02-05 16:08:38','2024-02-05
16:08:38',NULL,'1110',NULL,NULL),(6772,1110,'SWT','applicants_certifications/
U1110T1707120536.jpg','applicants_certifications','duties &
responsibilities3.jpg','U1110T1707120536.jpg','2024-02-05 16:08:56','2024-02-05
16:08:56',NULL,'1110',NULL,NULL),(6773,1884,'TOR','applicants_certifications/
U1884T1707120977.pdf','applicants_certifications','OTR
Bachelor.pdf','U1884T1707120977.pdf','2024-02-05 16:16:17','2024-02-05
16:16:17',NULL,'1884',NULL,NULL),(6774,1867,'PDS','applicants_certifications/
U1867T1707121002.pdf','applicants_certifications','PDS
P.2.pdf','U1867T1707121002.pdf','2024-02-05 16:16:42','2024-02-05
16:16:42',NULL,'1867',NULL,NULL),(6776,1884,'TOR','applicants_certifications/
U1884T1707121076.pdf','applicants_certifications','OTR
MAED.pdf','U1884T1707121076.pdf','2024-02-05 16:17:56','2024-02-05
16:17:56',NULL,'1884',NULL,NULL),(6777,1867,'PDS','applicants_certifications/
U1867T1707121195.pdf','applicants_certifications','PDS
P.1.pdf','U1867T1707121195.pdf','2024-02-05 16:19:55','2024-02-05
16:19:55',NULL,'1867',NULL,NULL),
(6778,1884,'ELIGIBILITY','applicants_certifications/
U1884T1707121277.pdf','applicants_certifications','Rating.pdf','U1884T1707121277.pd
f','2024-02-05 16:21:17','2024-02-05 16:21:17',NULL,'1884',NULL,NULL),
(6779,1882,'TOR','applicants_certifications/
U1882T1707121394.pdf','applicants_certifications','13.pdf','U1882T1707121394.pdf','
2024-02-05 16:23:14','2024-02-05 16:23:14',NULL,'1882',NULL,NULL),
(6781,1882,'TOR','applicants_certifications/
U1882T1707121414.pdf','applicants_certifications','14.pdf','U1882T1707121414.pdf','
2024-02-05 16:23:34','2024-02-05 16:23:34',NULL,'1882',NULL,NULL),
(6782,1882,'TOR','applicants_certifications/
U1882T1707121443.pdf','applicants_certifications','15.pdf','U1882T1707121443.pdf','
2024-02-05 16:24:03','2024-02-05 16:24:03',NULL,'1882',NULL,NULL),
(6783,1884,'COE','applicants_certifications/
U1884T1707121448.pdf','applicants_certifications','Employment
Ifsu.pdf','U1884T1707121448.pdf','2024-02-05 16:24:08','2024-02-05
16:24:08',NULL,'1884',NULL,NULL),(6784,1882,'TOR','applicants_certifications/
U1882T1707121464.pdf','applicants_certifications','Document
12.pdf','U1882T1707121464.pdf','2024-02-05 16:24:24','2024-02-05
16:24:24',NULL,'1882',NULL,NULL),(6785,1884,'COE','applicants_certifications/
U1884T1707121644.pdf','applicants_certifications','Employment
DepEd.pdf','U1884T1707121644.pdf','2024-02-05 16:27:24','2024-02-05
16:27:24',NULL,'1884',NULL,NULL),(6786,1884,'COE','applicants_certifications/
U1884T1707121764.pdf','applicants_certifications','Employment
PNP.pdf','U1884T1707121764.pdf','2024-02-05 16:29:24','2024-02-05
16:29:24',NULL,'1884',NULL,NULL),(6787,1882,'PDS','applicants_certifications/
U1882T1707121933.pdf','applicants_certifications','Document
13.pdf','U1882T1707121933.pdf','2024-02-05 16:32:13','2024-02-05
16:32:13',NULL,'1882',NULL,NULL),(6788,1882,'PDS','applicants_certifications/
U1882T1707121960.pdf','applicants_certifications','Document
14.pdf','U1882T1707121960.pdf','2024-02-05 16:32:40','2024-02-05
16:32:40',NULL,'1882',NULL,NULL),(6789,1884,'PDS','applicants_certifications/
U1884T1707121975.pdf','applicants_certifications','PDS.pdf','U1884T1707121975.pdf',
'2024-02-05 16:32:55','2024-02-05 16:32:55',NULL,'1884',NULL,NULL),
(6790,1882,'PDS','applicants_certifications/
U1882T1707122004.pdf','applicants_certifications','Document
15.pdf','U1882T1707122004.pdf','2024-02-05 16:33:24','2024-02-05
16:33:24',NULL,'1882',NULL,NULL),(6791,1882,'PDS','applicants_certifications/
U1882T1707122047.pdf','applicants_certifications','Document
16.pdf','U1882T1707122047.pdf','2024-02-05 16:34:07','2024-02-05
16:34:07',NULL,'1882',NULL,NULL),(6792,1884,'SWT','applicants_certifications/
U1884T1707122752.pdf','applicants_certifications','Basic Computer
Training.pdf','U1884T1707122752.pdf','2024-02-05 16:45:52','2024-02-05
16:45:52',NULL,'1884',NULL,NULL),(6793,1884,'SWT','applicants_certifications/
U1884T1707126103.pdf','applicants_certifications','BHRMRT
Training.pdf','U1884T1707126103.pdf','2024-02-05 17:41:43','2024-02-05
17:41:43',NULL,'1884',NULL,NULL),(6794,1884,'SWT','applicants_certifications/
U1884T1707126139.pdf','applicants_certifications','NGIS
Seminar.pdf','U1884T1707126139.pdf','2024-02-05 17:42:19','2024-02-05
17:42:19',NULL,'1884',NULL,NULL),(6796,1884,'SWT','applicants_certifications/
U1884T1707126266.pdf','applicants_certifications','GAD
Seminar.pdf','U1884T1707126266.pdf','2024-02-05 17:44:26','2024-02-05
17:44:26',NULL,'1884',NULL,NULL),(6797,1884,'SWT','applicants_certifications/
U1884T1707126344.pdf','applicants_certifications','Technical Report
Writing.pdf','U1884T1707126344.pdf','2024-02-05 17:45:44','2024-02-05
17:45:44',NULL,'1884',NULL,NULL),(6800,1452,'PDS','applicants_certifications/
U1452T1707126411.jpg','applicants_certifications','PDS1.jpg','U1452T1707126411.jpg'
,'2024-02-05 17:46:51','2024-02-05 17:46:51',NULL,'1452',NULL,NULL),
(6801,1452,'PDS','applicants_certifications/
U1452T1707126431.jpg','applicants_certifications','PDS2.jpg','U1452T1707126431.jpg'
,'2024-02-05 17:47:11','2024-02-05 17:47:11',NULL,'1452',NULL,NULL),
(6802,1452,'PDS','applicants_certifications/
U1452T1707126455.jpg','applicants_certifications','PDS3.jpg','U1452T1707126455.jpg'
,'2024-02-05 17:47:35','2024-02-05 17:47:35',NULL,'1452',NULL,NULL),
(6803,1452,'PDS','applicants_certifications/
U1452T1707126480.jpg','applicants_certifications','PDS4.jpg','U1452T1707126480.jpg'
,'2024-02-05 17:48:00','2024-02-05 17:48:00',NULL,'1452',NULL,NULL),
(6804,1871,'TOR','applicants_certifications/
U1871T1707126505.jpg','applicants_certifications','OTR1_VMPINEDA.jpg','U1871T170712
6505.jpg','2024-02-05 17:48:25','2024-02-05 17:48:25',NULL,'1871',NULL,NULL),
(6805,1871,'TOR','applicants_certifications/
U1871T1707126540.jpg','applicants_certifications','OTR2_VMPINEDA.jpg','U1871T170712
6540.jpg','2024-02-05 17:49:00','2024-02-05 17:49:00',NULL,'1871',NULL,NULL),
(6807,1452,'PDS','applicants_certifications/
U1452T1707126567.pdf','applicants_certifications','Work Experience
Sheet.pdf1.pdf','U1452T1707126567.pdf','2024-02-05 17:49:27','2024-02-05
17:49:27',NULL,'1452',NULL,NULL),
(6809,1452,'ELIGIBILITY','applicants_certifications/
U1452T1707126672.jpg','applicants_certifications','Certificate of
Eligibility.jpg','U1452T1707126672.jpg','2024-02-05 17:51:12','2024-02-05
17:51:12',NULL,'1452',NULL,NULL),
(6810,1871,'ELIGIBILITY','applicants_certifications/
U1871T1707126696.jpg','applicants_certifications','PRC_LICENSE_VMPINEDA.jpg','U1871
T1707126696.jpg','2024-02-05 17:51:36','2024-02-05
17:51:36',NULL,'1871',NULL,NULL),(6811,1884,'SWT','applicants_certifications/
U1884T1707126772.pdf','applicants_certifications','bpat
seminar.pdf','U1884T1707126772.pdf','2024-02-05 17:52:52','2024-02-05
17:52:52',NULL,'1884',NULL,NULL),(6812,1871,'PDS','applicants_certifications/
U1871T1707127140.jpeg','applicants_certifications','PDS1_VMPINEDA.jpeg','U1871T1707
127140.jpeg','2024-02-05 17:59:00','2024-02-05 17:59:00',NULL,'1871',NULL,NULL),
(6814,1871,'PDS','applicants_certifications/
U1871T1707127185.jpeg','applicants_certifications','PDS2_VMPINEDA.jpeg','U1871T1707
127185.jpeg','2024-02-05 17:59:45','2024-02-05 17:59:45',NULL,'1871',NULL,NULL),
(6815,1871,'PDS','applicants_certifications/
U1871T1707127208.jpeg','applicants_certifications','PDS3_VMPINEDA.jpeg','U1871T1707
127208.jpeg','2024-02-05 18:00:08','2024-02-05 18:00:08',NULL,'1871',NULL,NULL),
(6816,1871,'PDS','applicants_certifications/
U1871T1707127227.jpeg','applicants_certifications','PDS4_VMPINEDA.jpeg','U1871T1707
127227.jpeg','2024-02-05 18:00:27','2024-02-05 18:00:27',NULL,'1871',NULL,NULL),
(6817,1871,'PDS','applicants_certifications/
U1871T1707127247.jpeg','applicants_certifications','WES_VMPINEDA.jpeg','U1871T17071
27247.jpeg','2024-02-05 18:00:47','2024-02-05 18:00:47',NULL,'1871',NULL,NULL),
(6818,1871,'COE','applicants_certifications/
U1871T1707127655.pdf','applicants_certifications','COE_&_SR_VMPINEDA.pdf','U1871T17
07127655.pdf','2024-02-05 18:07:35','2024-02-05 18:07:35',NULL,'1871',NULL,NULL),
(6819,1071,'ELIGIBILITY','applicants_certifications/
U1071T1707127704.pdf','applicants_certifications','BallatongLobelina_CE.pdf','U1071
T1707127704.pdf','2024-02-05 18:08:24','2024-02-05
18:08:24',NULL,'1071',NULL,NULL),
(6821,1871,'ELIGIBILITY','applicants_certifications/
U1871T1707128106.jpg','applicants_certifications','RATING
_VMPINEDA.jpg','U1871T1707128106.jpg','2024-02-05 18:15:06','2024-02-05
18:15:06',NULL,'1871',NULL,NULL),(6822,1871,'SWT','applicants_certifications/
U1871T1707129428.jpg','applicants_certifications','Cert1_VMPINEDA.jpg','U1871T17071
29428.jpg','2024-02-05 18:37:08','2024-02-05 18:37:08',NULL,'1871',NULL,NULL),
(6823,1871,'SWT','applicants_certifications/
U1871T1707129457.jpg','applicants_certifications','Cert2_VMPINEDA.jpg','U1871T17071
29457.jpg','2024-02-05 18:37:37','2024-02-05 18:37:37',NULL,'1871',NULL,NULL),
(6824,1871,'SWT','applicants_certifications/
U1871T1707129477.jpg','applicants_certifications','Cert3_VMPINEDA.jpg','U1871T17071
29477.jpg','2024-02-05 18:37:57','2024-02-05 18:37:57',NULL,'1871',NULL,NULL),
(6825,1871,'SWT','applicants_certifications/
U1871T1707129496.jpg','applicants_certifications','Cert4_VMPIEDA.jpg','U1871T170712
9496.jpg','2024-02-05 18:38:16','2024-02-05 18:38:16',NULL,'1871',NULL,NULL),
(6826,1871,'SWT','applicants_certifications/
U1871T1707129517.jpg','applicants_certifications','Cert5_VMPINEDA.jpg','U1871T17071
29
517.jpg','2024-02-05 18:38:37','2024-02-05 18:38:37',NULL,'1871',NULL,NULL),
(6827,1871,'SWT','applicants_certifications/
U1871T1707129546.jpg','applicants_certifications','Cert9_VMPINEDA.jpg','U1871T17071
29546.jpg','2024-02-05 18:39:06','2024-02-05 18:39:06',NULL,'1871',NULL,NULL),
(6828,1871,'SWT','applicants_certifications/
U1871T1707129566.jpg','applicants_certifications','Cert10_VMPINEDA.jpg','U1871T1707
129566.jpg','2024-02-05 18:39:26','2024-02-05 18:39:26',NULL,'1871',NULL,NULL),
(6829,1871,'COE','applicants_certifications/
U1871T1707129978.jpg','applicants_certifications','COE_SJS_VMPINEDA.jpg','U1871T170
7129978.jpg','2024-02-05 18:46:18','2024-02-05 18:46:18',NULL,'1871',NULL,NULL),
(6830,1871,'COE','applicants_certifications/
U1871T1707129997.jpg','applicants_certifications','COE_SGIA_VMPINEDA.jpg','U1871T17
07129997.jpg','2024-02-05 18:46:37','2024-02-05 18:46:37',NULL,'1871',NULL,NULL),
(6831,1874,'TOR','applicants_certifications/
U1874T1707130103.pdf','applicants_certifications','BASTOR_TOR.pdf','U1874T170713010
3.pdf','2024-02-05 18:48:23','2024-02-05 18:48:23',NULL,'1874',NULL,NULL),
(6832,1874,'COE','applicants_certifications/
U1874T1707130381.pdf','applicants_certifications','BASTOR_COE.pdf','U1874T170713038
1.pdf','2024-02-05 18:53:01','2024-02-05 18:53:01',NULL,'1874',NULL,NULL),
(6834,1874,'SWT','applicants_certifications/
U1874T1707130584.jpg','applicants_certifications','BASTOR_CERT.01.jpg','U1874T17071
30584.jpg','2024-02-05 18:56:24','2024-02-05 18:56:24',NULL,'1874',NULL,NULL),
(6835,1887,'COE','applicants_certifications/
U1887T1707130590.jpg','applicants_certifications','410243818_835072571641741_283949
6820982841979_n.jpg','U1887T1707130590.jpg','2024-02-05 18:56:30','2024-02-05
18:56:30',NULL,'1887',NULL,NULL),(6836,1874,'SWT','applicants_certifications/
U1874T1707130622.jpg','applicants_certifications','BASTOR_CERT02.jpg','U1874T170713
0622.jpg','2024-02-05 18:57:02','2024-02-05 18:57:02',NULL,'1874',NULL,NULL),
(6837,1874,'SWT','applicants_certifications/
U1874T1707130661.jpg','applicants_certifications','BASTOR_CERT.03.jpg','U1874T17071
30661.jpg','2024-02-05 18:57:41','2024-02-05 18:57:41',NULL,'1874',NULL,NULL),
(6838,1874,'SWT','applicants_certifications/
U1874T1707130697.jpg','applicants_certifications','BASTOR_CERT.04.jpg','U1874T17071
30697.jpg','2024-02-05 18:58:17','2024-02-05 18:58:17',NULL,'1874',NULL,NULL),
(6839,1874,'SWT','applicants_certifications/
U1874T1707130729.jpg','applicants_certifications','BASTOR_CERT.05.jpg','U1874T17071
30729.jpg','2024-02-05 18:58:49','2024-02-05 18:58:49',NULL,'1874',NULL,NULL),
(6840,1874,'ELIGIBILITY','applicants_certifications/
U1874T1707130774.jpg','applicants_certifications','CS
ELIGIBILTY_1.jpg','U1874T1707130774.jpg','2024-02-05 18:59:34','2024-02-05
18:59:34',NULL,'1874',NULL,NULL),(6841,1887,'TOR','applicants_certifications/
U1887T1707130918.pdf','applicants_certifications','CamScanner-02-05-2024-
18.57.pdf','U1887T1707130918.pdf','2024-02-05 19:01:58','2024-02-05
19:01:58',NULL,'1887',NULL,NULL),(6842,1874,'PDS','applicants_certifications/
U1874T1707132246.jpg','applicants_certifications','BASTOR_PDS Pg.
01_1.jpg','U1874T1707132246.jpg','2024-02-05 19:24:06','2024-02-05
19:24:06',NULL,'1874',NULL,NULL),(6843,1874,'PDS','applicants_certifications/
U1874T1707132284.jpg','applicants_certifications','BASTOR_PDS
Pg.02_1.jpg','U1874T1707132284.jpg','2024-02-05 19:24:44','2024-02-05
19:24:44',NULL,'1874',NULL,NULL),(6844,1874,'PDS','applicants_certifications/
U1874T1707132310.jpg','applicants_certifications','BASTOR_PDS
Pg.03_1.jpg','U1874T1707132310.jpg','2024-02-05 19:25:10','2024-02-05
19:25:10',NULL,'1874',NULL,NULL),(6845,1874,'PDS','applicants_certifications/
U1874T1707132358.jpg','applicants_certifications','BASTOR_PDS
Pg.04_1.jpg','U1874T1707132358.jpg','2024-02-05 19:25:58','2024-02-05
19:25:58',NULL,'1874',NULL,NULL),
(6846,1887,'ELIGIBILITY','applicants_certifications/
U1887T1707132802.jpg','applicants_certifications','422855477_1309782866322322_44462
0540071131619_n.jpg','U1887T1707132802.jpg','2024-02-05 19:33:22','2024-02-05
19:33:22',NULL,'1887',NULL,NULL),(6847,1887,'SWT','applicants_certifications/
U1887T1707133103.pdf','applicants_certifications','CamScanner-02-05-2024-
19.34.pdf','U1887T1707133103.pdf','2024-02-05 19:38:23','2024-02-05
19:38:23',NULL,'1887',NULL,NULL),(6848,1887,'PDS','applicants_certifications/
U1887T1707133282.pdf','applicants_certifications','CamScanner-02-05-2024-
19.39.pdf','U1887T1707133282.pdf','2024-02-05 19:41:22','2024-02-05
19:41:22',NULL,'1887',NULL,NULL),
(6850,1760,'ELIGIBILITY','applicants_certifications/
U1760T1707135085.pdf','applicants_certifications','CS
Eligibilities.pdf','U1760T1707135085.pdf','2024-02-05 20:11:25','2024-02-05
20:11:25',NULL,'1760',NULL,NULL),
(6851,1760,'ELIGIBILITY','applicants_certifications/
U1760T1707135144.pdf','applicants_certifications','PRC
Certification.pdf','U1760T1707135144.pdf','2024-02-05 20:12:24','2024-02-05
20:12:24',NULL,'1760',NULL,NULL),(6852,1760,'SWT','applicants_certifications/
U1760T1707135196.pdf','applicants_certifications','Seminar- Workshop on Education,
Leadership, and Research.pdf','U1760T1707135196.pdf','2024-02-05 20:13:16','2024-
02-05 20:13:16',NULL,'1760',NULL,NULL),(6853,956,'TOR','applicants_certifications/
U956T1707136847.pdf','applicants_certifications','Transcript of
Records.pdf','U956T1707136847.pdf','2024-02-05 20:40:47','2024-02-05
20:40:47',NULL,'956',NULL,NULL),(6854,956,'COE','applicants_certifications/
U956T1707136866.pdf','applicants_certifications','Certificate of
Employment.pdf','U956T1707136866.pdf','2024-02-05 20:41:06','2024-02-05
20:41:06',NULL,'956',NULL,NULL),
(6855,956,'ELIGIBILITY','applicants_certifications/
U956T1707137050.pdf','applicants_certifications','Certificate of
Eligibility.pdf','U956T1707137050.pdf','2024-02-05 20:44:10','2024-02-05
20:44:10',NULL,'956',NULL,NULL),(6856,956,'SWT','applicants_certifications/
U956T1707138157.pdf','applicants_certifications','Training
Certificates.pdf','U956T1707138157.pdf','2024-02-05 21:02:37','2024-02-05
21:02:37',NULL,'956',NULL,NULL),(6857,956,'PDS','applicants_certifications/
U956T1707138699.pdf','applicants_certifications','Personal Data Sheet with Work
Experience Sheet_ (2).pdf','U956T1707138699.pdf','2024-02-05 21:11:39','2024-02-05
21:11:39',NULL,'956',NULL,NULL),(6858,1880,'TOR','applicants_certifications/
U1880T1707147481.pdf','applicants_certifications','Gonzalo-TOR
(1).pdf','U1880T1707147481.pdf','2024-02-05 23:38:01','2024-02-05
23:38:01',NULL,'1880',NULL,NULL),
(6860,1880,'ELIGIBILITY','applicants_certifications/
U1880T1707147767.pdf','applicants_certifications','Gonzalo-CSC Eligibility
(1).pdf','U1880T1707147767.pdf','2024-02-05 23:42:47','2024-02-05
23:42:47',NULL,'1880',NULL,NULL),(6861,1880,'COE','applicants_certifications/
U1880T1707147953.pdf','applicants_certifications','Gonzalo-Service Record
Updated.pdf','U1880T1707147953.pdf','2024-02-05 23:45:53','2024-02-05
23:45:53',NULL,'1880',NULL,NULL),(6862,1560,'COE','applicants_certifications/
U1560T1707185217.jpg','applicants_certifications','SERVICE RECORD FEB
2024.jpg','U1560T1707185217.jpg','2024-02-06 10:06:57','2024-02-06
10:06:57',NULL,'1560',NULL,NULL),(6865,1850,'TOR','applicants_certifications/
U1850T1707199812.jpg','applicants_certifications','CamScanner 02-06-2024
13.38_1.jpg','U1850T1707199812.jpg','2024-02-06 14:10:12','2024-02-06
14:10:12',NULL,'1850',NULL,NULL),(6866,1850,'TOR','applicants_certifications/
U1850T1707199891.jpg','applicants_certifications','CamScanner 02-06-2024
13.39_1.jpg','U1850T1707199891.jpg','2024-02-06 14:11:31','2024-02-06
14:11:31',NULL,'1850',NULL,NULL),(6867,1850,'TOR','applicants_certifications/
U1850T1707199919.jpg','applicants_certifications','CamScanner 02-06-2024
13.40_1.jpg','U1850T1707199919.jpg','2024-02-06 14:11:59','2024-02-06
14:11:59',NULL,'1850',NULL,NULL),(6870,1850,'COE','applicants_certifications/
U1850T1707200093.jpg','applicants_certifications','CamScanner 02-06-2024 13.42
(1)_1.jpg','U1850T1707200093.jpg','2024-02-06 14:14:53','2024-02-06
14:14:53',NULL,'1850',NULL,NULL),(6871,1850,'SWT','applicants_certifications/
U1850T1707200143.jpg','applicants_certifications','CamScanner 02-06-2024 13.44
(2)_1.jpg','U1850T1707200143.jpg','2024-02-06 14:15:43','2024-02-06
14:15:43',NULL,'1850',NULL,NULL),(6872,1850,'SWT','applicants_certifications/
U1850T1707200178.jpg','applicants_certifications','CamScanner 02-06-2024
13.44_1.jpg','U1850T1707200178.jpg','2024-02-06 14:16:18','2024-02-06
14:16:18',NULL,'1850',NULL,NULL),(6873,1850,'SWT','applicants_certifications/
U1850T1707200180.jpg','applicants_certifications','CamScanner 02-06-2024
13.44_1.jpg','U1850T1707200180.jpg','2024-02-06 14:16:20','2024-02-06
14:16:20',NULL,'1850',NULL,NULL),(6874,1850,'SWT','applicants_certifications/
U1850T1707200209.jpg','applicants_certifications','CamScanner 02-06-2024
13.43_1.jpg','U1850T1707200209.jpg','2024-02-06 14:16:49','2024-02-06
14:16:49',NULL,'1850',NULL,NULL),(6875,1850,'SWT','applicants_certifications/
U1850T1707200249.jpg','applicants_certifications','CamScanner 02-06-2024 13.42
(2)_1.jpg','U1850T1707200249.jpg','2024-02-06 14:17:29','2024-02-06
14:17:29',NULL,'1850',NULL,NULL),
(6876,1850,'ELIGIBILITY','applicants_certifications/
U1850T1707200446.jpg','applicants_certifications','CamScanner 02-06-2024
14.19_1.jpg','U1850T1707200446.jpg','2024-02-06 14:20:46','2024-02-06
14:20:46',NULL,'1850',NULL,NULL),(6877,1850,'PDS','applicants_certifications/
U1850T1707200482.jpg','applicants_certifications','CamScanner 02-06-2024
13.48_1.jpg','U1850T1707200482.jpg','2024-02-06 14:21:22','2024-02-06
14:21:22',NULL,'1850',NULL,NULL),(6878,1850,'PDS','applicants_certifications/
U1850T1707200509.jpg','applicants_certifications','CamScanner 02-06-2024
13.49_1.jpg','U1850T1707200509.jpg','2024-02-06 14:21:49','2024-02-06
14:21:49',NULL,'1850',NULL,NULL),(6879,1850,'PDS','applicants_certifications/
U1850T1707200537.jpg','applicants_certifications','CamScanner
02-06-2024 13.49 (1)_1.jpg','U1850T1707200537.jpg','2024-02-06 14:22:17','2024-02-
06 14:22:17',NULL,'1850',NULL,NULL),(6880,1850,'PDS','applicants_certifications/
U1850T1707200577.jpg','applicants_certifications','CamScanner 02-06-2024
14.05_1.jpg','U1850T1707200577.jpg','2024-02-06 14:22:57','2024-02-06
14:22:57',NULL,'1850',NULL,NULL),(6881,1850,'PDS','applicants_certifications/
U1850T1707200608.jpg','applicants_certifications','CamScanner 02-06-2024
14.06_1.jpg','U1850T1707200608.jpg','2024-02-06 14:23:28','2024-02-06
14:23:28',NULL,'1850',NULL,NULL),(6882,1850,'PDS','applicants_certifications/
U1850T1707200802.jpg','applicants_certifications','CamScanner 02-06-2024
14.25_1.jpg','U1850T1707200802.jpg','2024-02-06 14:26:42','2024-02-06
14:26:42',NULL,'1850',NULL,NULL),(6883,1856,'TOR','applicants_certifications/
U1856T1707263682.jpg','applicants_certifications','Screenshot_20240207_075150.jpg',
'U1856T1707263682.jpg','2024-02-07 07:54:42','2024-02-07
07:54:42',NULL,'1856',NULL,NULL),(6884,1856,'SWT','applicants_certifications/
U1856T1707263890.jpg','applicants_certifications','Screenshot_20240207_075729.jpg',
'U1856T1707263890.jpg','2024-02-07 07:58:10','2024-02-07
07:58:10',NULL,'1856',NULL,NULL),(6885,1856,'PDS','applicants_certifications/
U1856T1707263925.jpg','applicants_certifications','Screenshot_20240207_075037.jpg',
'U1856T1707263925.jpg','2024-02-07 07:58:45','2024-02-07
07:58:45',NULL,'1856',NULL,NULL),(6889,1452,'COE','applicants_certifications/
U1452T1707264527.jpg','applicants_certifications','Certificate of
Employment.jpg','U1452T1707264527.jpg','2024-02-07 08:08:47','2024-02-07
08:08:47',NULL,'1452',NULL,NULL),(6890,1867,'TOR','applicants_certifications/
U1867T1707474007.pdf','applicants_certifications','OTR.pdf','U1867T1707474007.pdf',
'2024-02-09 18:20:07','2024-02-09 18:20:07',NULL,'1867',NULL,NULL),
(6891,45,'TOR','applicants_certifications/
U45T1707702402.pdf','applicants_certifications','Kivuva_Challenges in development
and implementation of information systems.pdf','U45T1707702402.pdf','2024-02-12
09:46:42','2024-02-12 09:46:42',NULL,'45',NULL,NULL),
(6892,45,'COE','applicants_certifications/
U45T1707702439.pdf','applicants_certifications','Chapter 1
WAN.pdf','U45T1707702439.pdf','2024-02-12 09:47:19','2024-02-12
09:47:19',NULL,'45',NULL,NULL),(6893,1794,'COE','applicants_certifications/
U1794T1707894749.pdf','applicants_certifications','9. Certificate of
Employment_LGU.pdf','U1794T1707894749.pdf','2024-02-14 15:12:29','2024-02-14
15:12:29',NULL,'1794',NULL,NULL),(6894,1794,'COE','applicants_certifications/
U1794T1707894808.pdf','applicants_certifications','10. Certificate of
Employment_DOLE2023.pdf','U1794T1707894808.pdf','2024-02-14 15:13:28','2024-02-14
15:13:28',NULL,'1794',NULL,NULL),(6895,1794,'COE','applicants_certifications/
U1794T1707894822.pdf','applicants_certifications','11. Certificate of Employment
DOLE2022.pdf','U1794T1707894822.pdf','2024-02-14 15:13:42','2024-02-14
15:13:42',NULL,'1794',NULL,NULL),(6896,1794,'COE','applicants_certifications/
U1794T1707894836.pdf','applicants_certifications','12. Certificate of
Employment_IMI.pdf','U1794T1707894836.pdf','2024-02-14 15:13:56','2024-02-14
15:13:56',NULL,'1794',NULL,NULL),(6897,1794,'COE','applicants_certifications/
U1794T1707895066.pdf','applicants_certifications','Certificate of
Employment_IONICS.pdf','U1794T1707895066.pdf','2024-02-14 15:17:46','2024-02-14
15:17:46',NULL,'1794',NULL,NULL),(6898,1794,'COE','applicants_certifications/
U1794T1707895086.pdf','applicants_certifications','13. Certificate of
Employment_DDC LAND.pdf','U1794T1707895086.pdf','2024-02-14 15:18:06','2024-02-14
15:18:06',NULL,'1794',NULL,NULL),(6899,1794,'COE','applicants_certifications/
U1794T1707895104.pdf','applicants_certifications','14. Certificate of
Employment_FRP.pdf','U1794T1707895104.pdf','2024-02-14 15:18:24','2024-02-14
15:18:24',NULL,'1794',NULL,NULL),(6901,1794,'SWT','applicants_certifications/
U1794T1707895165.pdf','applicants_certifications','6. DOLE-21st National
Congress.pdf','U1794T1707895165.pdf','2024-02-14 15:19:25','2024-02-14
15:19:25',NULL,'1794',NULL,NULL),(6902,1794,'COE','applicants_certifications/
U1794T1707895194.pdf','applicants_certifications','15. Certificate of
Employment_FRP2.pdf','U1794T1707895194.pdf','2024-02-14 15:19:54','2024-02-14
15:19:54',NULL,'1794',NULL,NULL),(6903,1794,'SWT','applicants_certifications/
U1794T1707895215.pdf','applicants_certifications','7. Local
Artists.pdf','U1794T1707895215.pdf','2024-02-14 15:20:15','2024-02-14
15:20:15',NULL,'1794',NULL,NULL),(6904,1794,'SWT','applicants_certifications/
U1794T1707895232.pdf','applicants_certifications','8. Child
Labor.pdf','U1794T1707895232.pdf','2024-02-14 15:20:32','2024-02-14
15:20:32',NULL,'1794',NULL,NULL),
(6905,1794,'ELIGIBILITY','applicants_certifications/
U1794T1707895277.pdf','applicants_certifications','5. PRC Certification of
eligibility&rating.pdf','U1794T1707895277.pdf','2024-02-14 15:21:17','2024-02-14
15:21:17',NULL,'1794',NULL,NULL),(6906,1737,'TOR','applicants_certifications/
U1737T1708217367.pdf','applicants_certifications','CamScanner 02-17-2024
10.02.pdf','U1737T1708217367.pdf','2024-02-18 08:49:27','2024-02-18
08:49:27',NULL,'1737',NULL,NULL),(6907,1904,'PDS','applicants_certifications/
U1904T1708251872.docx','applicants_certifications','PDS.docx','U1904T1708251872.doc
x','2024-02-18 18:24:32','2024-02-18 18:24:32',NULL,'1904',NULL,NULL),
(6908,54,'ELIGIBILITY','applicants_certifications/
U54T1708418241.pdf','applicants_certifications','Certification of
Eligibility.pdf','U54T1708418241.pdf','2024-02-20 16:37:21','2024-02-20
16:37:21',NULL,'54',NULL,NULL),(6909,54,'SWT','applicants_certifications/
U54T1708418362.pdf','applicants_certifications','Cert_ Filipino Brand of Service
Excellence.pdf','U54T1708418362.pdf','2024-02-20 16:39:22','2024-02-20
16:39:22',NULL,'54',NULL,NULL),(6911,54,'SWT','applicants_certifications/
U54T1708418394.pdf','applicants_certifications','Cert_ Specialized Training on
Child Labor Prevention Elimination Program.pdf','U54T1708418394.pdf','2024-02-20
16:39:54','2024-02-20 16:39:54',NULL,'54',NULL,NULL),
(6912,54,'SWT','applicants_certifications/
U54T1708418443.pdf','applicants_certifications','Cert_ Provincial Nutrition
Evaluation Team.pdf','U54T1708418443.pdf','2024-02-20 16:40:43','2024-02-20
16:40:43',NULL,'54',NULL,NULL),(6913,54,'TOR','applicants_certifications/
U54T1708418487.pdf','applicants_certifications','Transcript of
Records.pdf','U54T1708418487.pdf','2024-02-20 16:41:27','2024-02-20
16:41:27',NULL,'54',NULL,NULL),(6914,54,'TOR','applicants_certifications/
U54T1708418513.pdf','applicants_certifications','Diploma.pdf','U54T1708418513.pdf',
'2024-02-20 16:41:53','2024-02-20 16:41:53',NULL,'54',NULL,NULL),
(6915,54,'TOR','applicants_certifications/
U54T1708418536.pdf','applicants_certifications','True Copy of Grades_
MPA.pdf','U54T1708418536.pdf','2024-02-20 16:42:16','2024-02-20
16:42:16',NULL,'54',NULL,NULL),(6916,54,'SWT','applicants_certifications/
U54T1708418674.pdf','applicants_certifications','Cert_ Code of Conduct and Ethical
Standards for Public Officials.pdf','U54T1708418674.pdf','2024-02-20
16:44:34','2024-02-20 16:44:34',NULL,'54',NULL,NULL),
(6917,54,'SWT','applicants_certifications/
U54T1708418707.pdf','applicants_certifications','Cert_ Principles of Graphic
Design.pdf','U54T1708418707.pdf','2024-02-20 16:45:07','2024-02-20
16:45:07',NULL,'54',NULL,NULL),(6919,1759,'COE','applicants_certifications/
U1759T1709995506.pdf','applicants_certifications','Certificate of
Employment.pdf','U1759T1709995506.pdf','2024-03-09 22:45:06','2024-03-09
22:45:06',NULL,'1759',NULL,NULL),(6920,1700,'TOR','applicants_certifications/
U1700T1710027171.jpg','applicants_certifications','TOR_Page_1.jpg','U1700T171002717
1.jpg','2024-03-10 07:32:51','2024-03-10 07:32:51',NULL,'1700',NULL,NULL),
(6921,1700,'TOR','applicants_certifications/
U1700T1710027184.jpg','applicants_certifications','TOR_Page_2.jpg','U1700T171002718
4.jpg','2024-03-10 07:33:04','2024-03-10 07:33:04',NULL,'1700',NULL,NULL),
(6922,1700,'TOR','applicants_certifications/
U1700T1710027196.jpg','applicants_certifications','TOR_Page_3.jpg','U1700T171002719
6.jpg','2024-03-10 07:33:16','2024-03-10 07:33:16',NULL,'1700',NULL,NULL),
(6923,1700,'TOR','applicants_certifications/
U1700T1710027207.jpg','applicants_certifications','TOR_Page_4.jpg','U1700T171002720
7.jpg','2024-03-10 07:33:27','2024-03-10 07:33:27',NULL,'1700',NULL,NULL),
(6924,1700,'TOR','applicants_certifications/
U1700T1710027217.jpg','applicants_certifications','TOR_Page_5.jpg','U1700T171002721
7.jpg','2024-03-10 07:33:37','2024-03-10 07:33:37',NULL,'1700',NULL,NULL),
(6925,1700,'TOR','applicants_certifications/
U1700T1710027225.jpg','applicants_certifications','TOR_Page_6.jpg','U1700T171002722
5.jpg','2024-03-10 07:33:45','2024-03-10 07:33:45',NULL,'1700',NULL,NULL),
(6926,1700,'COE','applicants_certifications/
U1700T1710027327.pdf','applicants_certifications','Dacawe, Genna_CERT
DSWD.pdf','U1700T1710027327.pdf','2024-03-10 07:35:27','2024-03-10
07:35:27',NULL,'1700',NULL,NULL),
(6927,1700,'ELIGIBILITY','applicants_certifications/
U1700T1710027450.pdf','applicants_certifications','Dacawe,Genna_CS
Eligibility.jpg.pdf','U1700T1710027450.pdf','2024-03-10 07:37:30','2024-03-10
07:37:30',NULL,'1700',NULL,NULL),(6928,1700,'PDS','applicants_certifications/
U1700T1710027533.xlsx','applicants_certifications','DACAWE,
GENNAFONTANILLA_PDS.xlsx','U1700T1710027533.xlsx','2024-03-10 07:38:53','2024-03-10
07:38:53',NULL,'1700',NULL,NULL),(6929,1700,'SWT','applicants_certifications/
U1700T1710027598.pdf','applicants_certifications','TRAININGS_UB.pdf','U1700T1710027
598.pdf','2024-03-10 07:39:58','2024-03-10 07:39:58',NULL,'1700',NULL,NULL),
(6930,1700,'SWT','applicants_certifications/
U1700T1710029114.jpg','applicants_certifications','TECH SESS
MFA.jpg','U1700T1710029114.jpg','2024-03-10 08:05:14','2024-03-10
08:05:14',NULL,'1700',NULL,NULL),(6931,1700,'SWT','applicants_certifications/
U1700T1710029138.jpg','applicants_certifications','RFW
AF.jpg','U1700T1710029138.jpg','2024-03-10 08:05:38','2024-03-10
08:05:38',NULL,'1700',NULL,NULL),(6932,1700,'SWT','applicants_certifications/
U1700T1710029155.jpg','applicants_certifications','RFW PAMANA
KKB.jpg','U1700T1710029155.jpg','2024-03-10 08:05:55','2024-03-10
08:05:55',NULL,'1700',NULL,NULL),(6933,1700,'SWT','applicants_certifications/
U1700T1710029176.jpg','applicants_certifications','CANVASS
ORIENTATION.jpg','U1700T1710029176.jpg','2024-03-10 08:06:16','2024-03-10
08:06:16',NULL,'1700',NULL,NULL),(6934,1700,'SWT','applicants_certifications/
U1700T1710029265.jpg','applicants_certifications','CERT_DSWD
RECOG.jpg','U1700T1710029265.jpg','2024-03-10 08:07:45','2024-03-10
08:07:45',NULL,'1700',NULL,NULL),(6935,1907,'TOR','applicants_certifications/
U1907T1710145683.pdf','applicants_certifications','Diploma and
OTR.pdf','U1907T1710145683.pdf','2024-03-11 16:28:03','2024-03-11
16:28:03',NULL,'1907',NULL,NULL),(6936,1907,'COE','applicants_certifications/
U1907T1710145710.pdf','applicants_certifications','COE\'s.pdf','U1907T1710145710.pd
f','2024-03-11 16:28:30','2024-03-11 16:28:30',NULL,'1907',NULL,NULL),
(6937,1907,'ELIGIBILITY','applicants_certifications/
U1907T1710145858.pdf','applicants_certifications','Certification Report of
Rating.pdf','U1907T1710145858.pdf','2024-03-11 16:30:58','2024-03-11
16:30:58',NULL,'1907',NULL,NULL),(6938,1907,'PDS','applicants_certifications/
U1907T1710145884.pdf','applicants_certifications','PDS.pdf','U1907T1710145884.pdf',
'2024-03-11 16:31:24','2024-03-11 16:31:24',NULL,'1907',NULL,NULL),
(6940,1907,'SWT','applicants_certifications/
U1907T1710146324.pdf','applicants_certifications','Certificate of Seminars and
Trainings Attended_compressed.pdf','U1907T1710146324.pdf','2024-03-11
16:38:44','2024-03-11 16:38:44',NULL,'1907',NULL,NULL),
(6941,1909,'PDS','applicants_certifications/
U1909T1710300242.pdf','applicants_certifications','(3)
PDS.pdf','U1909T1710300242.pdf','2024-03-13 11:24:02','2024-03-13
11:24:02',NULL,'1909',NULL,NULL),
(6942,1909,'ELIGIBILITY','applicants_certifications/
U1909T1710300269.pdf','applicants_certifications','(5)
Eligibility.pdf','U1909T1710300269.pdf','2024-03-13 11:24:29','2024-03-13
11:24:29',NULL,'1909',NULL,NULL),(6943,1909,'TOR','applicants_certifications/
U1909T1710300296.pdf','applicants_certifications','(4) Transcript of
Records.pdf','U1909T1710300296.pdf','2024-03-13 11:24:56','2024-03-13
11:24:56',NULL,'1909',NULL,NULL),
(6944,1909,'ELIGIBILITY','applicants_certifications/
U1909T1710300315.pdf','applicants_certifications','(6) RA
1080.pdf','U1909T1710300315.pdf','2024-03-13 11:25:15','2024-03-13
11:25:15',NULL,'1909',NULL,NULL),(6945,1904,'SWT','applicants_certifications/
U1904T1710489305.pdf','applicants_certifications','certificate
2.pdf','U1904T1710489305.pdf','2024-03-15 15:55:05','2024-03-15
15:55:05',NULL,'1904',NULL,NULL),(6946,1904,'COE','applicants_certifications/
U1904T1710490372.pdf','applicants_certifications','certificate of
employment.pdf.2.pdf','U1904T1710490372.pdf','2024-03-15 16:12:52','2024-03-15
16:12:52',NULL,'1904',NULL,NULL),(6947,1904,'PDS','applicants_certifications/
U1904T1710509605.pdf','applicants_certifications','PDS-
2.pdf','U1904T1710509605.pdf','2024-03-15 21:33:25','2024-03-15
21:33:25',NULL,'1904',NULL,NULL),
(6948,1904,'ELIGIBILITY','applicants_certifications/
U1904T1710509646.docx','applicants_certifications','prc.docx','U1904T1710509646.doc
x','2024-03-15 21:34:06','2024-03-15 21:34:06',NULL,'1904',NULL,NULL),
(6949,1904,'TOR','applicants_certifications/
U1904T1710509922.pdf','applicants_certifications','TOR.pdf','U1904T1710509922.pdf',
'2024-03-15 21:38:42','2024-03-15 21:38:42',NULL,'1904',NULL,NULL);

/*Table structure for table `hr_applicant_skills` */

DROP TABLE IF EXISTS `hr_applicant_skills`;

CREATE TABLE `hr_applicant_skills` (


`id` int(255) NOT NULL AUTO_INCREMENT,
`user_applicant_id` varchar(50) DEFAULT NULL,
`name` varchar(500) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;

/*Data for the table `hr_applicant_skills` */

insert into
`hr_applicant_skills`(`id`,`user_applicant_id`,`name`,`created_at`,`updated_at`)
values (1,'23','Programming','2021-02-15 11:12:59','2021-02-15 11:12:59'),
(2,'26','Programming (CSS,JS,PHP, Laravel Framework)','2024-07-24 10:11:42','2024-
07-24 10:11:42'),(3,'26','Photo and Video Editing','2024-07-24 10:11:53','2024-07-
24 10:11:53'),(4,'26','Programming','2024-08-21 19:49:26','2024-08-21 19:49:26');

/*Table structure for table `hr_applicant_spouse` */

DROP TABLE IF EXISTS `hr_applicant_spouse`;

CREATE TABLE `hr_applicant_spouse` (


`id` int(255) NOT NULL AUTO_INCREMENT,
`user_applicant_id` varchar(30) DEFAULT NULL,
`fname` varchar(50) DEFAULT NULL,
`mname` varchar(50) DEFAULT NULL,
`lname` varchar(50) DEFAULT NULL,
`extension` varchar(5) DEFAULT NULL,
`occupation` varchar(100) DEFAULT NULL,
`employer` varchar(100) DEFAULT NULL,
`employer_add` varchar(250) DEFAULT NULL,
`tel_no` varchar(50) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;

/*Data for the table `hr_applicant_spouse` */

insert into
`hr_applicant_spouse`(`id`,`user_applicant_id`,`fname`,`mname`,`lname`,`extension`,
`occupation`,`employer`,`employer_add`,`tel_no`,`created_at`,`updated_at`) values
(1,'23','Keziah','Bagtuna','Llamar',NULL,'Processing Officer','IFSU','Nayon, Lamut,
Ifugao','N/A','2021-02-15
10:58:02',NULL),(2,'26','Keziah','Bagtuna','Llamar','N/A','Administrative Assistant
I','IFSU','Nayon, Lamut, Ifugao','N/A','2024-07-24 10:03:31',NULL);

/*Table structure for table `hr_applicant_work` */

DROP TABLE IF EXISTS `hr_applicant_work`;

CREATE TABLE `hr_applicant_work` (


`id` int(255) NOT NULL AUTO_INCREMENT,
`user_applicant_id` varchar(50) DEFAULT NULL,
`date_fr` varchar(30) DEFAULT NULL,
`date_to` varchar(30) DEFAULT NULL,
`position` varchar(200) DEFAULT NULL,
`company` varchar(300) DEFAULT NULL,
`salary` varchar(20) DEFAULT NULL,
`sal_grade` varchar(50) DEFAULT NULL,
`emp_status` varchar(20) DEFAULT NULL,
`is_govt` varchar(3) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;

/*Data for the table `hr_applicant_work` */

insert into
`hr_applicant_work`(`id`,`user_applicant_id`,`date_fr`,`date_to`,`position`,`compan
y`,`salary`,`sal_grade`,`emp_status`,`is_govt`,`created_at`,`updated_at`) values
(1,'23','09/05/2016','Present','Programmer','ICT','21, 000','N/A','Contract of
Service','Y','2021-02-15 11:12:18','2021-02-15 11:12:18'),
(2,'26','06/16/2021','Present','Computer Programmer II','Ifugao State
University','35,000','15','Contract of Service','N/A','2024-07-24 10:10:10','2024-
07-24 10:10:10');

/*Table structure for table `hr_applicants` */

DROP TABLE IF EXISTS `hr_applicants`;

CREATE TABLE `hr_applicants` (


`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`fname` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`mname` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`lname` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`extension` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`fullname` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`birthday` date DEFAULT NULL,
`birthplace` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`citizenship` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`citizenship_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`citizenship_country` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`country_origin` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`nationality` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`gender` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`tribe` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`marital_status` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`religion` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`disability` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`specialization_id` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`specialization` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`hep` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`cp_number` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`school_id` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`course` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`units_earned` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`r_status` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`verification_code` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_agree_terms_conditions` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_verified` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`has_account` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`password` varchar(5000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`remember_token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`activated_at` timestamp NULL DEFAULT NULL,
`updated_user_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`last_login` timestamp NULL DEFAULT NULL,
`new_password` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_unicode_ci;

/*Data for the table `hr_applicants` */

insert into
`hr_applicants`(`id`,`fname`,`mname`,`lname`,`extension`,`fullname`,`birthday`,`bir
thplace`,`citizenship`,`citizenship_type`,`citizenship_country`,`country_origin`,`n
ationality`,`gender`,`tribe`,`marital_status`,`religion`,`disability`,`specializati
on_id`,`specialization`,`hep`,`email`,`cp_number`,`school_id`,`course`,`units_earne
d`,`r_status`,`verification_code`,`is_agree_terms_conditions`,`is_verified`,`has_ac
count`,`password`,`remember_token`,`created_at`,`updated_at`,`deleted_at`,`activate
d_at`,`updated_user_id`,`last_login`,`new_password`) values
(26,'JUAN','DELA','CRUZ','','JUAN DELA CRUZ','1994-12-07','Baler,
Aurora',NULL,NULL,NULL,'PHILIPPINES','FILIPINO','M','IFUGAO','Married','CHRISTIANIT
Y','NONE',NULL,'Software','Masters','[email protected]','+639555497911','3',NU
LL,NULL,'A','70509','Y',NULL,'Y','$2y$10$t0hDIIWeT0vKvyPyTZpjF.aHg0.zUEtoZb1oDhf6.w
4xipYpeW92a',NULL,'2024-07-24 05:25:08','2024-08-14 14:48:09',NULL,'2024-08-14
14:48:09','26',NULL,NULL),(32,'ERERERS','ASDFSAFSA','ASFASDF','','ERERERS ASDFSAFSA
ASFASDF ','2024-08-
13','ASDFASDFSADF',NULL,NULL,NULL,'PHILIPPINES','FILIPINO',NULL,'IFUGAO','SINGLE','
CHRISTIANITY','NONE',NULL,'INSTRUCTOR I (MECHANICAL
ENGINEERING)','ELEMENTARY','d','+633243232323',NULL,NULL,NULL,NULL,'18171','Y',NULL
,NULL,'$2y$10$iUEgCkY6JaxZ8r4SfPRYVOLfRMkrUH/IW2p13bfPXfaGmYINBI0XC',NULL,'2024-09-
09 17:09:53','2024-09-09 17:09:53',NULL,NULL,NULL,NULL,NULL);

/*Table structure for table `hr_application_notification` */

DROP TABLE IF EXISTS `hr_application_notification`;

CREATE TABLE `hr_application_notification` (


`id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`notifiable_id` int(10) unsigned NOT NULL,
`notifiable_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`date_deadline` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`reason` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`data` text COLLATE utf8mb4_unicode_ci NOT NULL,
`read_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

/*Data for the table `hr_application_notification` */

/*Table structure for table `hr_job_post` */

DROP TABLE IF EXISTS `hr_job_post`;

CREATE TABLE `hr_job_post` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`period_id` varchar(25) DEFAULT NULL,
`position_id` varchar(255) DEFAULT NULL,
`position` varchar(255) DEFAULT NULL,
`specialization_id` varchar(21) DEFAULT NULL,
`m_salary` decimal(10,2) DEFAULT 0.00,
`education` varchar(255) DEFAULT NULL,
`eligibility_id` varchar(20) DEFAULT NULL,
`eligibility` varchar(255) DEFAULT NULL,
`appt_status` varchar(255) DEFAULT NULL,
`campus` varchar(255) DEFAULT NULL,
`office` varchar(255) DEFAULT NULL,
`functions` mediumtext DEFAULT NULL,
`need` varchar(255) DEFAULT NULL,
`experience` varchar(255) DEFAULT NULL,
`trainings` varchar(255) DEFAULT NULL,
`sg` varchar(255) DEFAULT NULL,
`sal_type` varchar(255) DEFAULT NULL,
`duration` date DEFAULT NULL,
`job_type` varchar(255) DEFAULT NULL,
`point_system_categ_id` varchar(255) DEFAULT NULL,
`validated_by_id` varchar(255) DEFAULT NULL,
`created_user_id` varchar(255) DEFAULT NULL,
`deleted_by_id` varchar(255) DEFAULT NULL,
`application_status` varchar(255) DEFAULT NULL,
`r_status` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`post_status` varchar(255) DEFAULT NULL,
`is_finished` varchar(1) DEFAULT 'N',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE current_timestamp(),
`deleted_at` timestamp NULL DEFAULT NULL,
`updated_user_id` varchar(255) DEFAULT NULL,
`deleted_user_id` varchar(25) DEFAULT NULL,
`reviewer_comment` varchar(255) DEFAULT NULL,
`reviewed_at` timestamp NULL DEFAULT NULL,
`reviewed_user_id` varchar(255) DEFAULT NULL,
`approval_comment` varchar(255) DEFAULT NULL,
`approved_at` timestamp NULL DEFAULT NULL,
`approved_user_id` varchar(255) DEFAULT NULL,
`disapproved_at` timestamp NULL DEFAULT NULL,
`disapproved_user_id` varchar(255) DEFAULT NULL,
`corrected_by_user_id` varchar(255) DEFAULT NULL,
`published_at` timestamp NULL DEFAULT NULL,
`published_partner` varchar(255) DEFAULT NULL,
`interview_date` date DEFAULT NULL,
`interview_time` time DEFAULT NULL,
`meeting_id` varchar(100) DEFAULT NULL,
`meeting_password` varchar(100) DEFAULT NULL,
`meeting_link` varchar(255) DEFAULT NULL,
`venue` varchar(255) DEFAULT NULL,
`pysch_exam_date` date DEFAULT NULL,
`pysch_exam_time` time DEFAULT NULL,
`pysch_exam_venue` varchar(255) DEFAULT NULL,
`hands_on_date` date DEFAULT NULL,
`hands_on_time` time DEFAULT NULL,
`hands_on_venue` varchar(255) DEFAULT NULL,
`closed_at` timestamp NULL DEFAULT NULL,
`closed_user_id` varchar(25) DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=579 DEFAULT CHARSET=latin1;

/*Data for the table `hr_job_post` */

/*Table structure for table `hr_job_type` */

DROP TABLE IF EXISTS `hr_job_type`;

CREATE TABLE `hr_job_type` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

/*Data for the table `hr_job_type` */


/*Table structure for table `hr_section_roles` */

DROP TABLE IF EXISTS `hr_section_roles`;

CREATE TABLE `hr_section_roles` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=latin1;

/*Data for the table `hr_section_roles` */

insert into `hr_section_roles`(`id`,`name`,`description`,`deleted_at`) values


(6,'UnAuthorized','UnAuthorized',NULL),(7,'Admin','Admin',NULL),(8,'Alumni
Office','For Approval',NULL),(9,'Company','Personnel Selection Board',NULL),
(13,'University/College','',NULL);

/*Table structure for table `hr_specialization` */

DROP TABLE IF EXISTS `hr_specialization`;

CREATE TABLE `hr_specialization` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) DEFAULT NULL,
`category` varchar(50) DEFAULT NULL,
`category_id` varchar(50) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`created_user_id` varchar(20) DEFAULT NULL,
`updated_user_id` varchar(20) DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`deleted_user_id` varchar(100) DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=latin1;

/*Data for the table `hr_specialization` */

/*Table structure for table `hr_specialization_categ` */

DROP TABLE IF EXISTS `hr_specialization_categ`;

CREATE TABLE `hr_specialization_categ` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` varchar(100) DEFAULT NULL,
`updated_user_id` varchar(10) DEFAULT NULL,
`deleted_user_id` varchar(10) DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=latin1;

/*Data for the table `hr_specialization_categ` */

/*Table structure for table `job_applications` */


DROP TABLE IF EXISTS `job_applications`;

CREATE TABLE `job_applications` (


`id` int(255) NOT NULL AUTO_INCREMENT,
`user_applicant_id` varchar(50) DEFAULT NULL,
`period_id` varchar(50) DEFAULT NULL,
`company_id` varchar(100) DEFAULT NULL,
`job_id` varchar(255) DEFAULT NULL,
`position_id` varchar(100) DEFAULT NULL,
`area_code` varchar(100) DEFAULT NULL,
`appt_status` varchar(100) DEFAULT NULL,
`job_type` varchar(100) DEFAULT NULL,
`point_sys_categ_id` varchar(100) DEFAULT NULL,
`pitch` mediumtext DEFAULT NULL,
`type_of_applicant` varchar(30) DEFAULT NULL,
`r_status` varchar(200) DEFAULT NULL,
`remarks` varchar(200) DEFAULT NULL,
`validator_comment` varchar(200) DEFAULT NULL,
`validated_at` timestamp NULL DEFAULT NULL,
`validated_by_id` varchar(200) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`updated_user_id` varchar(100) DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;

/*Data for the table `job_applications` */

/*Table structure for table `job_posting` */

DROP TABLE IF EXISTS `job_posting`;

CREATE TABLE `job_posting` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`period_id` varchar(100) DEFAULT NULL,
`company_id` varchar(100) DEFAULT NULL,
`position_id` varchar(255) DEFAULT NULL,
`position` varchar(255) DEFAULT NULL,
`specialization_id` varchar(21) DEFAULT NULL,
`specialization` varchar(255) DEFAULT NULL,
`m_salary` decimal(10,2) DEFAULT 0.00,
`education` varchar(255) DEFAULT NULL,
`eligibility_id` varchar(20) DEFAULT NULL,
`eligibility` varchar(255) DEFAULT NULL,
`appt_status` varchar(255) DEFAULT NULL,
`campus` varchar(255) DEFAULT NULL,
`office` varchar(255) DEFAULT NULL,
`functions` mediumtext DEFAULT NULL,
`need` varchar(255) DEFAULT NULL,
`experience` varchar(255) DEFAULT NULL,
`trainings` varchar(255) DEFAULT NULL,
`skills` varchar(255) DEFAULT NULL,
`sg` varchar(255) DEFAULT NULL,
`sal_type` varchar(255) DEFAULT NULL,
`duration` date DEFAULT NULL,
`job_type` varchar(255) DEFAULT NULL,
`point_system_categ_id` varchar(255) DEFAULT NULL,
`validated_by_id` varchar(255) DEFAULT NULL,
`created_user_id` varchar(255) DEFAULT NULL,
`deleted_by_id` varchar(255) DEFAULT NULL,
`application_status` varchar(255) DEFAULT NULL,
`r_status` varchar(255) DEFAULT NULL,
`remarks` varchar(255) DEFAULT NULL,
`post_status` varchar(255) DEFAULT NULL,
`is_finished` varchar(1) DEFAULT 'N',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL ON UPDATE current_timestamp(),
`deleted_at` timestamp NULL DEFAULT NULL,
`updated_user_id` varchar(255) DEFAULT NULL,
`deleted_user_id` varchar(25) DEFAULT NULL,
`reviewer_comment` varchar(255) DEFAULT NULL,
`reviewed_at` timestamp NULL DEFAULT NULL,
`reviewed_user_id` varchar(255) DEFAULT NULL,
`approval_comment` varchar(255) DEFAULT NULL,
`approved_at` timestamp NULL DEFAULT NULL,
`approved_user_id` varchar(255) DEFAULT NULL,
`disapproved_at` timestamp NULL DEFAULT NULL,
`disapproved_user_id` varchar(255) DEFAULT NULL,
`corrected_by_user_id` varchar(255) DEFAULT NULL,
`published_at` timestamp NULL DEFAULT NULL,
`published_partner` varchar(255) DEFAULT NULL,
`interview_date` date DEFAULT NULL,
`interview_time` time DEFAULT NULL,
`meeting_id` varchar(100) DEFAULT NULL,
`meeting_password` varchar(100) DEFAULT NULL,
`meeting_link` varchar(255) DEFAULT NULL,
`venue` varchar(255) DEFAULT NULL,
`pysch_exam_date` date DEFAULT NULL,
`pysch_exam_time` time DEFAULT NULL,
`pysch_exam_venue` varchar(255) DEFAULT NULL,
`hands_on_date` date DEFAULT NULL,
`hands_on_time` time DEFAULT NULL,
`hands_on_venue` varchar(255) DEFAULT NULL,
`closed_at` timestamp NULL DEFAULT NULL,
`closed_user_id` varchar(25) DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=580 DEFAULT CHARSET=latin1;

/*Data for the table `job_posting` */

/*Table structure for table `municipality` */

DROP TABLE IF EXISTS `municipality`;

CREATE TABLE `municipality` (


`id` int(5) NOT NULL AUTO_INCREMENT,
`province_id` varchar(100) DEFAULT NULL,
`name` varchar(100) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` varchar(100) DEFAULT NULL,
`updated_user_id` varchar(100) DEFAULT NULL,
`deleted_user_id` varchar(100) DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;

/*Data for the table `municipality` */


insert into
`municipality`(`id`,`province_id`,`name`,`created_at`,`updated_at`,`deleted_at`,`cr
eated_user_id`,`updated_user_id`,`deleted_user_id`) values (3,NULL,'Baler','2024-
10-01 13:41:16','2024-10-01 13:43:13',NULL,'21','21',NULL),
(4,NULL,'Casiguran','2024-10-01 13:41:38','2024-10-01
13:41:38',NULL,'21',NULL,NULL),(5,NULL,'Dilasag','2024-10-01 13:43:01','2024-10-01
13:43:01',NULL,'21',NULL,NULL);

/*Table structure for table `period_system_setting` */

DROP TABLE IF EXISTS `period_system_setting`;

CREATE TABLE `period_system_setting` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`period_id` int(11) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL ON UPDATE current_timestamp(),
`updated_at` timestamp NULL DEFAULT NULL,
`updated_user_id` int(11) DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;

/*Data for the table `period_system_setting` */

insert into
`period_system_setting`(`id`,`period_id`,`created_at`,`updated_at`,`updated_user_id
`) values (1,16,'2024-10-02 04:39:58','2024-10-02 04:39:58',21);

/*Table structure for table `periods` */

DROP TABLE IF EXISTS `periods`;

CREATE TABLE `periods` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`code` varchar(100) DEFAULT NULL,
`date_from` date DEFAULT NULL,
`date_to` date DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` int(11) DEFAULT NULL,
`updated_user_id` int(11) DEFAULT NULL,
`deleted_user_id` int(11) DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=latin1;

/*Data for the table `periods` */

insert into
`periods`(`id`,`code`,`date_from`,`date_to`,`created_at`,`updated_at`,`deleted_at`,
`created_user_id`,`updated_user_id`,`deleted_user_id`) values (16,'Jan15-
Jan30','2024-10-01','2024-10-15','2024-10-02 04:01:05','2024-10-02
04:26:55',NULL,21,21,NULL);

/*Table structure for table `position_cat` */

DROP TABLE IF EXISTS `position_cat`;

CREATE TABLE `position_cat` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`company_id` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`name` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`created_user_id` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`updated_user_id` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`deleted_user_id` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_unicode_ci;

/*Data for the table `position_cat` */

/*Table structure for table `positions` */

DROP TABLE IF EXISTS `positions`;

CREATE TABLE `positions` (


`id` int(11) NOT NULL AUTO_INCREMENT,
`company_id` varchar(100) DEFAULT NULL,
`code` varchar(18) DEFAULT NULL,
`post_categ_id` int(11) DEFAULT NULL,
`name` varchar(150) DEFAULT NULL,
`rate` decimal(18,2) DEFAULT NULL,
`salary_grade` int(11) DEFAULT NULL,
`department_level` varchar(10) DEFAULT NULL,
`university_level` varchar(10) DEFAULT NULL,
`post_level` varchar(10) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
`can_approve_leave` varchar(1) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` int(11) DEFAULT NULL,
`updated_user_id` int(11) DEFAULT NULL,
`deleted_user_id` int(11) DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=249 DEFAULT CHARSET=latin1;

/*Data for the table `positions` */

/*Table structure for table `province` */

DROP TABLE IF EXISTS `province`;

CREATE TABLE `province` (


`id` int(5) NOT NULL AUTO_INCREMENT,
`region_id` varchar(100) DEFAULT NULL,
`name` varchar(100) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` varchar(100) DEFAULT NULL,
`updated_user_id` varchar(100) DEFAULT NULL,
`deleted_user_id` varchar(100) DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*Data for the table `province` */

/*Table structure for table `purok` */

DROP TABLE IF EXISTS `purok`;

CREATE TABLE `purok` (


`id` int(5) NOT NULL AUTO_INCREMENT,
`barangay_id` varchar(100) DEFAULT NULL,
`name` varchar(100) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` varchar(100) DEFAULT NULL,
`updated_user_id` varchar(100) DEFAULT NULL,
`deleted_user_id` varchar(100) DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;

/*Data for the table `purok` */

insert into
`purok`(`id`,`barangay_id`,`name`,`created_at`,`updated_at`,`deleted_at`,`created_u
ser_id`,`updated_user_id`,`deleted_user_id`) values (1,'2','sadfsadf','2024-10-01
20:38:44','2024-10-01 20:38:44',NULL,'21',NULL,NULL);

/*Table structure for table `region` */

DROP TABLE IF EXISTS `region`;

CREATE TABLE `region` (


`id` int(5) NOT NULL AUTO_INCREMENT,
`name` varchar(100) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` varchar(100) DEFAULT NULL,
`updated_user_id` varchar(100) DEFAULT NULL,
`deleted_user_id` varchar(100) DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;

/*Data for the table `region` */

/*Table structure for table `saved_jobs` */

DROP TABLE IF EXISTS `saved_jobs`;

CREATE TABLE `saved_jobs` (


`id` int(255) NOT NULL AUTO_INCREMENT,
`user_applicant_id` varchar(255) DEFAULT NULL,
`job_id` varchar(255) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*Data for the table `saved_jobs` */

/*Table structure for table `user_access` */

DROP TABLE IF EXISTS `user_access`;

CREATE TABLE `user_access` (


`id` int(255) NOT NULL AUTO_INCREMENT,
`user_id` varchar(30) DEFAULT NULL,
`access_id` varchar(30) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;

/*Data for the table `user_access` */

insert into `user_access`(`id`,`user_id`,`access_id`) values (2,'21','9');

/*Table structure for table `user_hr_section_role` */

DROP TABLE IF EXISTS `user_hr_section_role`;

CREATE TABLE `user_hr_section_role` (


`id` int(255) NOT NULL AUTO_INCREMENT,
`user_id` varchar(30) DEFAULT NULL,
`hr_section_role_id` varchar(30) DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=latin1;

/*Data for the table `user_hr_section_role` */

insert into
`user_hr_section_role`(`id`,`user_id`,`hr_section_role_id`,`updated_at`,`created_at
`) values (13,'21','7',NULL,NULL);

/*Table structure for table `users` */

DROP TABLE IF EXISTS `users`;

CREATE TABLE `users` (


`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`fname` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`mname` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`lname` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`extension` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`fullname` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`username` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`tel_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`contact` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`password` varchar(5000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`areacode` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`department` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`position` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`company_type` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`company_overview` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`parent_account_id` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`school_id` varchar(55) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`campus` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`website` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`overview` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`services` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_role` varchar(2) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_hr_role` varchar(2) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_dept_role` varchar(2) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`add1_region` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`add1_prov` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`add1_city` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`add1_brgy` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`add1_street` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`add1_lot_no` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`add1_sub` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`add1_zip` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`r_status` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_approved` varchar(1) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`validator_comment` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`account_id` int(100) DEFAULT NULL,
`account_no` int(100) DEFAULT NULL,
`remember_token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`deleted_user_id` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`validated_at` timestamp NULL DEFAULT NULL,
`validated_user_id` int(11) DEFAULT NULL,
`last_login` timestamp NULL DEFAULT NULL,
`new_password` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_unicode_ci;

/*Data for the table `users` */

insert into
`users`(`id`,`fname`,`mname`,`lname`,`extension`,`fullname`,`username`,`tel_no`,`co
ntact`,`slug`,`email`,`password`,`areacode`,`department`,`position`,`company_type`,
`company_overview`,`parent_account_id`,`school_id`,`campus`,`website`,`overview`,`s
ervices`,`user_role`,`user_hr_role`,`user_dept_role`,`add1_region`,`add1_prov`,`add
1_city`,`add1_brgy`,`add1_street`,`add1_lot_no`,`add1_sub`,`add1_zip`,`r_status`,`i
s_approved`,`validator_comment`,`account_id`,`account_no`,`remember_token`,`created
_at`,`updated_at`,`deleted_at`,`deleted_user_id`,`validated_at`,`validated_user_id`
,`last_login`,`new_password`) values
(21,'Juan','Dela','Cruz',NULL,NULL,NULL,NULL,NULL,NULL,'[email protected]','$
2y$10$t0hDIIWeT0vKvyPyTZpjF.aHg0.zUEtoZb1oDhf6.w4xipYpeW92a',NULL,NULL,NULL,NULL,NU
LL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,
NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);

/*Table structure for table `users_photos` */

DROP TABLE IF EXISTS `users_photos`;

CREATE TABLE `users_photos` (


`id` int(255) NOT NULL AUTO_INCREMENT,
`user_id` varchar(30) DEFAULT NULL,
`location` varchar(2000) DEFAULT NULL,
`filename` varchar(2000) DEFAULT NULL,
`orig_name` varchar(200) DEFAULT NULL,
`folder` varchar(200) DEFAULT NULL,
`size` varchar(100) DEFAULT NULL,
`type` varchar(30) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_user_id` varchar(200) DEFAULT NULL,
`updated_user_id` varchar(200) DEFAULT NULL,
`deleted_user_id` varchar(200) DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;

/*Data for the table `users_photos` */

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;


/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

You might also like