-- Generated by WHMCS\Database\Dumper\Database---- Database: whmcs-- -------------------------------------------------------- Server version 5.5.5-10.9.4-MariaDB-1:10.9.4+maria~ubu2204/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;/*!40101 SET NAMES utf8 */;/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;/*!40103 SET TIME_ZONE='+00:00' */;/*!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 */;USE `whmcs`;---- Table structure for table `ProxmoxAddon_CloudInitScript`--DROP TABLE IF EXISTS `ProxmoxAddon_CloudInitScript`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_CloudInitScript` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(200) NOT NULL, `script` text NOT NULL, `meta` text DEFAULT NULL, `network` text DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_CloudInitScript`--LOCK TABLES `ProxmoxAddon_CloudInitScript` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_CloudInitScript` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_CloudInitScript` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_Commands`--DROP TABLE IF EXISTS `ProxmoxAddon_Commands`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_Commands` ( `name` varchar(64) NOT NULL, `uuid` varchar(64) NOT NULL, `parent_uuid` varchar(64) DEFAULT NULL, `status` enum('stopped','running','error','sleeping') DEFAULT 'stopped', `action` enum('none','stop','reboot') DEFAULT 'none', `params` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`name`), UNIQUE KEY `name` (`name`), UNIQUE KEY `uuid` (`uuid`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_Commands`--LOCK TABLES `ProxmoxAddon_Commands` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_Commands` DISABLE KEYS */;INSERT INTO `ProxmoxAddon_Commands` (`name`, `uuid`, `parent_uuid`, `status`, `action`, `params`, `created_at`, `updated_at`) VALUES ('migrateSync', '637120a3c6ec1', NULL, 'stopped', 'none', '', '2022-11-13 11:51:47', '2022-12-05 00:00:03');INSERT INTO `ProxmoxAddon_Commands` (`name`, `uuid`, `parent_uuid`, `status`, `action`, `params`, `created_at`, `updated_at`) VALUES ('snapshots', '637120b4e1578', NULL, 'stopped', 'none', '', '2022-11-13 11:52:04', '2022-12-05 00:00:03');INSERT INTO `ProxmoxAddon_Commands` (`name`, `uuid`, `parent_uuid`, `status`, `action`, `params`, `created_at`, `updated_at`) VALUES ('synchronize-vm-names', '63712089bf7a8', NULL, 'stopped', 'none', '', '2022-11-13 11:51:21', '2022-11-13 11:52:09');INSERT INTO `ProxmoxAddon_Commands` (`name`, `uuid`, `parent_uuid`, `status`, `action`, `params`, `created_at`, `updated_at`) VALUES ('task', '637120a85bb98', NULL, 'stopped', 'none', '', '2022-11-13 11:51:52', '2022-12-05 00:00:03');INSERT INTO `ProxmoxAddon_Commands` (`name`, `uuid`, `parent_uuid`, `status`, `action`, `params`, `created_at`, `updated_at`) VALUES ('update-server-usage', '637120ac2add5', NULL, 'stopped', 'none', '', '2022-11-13 11:51:56', '2022-12-05 00:00:03');INSERT INTO `ProxmoxAddon_Commands` (`name`, `uuid`, `parent_uuid`, `status`, `action`, `params`, `created_at`, `updated_at`) VALUES ('users', '6371203e02d57', NULL, 'stopped', 'none', '', '2022-11-13 11:50:06', '2022-11-13 11:50:06');/*!40000 ALTER TABLE `ProxmoxAddon_Commands` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_IpLog`--DROP TABLE IF EXISTS `ProxmoxAddon_IpLog`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_IpLog` ( `id` int(11) NOT NULL AUTO_INCREMENT, `hosting_id` int(11) DEFAULT 0, `message` varchar(250) NOT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_IpLog`--LOCK TABLES `ProxmoxAddon_IpLog` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_IpLog` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_IpLog` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_IpNodes`--DROP TABLE IF EXISTS `ProxmoxAddon_IpNodes`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_IpNodes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `ip_id` int(11) NOT NULL, `node` varchar(200) DEFAULT NULL, PRIMARY KEY (`id`), KEY `ip_id` (`ip_id`), CONSTRAINT `ProxmoxAddon_IpNodes_ibfk_1` FOREIGN KEY (`ip_id`) REFERENCES `mg_proxmox_addon_ip` (`id`) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_IpNodes`--LOCK TABLES `ProxmoxAddon_IpNodes` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_IpNodes` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_IpNodes` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_IpServers`--DROP TABLE IF EXISTS `ProxmoxAddon_IpServers`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_IpServers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `ip_id` int(11) NOT NULL, `sid` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `ip_id` (`ip_id`), CONSTRAINT `ProxmoxAddon_IpServers_ibfk_1` FOREIGN KEY (`ip_id`) REFERENCES `mg_proxmox_addon_ip` (`id`) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_IpServers`--LOCK TABLES `ProxmoxAddon_IpServers` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_IpServers` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_IpServers` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_Job`--DROP TABLE IF EXISTS `ProxmoxAddon_Job`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_Job` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `retry_after` datetime NOT NULL, `retry_count` int(10) unsigned NOT NULL, `job` varchar(255) NOT NULL, `data` text DEFAULT NULL, `parent_id` int(10) unsigned DEFAULT NULL, `rel_id` int(10) unsigned DEFAULT NULL, `rel_type` varchar(32) DEFAULT NULL, `custom_id` int(10) unsigned DEFAULT NULL, `status` varchar(32) NOT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `parent_id` (`parent_id`), KEY `rel_type` (`rel_type`,`rel_id`,`custom_id`), KEY `status` (`status`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_Job`--LOCK TABLES `ProxmoxAddon_Job` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_Job` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_Job` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_JobLog`--DROP TABLE IF EXISTS `ProxmoxAddon_JobLog`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_JobLog` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `job_id` int(10) unsigned NOT NULL, `type` varchar(32) NOT NULL, `message` varchar(512) NOT NULL, `additional` text DEFAULT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`id`), KEY `job_id` (`job_id`), KEY `type` (`type`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_JobLog`--LOCK TABLES `ProxmoxAddon_JobLog` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_JobLog` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_JobLog` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_KeyPair`--DROP TABLE IF EXISTS `ProxmoxAddon_KeyPair`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_KeyPair` ( `id` int(11) NOT NULL AUTO_INCREMENT, `hosting_id` int(11) NOT NULL, `vm_id` int(11) DEFAULT NULL, `public` text NOT NULL, `private` text DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `hosting_id` (`hosting_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_KeyPair`--LOCK TABLES `ProxmoxAddon_KeyPair` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_KeyPair` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_KeyPair` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_Logger`--DROP TABLE IF EXISTS `ProxmoxAddon_Logger`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_Logger` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_ref` int(10) unsigned NOT NULL, `id_type` varchar(255) NOT NULL, `type` varchar(255) NOT NULL, `level` varchar(255) NOT NULL, `date` datetime DEFAULT NULL, `request` text NOT NULL, `response` text NOT NULL, `before_vars` text NOT NULL, `vars` text NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_Logger`--LOCK TABLES `ProxmoxAddon_Logger` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_Logger` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_Logger` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_ModuleSettings`--DROP TABLE IF EXISTS `ProxmoxAddon_ModuleSettings`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_ModuleSettings` ( `setting` varchar(64) NOT NULL, `value` text NOT NULL, PRIMARY KEY (`setting`), UNIQUE KEY `setting` (`setting`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_ModuleSettings`--LOCK TABLES `ProxmoxAddon_ModuleSettings` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_ModuleSettings` DISABLE KEYS */;INSERT INTO `ProxmoxAddon_ModuleSettings` (`setting`, `value`) VALUES ('bandwidthResetDate', '2022-12-05 00:00:03');/*!40000 ALTER TABLE `ProxmoxAddon_ModuleSettings` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_NodeSetting`--DROP TABLE IF EXISTS `ProxmoxAddon_NodeSetting`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_NodeSetting` ( `id` int(11) NOT NULL AUTO_INCREMENT, `server_id` int(10) unsigned NOT NULL, `node` varchar(64) NOT NULL, `setting` varchar(64) NOT NULL, `value` text NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_NodeSetting`--LOCK TABLES `ProxmoxAddon_NodeSetting` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_NodeSetting` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_NodeSetting` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_ProductConfiguration`--DROP TABLE IF EXISTS `ProxmoxAddon_ProductConfiguration`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_ProductConfiguration` ( `product_id` int(11) NOT NULL, `setting` varchar(255) NOT NULL, `value` text DEFAULT NULL, PRIMARY KEY (`setting`,`product_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_ProductConfiguration`--LOCK TABLES `ProxmoxAddon_ProductConfiguration` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_ProductConfiguration` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_ProductConfiguration` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_RrdData`--DROP TABLE IF EXISTS `ProxmoxAddon_RrdData`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_RrdData` ( `id` int(11) NOT NULL AUTO_INCREMENT, `hosting_id` int(11) NOT NULL, `vm_id` int(11) NOT NULL, `diskread` float NOT NULL DEFAULT 0, `diskwrite` float NOT NULL DEFAULT 0, `cpu` float NOT NULL DEFAULT 0, `maxcpu` float NOT NULL DEFAULT 0, `mem` float NOT NULL DEFAULT 0, `maxmem` float NOT NULL DEFAULT 0, `netin` float NOT NULL DEFAULT 0, `netout` float NOT NULL DEFAULT 0, `time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), PRIMARY KEY (`id`,`hosting_id`,`vm_id`,`time`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_RrdData`--LOCK TABLES `ProxmoxAddon_RrdData` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_RrdData` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_RrdData` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_SdnBridge`--DROP TABLE IF EXISTS `ProxmoxAddon_SdnBridge`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_SdnBridge` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT NULL, `vn_id` int(11) DEFAULT NULL, `hosting_id` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `vn_id` (`vn_id`), CONSTRAINT `ProxmoxAddon_SdnBridge_ibfk_1` FOREIGN KEY (`vn_id`) REFERENCES `ProxmoxAddon_VirtualNetwork` (`id`) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_SdnBridge`--LOCK TABLES `ProxmoxAddon_SdnBridge` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_SdnBridge` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_SdnBridge` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_ServerConfiguration`--DROP TABLE IF EXISTS `ProxmoxAddon_ServerConfiguration`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_ServerConfiguration` ( `server_id` int(11) NOT NULL, `setting` varchar(255) NOT NULL, `value` text DEFAULT NULL, PRIMARY KEY (`setting`,`server_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_ServerConfiguration`--LOCK TABLES `ProxmoxAddon_ServerConfiguration` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_ServerConfiguration` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_ServerConfiguration` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_ServerGroup`--DROP TABLE IF EXISTS `ProxmoxAddon_ServerGroup`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_ServerGroup` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(200) NOT NULL, `server_id` int(11) DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_ServerGroup`--LOCK TABLES `ProxmoxAddon_ServerGroup` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_ServerGroup` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_ServerGroup` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_ServerGroupItem`--DROP TABLE IF EXISTS `ProxmoxAddon_ServerGroupItem`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_ServerGroupItem` ( `id` int(11) NOT NULL AUTO_INCREMENT, `node` varchar(200) NOT NULL, `group_id` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `group_id` (`group_id`), CONSTRAINT `ProxmoxAddon_ServerGroupItem_ibfk_1` FOREIGN KEY (`group_id`) REFERENCES `ProxmoxAddon_ServerGroup` (`id`) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_ServerGroupItem`--LOCK TABLES `ProxmoxAddon_ServerGroupItem` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_ServerGroupItem` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_ServerGroupItem` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_SnapshotJob`--DROP TABLE IF EXISTS `ProxmoxAddon_SnapshotJob`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_SnapshotJob` ( `id` int(11) NOT NULL AUTO_INCREMENT, `hosting_id` int(11) NOT NULL, `vm_id` int(11) DEFAULT NULL, `name` varchar(200) NOT NULL, `description` text DEFAULT NULL, `vmstate` tinyint(1) DEFAULT NULL, `period` varchar(100) NOT NULL, `run_every` int(2) DEFAULT NULL, `days` text DEFAULT NULL, `start_time` time DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_SnapshotJob`--LOCK TABLES `ProxmoxAddon_SnapshotJob` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_SnapshotJob` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_SnapshotJob` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_User`--DROP TABLE IF EXISTS `ProxmoxAddon_User`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_User` ( `id` int(12) NOT NULL AUTO_INCREMENT, `user_id` int(12) DEFAULT NULL, `hosting_id` int(12) NOT NULL, `username` varchar(360) NOT NULL, `password` varchar(360) NOT NULL, `realm` varchar(100) NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_User`--LOCK TABLES `ProxmoxAddon_User` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_User` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_User` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_VirtualInterface`--DROP TABLE IF EXISTS `ProxmoxAddon_VirtualInterface`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_VirtualInterface` ( `id` int(11) NOT NULL AUTO_INCREMENT, `hosting_id` int(11) NOT NULL, `vn_id` int(11) NOT NULL, `vm_id` int(11) NOT NULL, `ip` varchar(200) NOT NULL, `ip_long` int(11) NOT NULL, `net` varchar(10) NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_VirtualInterface`--LOCK TABLES `ProxmoxAddon_VirtualInterface` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_VirtualInterface` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_VirtualInterface` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_VirtualNetwork`--DROP TABLE IF EXISTS `ProxmoxAddon_VirtualNetwork`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_VirtualNetwork` ( `id` int(11) NOT NULL AUTO_INCREMENT, `hosting_id` int(11) NOT NULL, `name` varchar(200) NOT NULL, `tag` int(11) NOT NULL, `pool` varchar(200) NOT NULL, `cidr` int(11) NOT NULL, `gateway` varchar(200) NOT NULL, `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_VirtualNetwork`--LOCK TABLES `ProxmoxAddon_VirtualNetwork` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_VirtualNetwork` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_VirtualNetwork` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_Vm`--DROP TABLE IF EXISTS `ProxmoxAddon_Vm`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_Vm` ( `id` int(11) NOT NULL AUTO_INCREMENT, `hosting_id` int(11) NOT NULL, `node` varchar(250) NOT NULL, `vmid` int(11) NOT NULL, `virtualization` varchar(128) NOT NULL, `name` varchar(250) NOT NULL, `password` varchar(250) NOT NULL, `cores` int(2) DEFAULT 0, `sockets` int(2) DEFAULT 0, `vcpus` int(2) DEFAULT 0, `cpulimit` float DEFAULT 0, `cpuunits` int(8) DEFAULT NULL, `memory` int(10) NOT NULL, `swap` int(10) DEFAULT 0, `disk` int(10) NOT NULL, `disks` int(12) DEFAULT 0, `netin` int(12) DEFAULT 0, `netout` int(12) DEFAULT 0, `template` int(1) DEFAULT 0, `data` text DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`,`hosting_id`,`vmid`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_Vm`--LOCK TABLES `ProxmoxAddon_Vm` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_Vm` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_Vm` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `ProxmoxAddon_VmIpAddress`--DROP TABLE IF EXISTS `ProxmoxAddon_VmIpAddress`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `ProxmoxAddon_VmIpAddress` ( `id` int(11) NOT NULL AUTO_INCREMENT, `hosting_id` int(11) DEFAULT NULL, `server_id` int(11) DEFAULT NULL, `vm_id` int(11) DEFAULT NULL, `ip` varchar(200) NOT NULL, `mac_address` varchar(200) DEFAULT NULL, `subnet_mask` varchar(200) DEFAULT NULL, `gateway` varchar(200) DEFAULT NULL, `cidr` int(6) DEFAULT NULL, `trunks` int(11) DEFAULT NULL, `tag` int(11) DEFAULT NULL, `net` varchar(5) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ip` (`ip`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `ProxmoxAddon_VmIpAddress`--LOCK TABLES `ProxmoxAddon_VmIpAddress` WRITE;/*!40000 ALTER TABLE `ProxmoxAddon_VmIpAddress` DISABLE KEYS */;/*!40000 ALTER TABLE `ProxmoxAddon_VmIpAddress` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `mg_proxmox_addon_ip`--DROP TABLE IF EXISTS `mg_proxmox_addon_ip`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `mg_proxmox_addon_ip` ( `id` int(11) NOT NULL AUTO_INCREMENT, `ip` varchar(200) NOT NULL, `type` enum('IPv4','IPv6') DEFAULT 'IPv4', `mac_address` varchar(200) DEFAULT NULL, `subnet_mask` varchar(200) DEFAULT NULL, `gateway` varchar(200) DEFAULT NULL, `cidr` int(6) DEFAULT NULL, `sid` int(11) DEFAULT NULL, `visualization` enum('Auto','KVM','LXC') DEFAULT 'Auto', `last_check` datetime DEFAULT NULL, `private` tinyint(1) DEFAULT 0, `hosting_id` int(11) DEFAULT 0, `trunks` int(11) DEFAULT NULL, `tag` int(11) DEFAULT NULL, `node` varchar(200) DEFAULT '0', `bridge` varchar(20) DEFAULT '', PRIMARY KEY (`id`), UNIQUE KEY `ip` (`ip`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `mg_proxmox_addon_ip`--LOCK TABLES `mg_proxmox_addon_ip` WRITE;/*!40000 ALTER TABLE `mg_proxmox_addon_ip` DISABLE KEYS */;/*!40000 ALTER TABLE `mg_proxmox_addon_ip` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `mg_proxmox_addon_recovery_vm_list`--DROP TABLE IF EXISTS `mg_proxmox_addon_recovery_vm_list`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `mg_proxmox_addon_recovery_vm_list` ( `id` int(11) NOT NULL AUTO_INCREMENT, `client_id` int(11) NOT NULL, `service_id` int(11) NOT NULL, `server_id` int(11) NOT NULL, `vserver_id` int(11) NOT NULL, `node` varchar(128) NOT NULL, `vmid` int(11) NOT NULL, `virtualization` varchar(128) NOT NULL, `config` text DEFAULT NULL, `status` text DEFAULT NULL, `dns` text DEFAULT NULL, `last_update` datetime DEFAULT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `mg_proxmox_addon_recovery_vm_list`--LOCK TABLES `mg_proxmox_addon_recovery_vm_list` WRITE;/*!40000 ALTER TABLE `mg_proxmox_addon_recovery_vm_list` DISABLE KEYS */;/*!40000 ALTER TABLE `mg_proxmox_addon_recovery_vm_list` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `mg_proxmox_addon_tasks`--DROP TABLE IF EXISTS `mg_proxmox_addon_tasks`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `mg_proxmox_addon_tasks` ( `id` int(11) NOT NULL AUTO_INCREMENT, `hosting_id` int(11) NOT NULL, `upid` varchar(128) NOT NULL, `name` varchar(128) NOT NULL, `description` text DEFAULT NULL, `node` varchar(128) NOT NULL, `vmid` int(11) NOT NULL, `status` int(11) NOT NULL, `start_time` datetime DEFAULT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `mg_proxmox_addon_tasks`--LOCK TABLES `mg_proxmox_addon_tasks` WRITE;/*!40000 ALTER TABLE `mg_proxmox_addon_tasks` DISABLE KEYS */;/*!40000 ALTER TABLE `mg_proxmox_addon_tasks` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `mg_proxmox_vmranges`--DROP TABLE IF EXISTS `mg_proxmox_vmranges`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `mg_proxmox_vmranges` ( `server_id` int(11) NOT NULL, `vmid_from` int(11) DEFAULT NULL, `vmid_to` int(11) DEFAULT NULL, PRIMARY KEY (`server_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `mg_proxmox_vmranges`--LOCK TABLES `mg_proxmox_vmranges` WRITE;/*!40000 ALTER TABLE `mg_proxmox_vmranges` DISABLE KEYS */;/*!40000 ALTER TABLE `mg_proxmox_vmranges` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `mod_invoicedata`--DROP TABLE IF EXISTS `mod_invoicedata`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `mod_invoicedata` ( `id` int(10) NOT NULL AUTO_INCREMENT, `invoiceid` int(10) NOT NULL, `clientsdetails` text NOT NULL, `customfields` text NOT NULL, `version` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `mod_invoicedata`--LOCK TABLES `mod_invoicedata` WRITE;/*!40000 ALTER TABLE `mod_invoicedata` DISABLE KEYS */;/*!40000 ALTER TABLE `mod_invoicedata` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `mod_onlinenic`--DROP TABLE IF EXISTS `mod_onlinenic`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `mod_onlinenic` ( `id` int(10) NOT NULL AUTO_INCREMENT, `domain` varchar(255) NOT NULL, `lockstatus` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `domainid` (`domain`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `mod_onlinenic`--LOCK TABLES `mod_onlinenic` WRITE;/*!40000 ALTER TABLE `mod_onlinenic` DISABLE KEYS */;/*!40000 ALTER TABLE `mod_onlinenic` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `mod_staffboard`--DROP TABLE IF EXISTS `mod_staffboard`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `mod_staffboard` ( `id` int(10) NOT NULL AUTO_INCREMENT, `note` text NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp(), `color` varchar(10) NOT NULL, `adminid` int(10) NOT NULL, `x` int(4) NOT NULL, `y` int(4) NOT NULL, `z` int(4) NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `mod_staffboard`--LOCK TABLES `mod_staffboard` WRITE;/*!40000 ALTER TABLE `mod_staffboard` DISABLE KEYS */;INSERT INTO `mod_staffboard` (`id`, `note`, `date`, `color`, `adminid`, `x`, `y`, `z`) VALUES ('1', 'Motz is gay', '2022-11-08 15:13:50', 'blue', '1', '772', '86', '10');INSERT INTO `mod_staffboard` (`id`, `note`, `date`, `color`, `adminid`, `x`, `y`, `z`) VALUES ('2', 'Winter loves my fat cock in her mouth', '2022-11-08 15:35:27', 'yellow', '2', '468', '86', '9');INSERT INTO `mod_staffboard` (`id`, `note`, `date`, `color`, `adminid`, `x`, `y`, `z`) VALUES ('3', '^ its true', '2022-11-11 21:39:45', 'pink', '1', '541', '255', '10');/*!40000 ALTER TABLE `mod_staffboard` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `mod_vpsnet`--DROP TABLE IF EXISTS `mod_vpsnet`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `mod_vpsnet` ( `relid` int(10) unsigned NOT NULL, `addon_id` int(10) unsigned NOT NULL DEFAULT 0, `setting` varchar(45) NOT NULL, `value` varchar(45) NOT NULL, PRIMARY KEY (`relid`,`setting`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `mod_vpsnet`--LOCK TABLES `mod_vpsnet` WRITE;/*!40000 ALTER TABLE `mod_vpsnet` DISABLE KEYS */;/*!40000 ALTER TABLE `mod_vpsnet` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblaccounts`--DROP TABLE IF EXISTS `tblaccounts`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblaccounts` ( `id` int(10) NOT NULL AUTO_INCREMENT, `userid` int(10) NOT NULL, `currency` int(10) NOT NULL, `gateway` text NOT NULL, `date` datetime DEFAULT NULL, `description` text NOT NULL, `amountin` decimal(16,2) NOT NULL DEFAULT 0.00, `fees` decimal(16,2) NOT NULL DEFAULT 0.00, `amountout` decimal(16,2) NOT NULL DEFAULT 0.00, `rate` decimal(16,5) NOT NULL DEFAULT 1.00000, `transid` text NOT NULL, `invoiceid` int(10) NOT NULL DEFAULT 0, `refundid` int(10) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `invoiceid` (`invoiceid`), KEY `userid` (`userid`), KEY `date` (`date`), KEY `transid` (`transid`(32))) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblaccounts`--LOCK TABLES `tblaccounts` WRITE;/*!40000 ALTER TABLE `tblaccounts` DISABLE KEYS */;INSERT INTO `tblaccounts` (`id`, `userid`, `currency`, `gateway`, `date`, `description`, `amountin`, `fees`, `amountout`, `rate`, `transid`, `invoiceid`, `refundid`) VALUES ('1', '1', '0', 'stripe', '2022-11-06 19:18:35', 'Invoice Payment', '2.40', '0.37', '0.00', '1.00000', 'txn_3M1J2kBvpKquPTCF0wePxeWJ', '5', '0');/*!40000 ALTER TABLE `tblaccounts` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblactivitylog`--DROP TABLE IF EXISTS `tblactivitylog`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblactivitylog` ( `id` int(10) NOT NULL AUTO_INCREMENT, `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `description` text NOT NULL, `user` text NOT NULL, `userid` int(10) unsigned NOT NULL DEFAULT 0, `user_id` int(10) unsigned NOT NULL DEFAULT 0, `admin_id` int(10) unsigned NOT NULL DEFAULT 0, `ipaddr` text NOT NULL, PRIMARY KEY (`id`), KEY `date` (`date`), KEY `user` (`user`(255)), KEY `userid` (`userid`), KEY `user_id` (`user_id`), KEY `admin_id` (`admin_id`)) ENGINE=InnoDB AUTO_INCREMENT=3584 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblactivitylog`--LOCK TABLES `tblactivitylog` WRITE;/*!40000 ALTER TABLE `tblactivitylog` DISABLE KEYS */;INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1', '2022-11-05 23:42:10', 'Unable to take ownership of rewrite rules during update: SplFileObject::__construct(/var/www/whmcs/.htaccess): Failed to open stream: Permission denied', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2', '2022-11-05 23:42:10', 'URI Path Management Setting \"Rewrite Auto Management\" Disabled', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3', '2022-11-05 23:42:10', 'Updated URI Path Mode to: basic', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('4', '2022-11-05 23:43:16', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('5', '2022-11-05 23:43:17', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('6', '2022-11-05 23:43:17', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('7', '2022-11-05 23:43:17', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('8', '2022-11-05 23:43:17', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('9', '2022-11-05 23:43:17', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('10', '2022-11-05 23:43:17', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('11', '2022-11-05 23:43:17', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('12', '2022-11-05 23:43:17', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('13', '2022-11-05 23:43:17', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('14', '2022-11-05 23:43:17', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('15', '2022-11-05 23:43:17', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('16', '2022-11-05 23:43:17', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('17', '2022-11-05 23:43:17', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('18', '2022-11-05 23:43:17', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('19', '2022-11-05 23:43:17', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('20', '2022-11-05 23:43:17', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('21', '2022-11-05 23:43:17', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('22', '2022-11-05 23:43:17', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('23', '2022-11-05 23:43:17', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('24', '2022-11-05 23:43:17', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('25', '2022-11-05 23:43:17', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('26', '2022-11-05 23:43:17', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('27', '2022-11-05 23:43:21', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('28', '2022-11-05 23:43:21', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('29', '2022-11-05 23:43:21', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('30', '2022-11-05 23:43:21', 'Admin Email Notification Sending Failed - Mailer Exception - Email Sending Failed: Could not instantiate mail function. (Subject: WHMCS Domain Synchronisation Cron Report)', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('31', '2022-11-05 23:49:57', 'Gateway Module Activated: \'PayPal Basic\'', 'winter', '0', '0', '1', '108.162.237.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('32', '2022-11-05 23:49:57', 'Gateway Module Configuration Updated: \'PayPal Basic\'', 'winter', '0', '0', '1', '108.162.237.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('33', '2022-11-05 23:53:54', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('34', '2022-11-05 23:53:54', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('35', '2022-11-05 23:53:54', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('36', '2022-11-05 23:53:54', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('37', '2022-11-05 23:53:54', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('38', '2022-11-05 23:53:54', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('39', '2022-11-05 23:53:54', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('40', '2022-11-05 23:53:54', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('41', '2022-11-05 23:53:54', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('42', '2022-11-05 23:53:54', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('43', '2022-11-05 23:53:54', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('44', '2022-11-05 23:53:54', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('45', '2022-11-05 23:53:54', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('46', '2022-11-05 23:53:55', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('47', '2022-11-05 23:53:55', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('48', '2022-11-05 23:53:55', 'Automated Task: Starting Prune Ticket Attachments', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('49', '2022-11-05 23:53:55', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('50', '2022-11-05 23:53:55', 'Automated Task: Starting Affiliate Reports', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('51', '2022-11-05 23:53:55', 'Automated Task: Starting Process Email Queue', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('52', '2022-11-05 23:53:55', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('53', '2022-11-05 23:53:55', 'Automated Task: Starting Process Email Campaigns', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('54', '2022-11-05 23:53:55', 'Automated Task: Starting Credit Card Expiry Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('55', '2022-11-05 23:53:55', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('56', '2022-11-05 23:53:55', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('57', '2022-11-05 23:53:55', 'Automated Task: Starting Overage Billing Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('58', '2022-11-05 23:53:55', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('59', '2022-11-05 23:53:55', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('60', '2022-11-05 23:53:55', 'Automated Task: Starting Ticket Escalation Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('61', '2022-11-05 23:53:55', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('62', '2022-11-05 23:53:55', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('63', '2022-11-05 23:53:55', 'Automated Task: Starting Update Server Usage', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('64', '2022-11-05 23:53:55', 'Automated Task: Starting Update Server Meta Data', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('65', '2022-11-05 23:53:55', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('66', '2022-11-05 23:53:58', 'Automated Task: Starting Run Jobs Queue', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('67', '2022-11-05 23:53:58', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('68', '2022-11-05 23:53:58', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('69', '2022-11-05 23:53:58', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('70', '2022-11-05 23:54:58', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('71', '2022-11-05 23:55:59', 'Cron Job: Database Backup requested but backups are not configured.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('72', '2022-11-06 04:21:03', 'Gateway Module Activated: \'Stripe\'', 'winter', '0', '0', '1', '172.71.22.142');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('73', '2022-11-06 04:26:04', 'Gateway Module Configuration Modified: \'Stripe\'', 'winter', '0', '0', '1', '172.71.82.47');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('74', '2022-11-06 04:26:21', 'Gateway Module Configuration Modified: \'Stripe\'', 'winter', '0', '0', '1', '172.71.82.47');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('75', '2022-11-06 04:32:27', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '172.71.30.41');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('76', '2022-11-06 04:33:14', 'General Settings Modified. Changes made: Domain Changed from \'http://whmcs.lunardev.group\' to \'http://whmcs.lunardev.group/\'. Signature Changed. Email Global Footer Changed.', 'winter', '0', '0', '1', '172.71.30.41');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('77', '2022-11-06 04:33:14', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '172.71.30.41');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('78', '2022-11-06 04:33:53', 'General Settings Modified. Changes made: Captcha Type Changed from \'\' to \'invisible\'. Re CAPTCHA Public Key Changed. Re CAPTCHA Private Key Changed. Enable Email Verification Enabled.', 'winter', '0', '0', '1', '172.71.30.41');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('79', '2022-11-06 04:33:54', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '172.71.30.41');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('80', '2022-11-06 04:38:03', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '172.71.26.109');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('81', '2022-11-06 04:38:25', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '172.71.26.109');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('82', '2022-11-06 04:38:32', 'General Settings Modified. Changes made: Template Changed from \'twenty-one\' to \'six\'.', 'winter', '0', '0', '1', '172.71.26.109');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('83', '2022-11-06 04:38:32', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '172.71.26.109');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('84', '2022-11-06 04:38:34', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '172.71.26.109');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('85', '2022-11-06 04:38:49', 'General Settings Modified. Changes made: Template Changed from \'six\' to \'twenty-one\'.', 'winter', '0', '0', '1', '172.71.26.109');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('86', '2022-11-06 04:38:49', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '172.71.26.109');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('87', '2022-11-06 04:38:57', 'General Settings Modified. Changes made: Maintenance Mode Enabled.', 'winter', '0', '0', '1', '172.71.26.109');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('88', '2022-11-06 04:38:57', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '172.71.26.109');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('89', '2022-11-06 04:39:58', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '172.71.30.82');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('90', '2022-11-06 04:40:09', 'General Settings Modified. Changes made: Signature Changed.', 'winter', '0', '0', '1', '172.71.30.82');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('91', '2022-11-06 04:40:09', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '172.71.30.82');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('92', '2022-11-06 04:40:53', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '172.71.26.124');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('93', '2022-11-06 04:41:06', 'General Settings Changed. Trusted Proxy IP Added: \'103.21.244.0/22\'', 'winter', '0', '0', '1', '172.71.26.124');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('94', '2022-11-06 04:41:15', 'General Settings Changed. Trusted Proxy IP Added: \'103.22.200.0/22\'', 'winter', '0', '0', '1', '172.71.26.124');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('95', '2022-11-06 04:41:20', 'General Settings Changed. Trusted Proxy IP Added: \'103.31.4.0/22\'', 'winter', '0', '0', '1', '172.71.26.124');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('96', '2022-11-06 04:41:25', 'General Settings Changed. Trusted Proxy IP Added: \'104.16.0.0/13\'', 'winter', '0', '0', '1', '172.71.26.124');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('97', '2022-11-06 04:41:30', 'General Settings Changed. Trusted Proxy IP Added: \'104.24.0.0/14\'', 'winter', '0', '0', '1', '172.71.26.124');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('98', '2022-11-06 04:41:35', 'General Settings Changed. Trusted Proxy IP Added: \'108.162.192.0/18\'', 'winter', '0', '0', '1', '172.71.26.124');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('99', '2022-11-06 04:41:39', 'General Settings Changed. Trusted Proxy IP Added: \'131.0.72.0/22\'', 'winter', '0', '0', '1', '172.71.26.124');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('100', '2022-11-06 04:41:45', 'General Settings Changed. Trusted Proxy IP Added: \'141.101.64.0/18\'', 'winter', '0', '0', '1', '172.71.26.124');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('101', '2022-11-06 04:41:49', 'General Settings Changed. Trusted Proxy IP Added: \'162.158.0.0/15\'', 'winter', '0', '0', '1', '172.71.26.124');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('102', '2022-11-06 04:41:53', 'General Settings Changed. Trusted Proxy IP Added: \'172.64.0.0/13\'', 'winter', '0', '0', '1', '172.71.26.124');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('103', '2022-11-06 04:42:06', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('104', '2022-11-06 04:42:17', 'General Settings Changed. Trusted Proxy IP Added: \'173.245.48.0/20\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('105', '2022-11-06 04:42:25', 'General Settings Changed. Trusted Proxy IP Added: \'188.114.96.0/20\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('106', '2022-11-06 04:42:31', 'General Settings Changed. Trusted Proxy IP Added: \'190.93.240.0/20\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('107', '2022-11-06 04:42:37', 'General Settings Changed. Trusted Proxy IP Added: \'197.234.240.0/22\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('108', '2022-11-06 04:42:42', 'General Settings Changed. Trusted Proxy IP Added: \'198.41.128.0/17\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('109', '2022-11-06 04:42:59', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('110', '2022-11-06 04:43:01', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('111', '2022-11-06 04:43:06', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('112', '2022-11-06 04:44:32', 'Deleted Announcement (ID: 1)', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('113', '2022-11-06 04:45:20', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('114', '2022-11-06 04:45:32', 'General Settings Modified. Changes made: Display Errors Enabled. Log Errors Enabled.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('115', '2022-11-06 04:45:32', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('116', '2022-11-06 04:45:37', 'Error: Whoops\\Exception\\ErrorException: The file /var/www/whmcs/modules/servers/pterobill/pterobill.php encoded as type [1/71] cannot be decoded by this version of the ionCube Loader. in Unknown:0 Stack trace: #0 /var/www/whmcs/vendor/whmcs/whmcs-foundation/lib/Utility/Error/Run.php(0): WHMCS\\Utility\\Error\\Run->handleError() #1 [internal function]: WHMCS\\Utility\\Error\\Run->handleShutdown() #2 {main}', '', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('117', '2022-11-06 04:49:04', 'Error: Whoops\\Exception\\ErrorException: The file /var/www/whmcs/modules/servers/pterobill/pterobill.php encoded as type [1/71] cannot be decoded by this version of the ionCube Loader. in Unknown:0 Stack trace: #0 /var/www/whmcs/vendor/whmcs/whmcs-foundation/lib/Utility/Error/Run.php(0): WHMCS\\Utility\\Error\\Run->handleError() #1 [internal function]: WHMCS\\Utility\\Error\\Run->handleShutdown() #2 {main}', '', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('118', '2022-11-06 05:04:11', 'Server Created: \'Lunar Panel\' - Server ID: 1', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('119', '2022-11-06 05:04:42', 'Server Group Created: \'Pterodactyl Group\' - Server Group ID: 1', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('120', '2022-11-06 05:06:38', 'Product Group Created: \'Lunar Panel\' - Product Group ID: 1', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('121', '2022-11-06 05:07:33', 'Product Created - \'Minecraft Paper\' - Product ID: 1', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('122', '2022-11-06 05:13:54', 'Product Configuration Modified: Product Description Modified. Product Short Description Modified. Product Color Modified. Welcome Email Modified. Require Domain Disabled. Stock Control Enabled. Quantity In Stock Modified: \'0\' to \'15\'. Featured Product Enabled. Payment Type Modified: \'free\' to \'recurring\'. Server Group Modified: \'0\' to \'1\'. Automatic Setup Modified: \'\' to \'Order\'. cpu Value Modified: \'\' to \'100\'. disk Value Modified: \'\' to \'6144\'. memory Value Modified: \'\' to \'3072\'. swap Value Modified: \'\' to \'0\'. location_id Value Modified: \'\' to \'2\'. dedicated_ip Value Modified: \'\' to \'on\'. nest_id Value Modified: \'\' to \'1\'. egg_id Value Modified: \'\' to \'1\'. io Value Modified: \'\' to \'500\'. databases Value Modified: \'\' to \'1\'. backups Value Modified: \'\' to \'0\'. Pricing Modified. Product ID: 1', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('123', '2022-11-06 05:14:06', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('124', '2022-11-06 05:14:10', 'General Settings Modified. Changes made: Maintenance Mode Disabled.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('125', '2022-11-06 05:14:10', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('126', '2022-11-06 05:14:19', 'General Settings Modified. Changes made: Domain Changed from \'http://whmcs.lunardev.group/\' to \'https://user.lunardev.group/\'.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('127', '2022-11-06 05:14:19', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('128', '2022-11-06 05:16:45', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('129', '2022-11-06 05:17:02', 'General Settings Modified. Changes made: Re CAPTCHA Public Key Changed. Re CAPTCHA Private Key Changed.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('130', '2022-11-06 05:17:02', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('131', '2022-11-06 05:19:25', 'Email Sent to Winter Fe (Email Address Verification) - UserID: 1', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('132', '2022-11-06 05:19:25', 'Created Client Winter Fe - UserID: 1 - Client ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('133', '2022-11-06 05:19:25', 'Opted In to Marketing Emails - Client ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('134', '2022-11-06 05:19:25', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('135', '2022-11-06 05:19:25', 'General Settings Modified. Changes made: Display Errors Disabled. Log Errors Disabled.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('136', '2022-11-06 05:19:54', 'Unable to perform route mode test: cURL error 6: Could not resolve host: whmcs.lunardev.group (see https://curl.haxx.se/libcurl/c/libcurl-errors.html)', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('137', '2022-11-06 05:20:02', 'General Settings Modified. Changes made: System URL Changed from \'http://whmcs.lunardev.group/\' to \'http://user.lunardev.group/\'.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('138', '2022-11-06 05:20:09', 'General Settings Modified. Changes made: Company Name Changed from \'Winter Fe\' to \'Lunar\'.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('139', '2022-11-06 05:20:24', 'General Settings Modified. Changes made: Logo URL Changed from \'\' to \'https://dash.lunardev.group/u/logo.png\'.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('140', '2022-11-06 05:20:48', 'General Settings Modified. Changes made: Order Days Grace Changed from \'0\' to \'4\'.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('141', '2022-11-06 05:21:25', 'Email Sent to Winter Fe (Welcome) - Client ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('142', '2022-11-06 05:22:20', 'General Settings Modified. Changes made: Late Fee Type Changed from \'Percentage\' to \'Fixed Amount\'. Invoice Late Fee Amount Changed from \'10.00\' to \'5\'.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('143', '2022-11-06 05:22:55', 'Gateway Module Deactivated: Stripe to PayPal Basic', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('144', '2022-11-06 05:23:04', 'Gateway Module Activated: \'PayPal\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('145', '2022-11-06 05:23:19', 'Gateway Module Deactivated: PayPal to PayPal Basic', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('146', '2022-11-06 05:23:35', 'General Settings Modified. Changes made: System URL Changed from \'http://user.lunardev.group/\' to \'https://user.lunardev.group/\'.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('147', '2022-11-06 05:23:46', 'Gateway Module Activated: \'PayPal\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('148', '2022-11-06 05:28:27', 'Gateway Module Configuration Updated: \'PayPal\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('149', '2022-11-06 05:28:28', 'Gateway Module Configuration Updated: \'PayPal\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('150', '2022-11-06 05:29:21', 'Gateway Module Deactivated: PayPal Basic to PayPal', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('151', '2022-11-06 05:32:21', 'Gateway Module Configuration Updated: \'PayPal\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('152', '2022-11-06 05:32:49', 'Gateway Module Configuration Modified: \'PayPal\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('153', '2022-11-06 05:37:25', 'Email Sent to Winter Fe (Email Address Verification) - UserID: 1', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('154', '2022-11-06 05:37:25', 'Verification Email Resent', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('155', '2022-11-06 05:40:39', 'SMTP Debug: Connection: opening to mail.hydramail.ovh:587, timeout=300, options=array()', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('156', '2022-11-06 05:40:39', 'SMTP Debug: Connection: opened', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('157', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"220 mail.hydramail.ovh ESMTP Postcow\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('158', '2022-11-06 05:40:39', 'SMTP Debug: SERVER -> CLIENT: 220 mail.hydramail.ovh ESMTP Postcow\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('159', '2022-11-06 05:40:39', 'SMTP Debug: CLIENT -> SERVER: EHLO user.lunardev.group\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('160', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"250-mail.hydramail.ovh\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('161', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"250-PIPELINING\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('162', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"250-SIZE 104857600\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('163', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"250-ETRN\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('164', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"250-STARTTLS\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('165', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"250-ENHANCEDSTATUSCODES\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('166', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"250-8BITMIME\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('167', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"250-DSN\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('168', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"250 CHUNKING\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('169', '2022-11-06 05:40:39', 'SMTP Debug: SERVER -> CLIENT: 250-mail.hydramail.ovh\r\n250-PIPELINING\r\n250-SIZE 104857600\r\n250-ETRN\r\n250-STARTTLS\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250-DSN\r\n250 CHUNKING\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('170', '2022-11-06 05:40:39', 'SMTP Debug: CLIENT -> SERVER: STARTTLS\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('171', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"220 2.0.0 Ready to start TLS\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('172', '2022-11-06 05:40:39', 'SMTP Debug: SERVER -> CLIENT: 220 2.0.0 Ready to start TLS\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('173', '2022-11-06 05:40:39', 'SMTP Debug: CLIENT -> SERVER: EHLO user.lunardev.group\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('174', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"250-mail.hydramail.ovh\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('175', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"250-PIPELINING\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('176', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"250-SIZE 104857600\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('177', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"250-ETRN\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('178', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"250-AUTH PLAIN LOGIN\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('179', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"250-AUTH=PLAIN LOGIN\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('180', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"250-ENHANCEDSTATUSCODES\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('181', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"250-8BITMIME\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('182', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"250-DSN\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('183', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"250 CHUNKING\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('184', '2022-11-06 05:40:39', 'SMTP Debug: SERVER -> CLIENT: 250-mail.hydramail.ovh\r\n250-PIPELINING\r\n250-SIZE 104857600\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN\r\n250-AUTH=PLAIN LOGIN\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250-DSN\r\n250 CHUNKING\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('185', '2022-11-06 05:40:39', 'SMTP Debug: Auth method requested: UNSPECIFIED', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('186', '2022-11-06 05:40:39', 'SMTP Debug: Auth methods available on the server: PLAIN,LOGIN', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('187', '2022-11-06 05:40:39', 'SMTP Debug: Requested auth method not available: ', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('188', '2022-11-06 05:40:39', 'SMTP Debug: Auth method selected: LOGIN', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('189', '2022-11-06 05:40:39', 'SMTP Debug: CLIENT -> SERVER: AUTH LOGIN\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('190', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"334 VXNlcm5hbWU6\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('191', '2022-11-06 05:40:39', 'SMTP Debug: SERVER -> CLIENT: 334 VXNlcm5hbWU6\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('192', '2022-11-06 05:40:39', 'SMTP Debug: CLIENT -> SERVER: Y29udGFjdEBsdW5hcmRldi5ncm91cA==\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('193', '2022-11-06 05:40:39', 'SMTP Debug: SMTP INBOUND: \"334 UGFzc3dvcmQ6\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('194', '2022-11-06 05:40:39', 'SMTP Debug: SERVER -> CLIENT: 334 UGFzc3dvcmQ6\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('195', '2022-11-06 05:40:39', 'SMTP Debug: CLIENT -> SERVER: TWUxYWlsYWg=\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('196', '2022-11-06 05:40:40', 'SMTP Debug: SMTP INBOUND: \"235 2.7.0 Authentication successful\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('197', '2022-11-06 05:40:40', 'SMTP Debug: SERVER -> CLIENT: 235 2.7.0 Authentication successful\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('198', '2022-11-06 05:40:40', 'SMTP Debug: CLIENT -> SERVER: MAIL FROM:<noreply@whmcs.lunardev.group>\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('199', '2022-11-06 05:40:40', 'SMTP Debug: SMTP INBOUND: \"250 2.1.0 Ok\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('200', '2022-11-06 05:40:40', 'SMTP Debug: SERVER -> CLIENT: 250 2.1.0 Ok\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('201', '2022-11-06 05:40:40', 'SMTP Debug: CLIENT -> SERVER: RCPT TO:<winter@lunardev.group>\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('202', '2022-11-06 05:40:40', 'SMTP Debug: SMTP INBOUND: \"553 5.7.1 <noreply@whmcs.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('203', '2022-11-06 05:40:40', 'SMTP Debug: SERVER -> CLIENT: 553 5.7.1 <noreply@whmcs.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('204', '2022-11-06 05:40:40', 'SMTP Debug: SMTP ERROR: RCPT TO command failed: 553 5.7.1 <noreply@whmcs.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('205', '2022-11-06 05:40:40', 'SMTP Debug: CLIENT -> SERVER: QUIT\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('206', '2022-11-06 05:40:40', 'SMTP Debug: SMTP INBOUND: \"221 2.0.0 Bye\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('207', '2022-11-06 05:40:40', 'SMTP Debug: SERVER -> CLIENT: 221 2.0.0 Bye\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('208', '2022-11-06 05:40:40', 'SMTP Debug: Connection: closed', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('209', '2022-11-06 05:40:40', 'SMTP Debug: SMTP Error: The following recipients failed: winter@lunardev.group: <noreply@whmcs.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('210', '2022-11-06 05:48:12', 'SMTP Debug: Connection: opening to mail.hydramail.ovh:587, timeout=300, options=array()', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('211', '2022-11-06 05:48:12', 'SMTP Debug: Connection: opened', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('212', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"220 mail.hydramail.ovh ESMTP Postcow\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('213', '2022-11-06 05:48:12', 'SMTP Debug: SERVER -> CLIENT: 220 mail.hydramail.ovh ESMTP Postcow\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('214', '2022-11-06 05:48:12', 'SMTP Debug: CLIENT -> SERVER: EHLO user.lunardev.group\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('215', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"250-mail.hydramail.ovh\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('216', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"250-PIPELINING\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('217', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"250-SIZE 104857600\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('218', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"250-ETRN\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('219', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"250-STARTTLS\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('220', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"250-ENHANCEDSTATUSCODES\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('221', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"250-8BITMIME\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('222', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"250-DSN\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('223', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"250 CHUNKING\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('224', '2022-11-06 05:48:12', 'SMTP Debug: SERVER -> CLIENT: 250-mail.hydramail.ovh\r\n250-PIPELINING\r\n250-SIZE 104857600\r\n250-ETRN\r\n250-STARTTLS\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250-DSN\r\n250 CHUNKING\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('225', '2022-11-06 05:48:12', 'SMTP Debug: CLIENT -> SERVER: STARTTLS\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('226', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"220 2.0.0 Ready to start TLS\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('227', '2022-11-06 05:48:12', 'SMTP Debug: SERVER -> CLIENT: 220 2.0.0 Ready to start TLS\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('228', '2022-11-06 05:48:12', 'SMTP Debug: CLIENT -> SERVER: EHLO user.lunardev.group\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('229', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"250-mail.hydramail.ovh\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('230', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"250-PIPELINING\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('231', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"250-SIZE 104857600\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('232', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"250-ETRN\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('233', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"250-AUTH PLAIN LOGIN\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('234', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"250-AUTH=PLAIN LOGIN\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('235', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"250-ENHANCEDSTATUSCODES\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('236', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"250-8BITMIME\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('237', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"250-DSN\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('238', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"250 CHUNKING\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('239', '2022-11-06 05:48:12', 'SMTP Debug: SERVER -> CLIENT: 250-mail.hydramail.ovh\r\n250-PIPELINING\r\n250-SIZE 104857600\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN\r\n250-AUTH=PLAIN LOGIN\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250-DSN\r\n250 CHUNKING\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('240', '2022-11-06 05:48:12', 'SMTP Debug: Auth method requested: UNSPECIFIED', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('241', '2022-11-06 05:48:12', 'SMTP Debug: Auth methods available on the server: PLAIN,LOGIN', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('242', '2022-11-06 05:48:12', 'SMTP Debug: Requested auth method not available: ', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('243', '2022-11-06 05:48:12', 'SMTP Debug: Auth method selected: LOGIN', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('244', '2022-11-06 05:48:12', 'SMTP Debug: CLIENT -> SERVER: AUTH LOGIN\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('245', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"334 VXNlcm5hbWU6\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('246', '2022-11-06 05:48:12', 'SMTP Debug: SERVER -> CLIENT: 334 VXNlcm5hbWU6\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('247', '2022-11-06 05:48:12', 'SMTP Debug: CLIENT -> SERVER: d2ludGVyQGx1bmFyZGV2Lmdyb3Vw\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('248', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"334 UGFzc3dvcmQ6\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('249', '2022-11-06 05:48:12', 'SMTP Debug: SERVER -> CLIENT: 334 UGFzc3dvcmQ6\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('250', '2022-11-06 05:48:12', 'SMTP Debug: CLIENT -> SERVER: QWxleCRDbGFyazEx\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('251', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"235 2.7.0 Authentication successful\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('252', '2022-11-06 05:48:12', 'SMTP Debug: SERVER -> CLIENT: 235 2.7.0 Authentication successful\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('253', '2022-11-06 05:48:12', 'SMTP Debug: CLIENT -> SERVER: MAIL FROM:<noreply@whmcs.lunardev.group>\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('254', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"250 2.1.0 Ok\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('255', '2022-11-06 05:48:12', 'SMTP Debug: SERVER -> CLIENT: 250 2.1.0 Ok\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('256', '2022-11-06 05:48:12', 'SMTP Debug: CLIENT -> SERVER: RCPT TO:<winter@lunardev.group>\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('257', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"553 5.7.1 <noreply@whmcs.lunardev.group>: Sender address rejected: not owned by user winter@lunardev.group\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('258', '2022-11-06 05:48:12', 'SMTP Debug: SERVER -> CLIENT: 553 5.7.1 <noreply@whmcs.lunardev.group>: Sender address rejected: not owned by user winter@lunardev.group\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('259', '2022-11-06 05:48:12', 'SMTP Debug: SMTP ERROR: RCPT TO command failed: 553 5.7.1 <noreply@whmcs.lunardev.group>: Sender address rejected: not owned by user winter@lunardev.group\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('260', '2022-11-06 05:48:12', 'SMTP Debug: CLIENT -> SERVER: QUIT\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('261', '2022-11-06 05:48:12', 'SMTP Debug: SMTP INBOUND: \"221 2.0.0 Bye\"', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('262', '2022-11-06 05:48:12', 'SMTP Debug: SERVER -> CLIENT: 221 2.0.0 Bye\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('263', '2022-11-06 05:48:12', 'SMTP Debug: Connection: closed', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('264', '2022-11-06 05:48:12', 'SMTP Debug: SMTP Error: The following recipients failed: winter@lunardev.group: <noreply@whmcs.lunardev.group>: Sender address rejected: not owned by user winter@lunardev.group\r\n', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('265', '2022-11-06 05:48:58', 'General Settings Modified. Changes made: System Emails From Email Changed from \'noreply@whmcs.lunardev.group\' to \'contact@lunardev.group\'.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('266', '2022-11-06 05:49:39', 'Mail Provider Configuration Modified: \'SMTP\' - Mail Provider SMTP Activated. \'service_provider\' set to \'Generic\'. \'host\' set to \'mail.hydramail.ovh\'. \'port\' set to \'587\'. \'auth_type\' set to \'plain\'. \'username\' set to \'contact@lunardev.group\'. \'secure\' set to \'tls\'.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('267', '2022-11-06 05:49:56', 'General Settings Modified. Changes made: System Emails From Name Changed from \'WHMCompleteSolution\' to \'Lunar Client Area\'.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('268', '2022-11-06 05:50:17', 'Email Sent to Winter Fe (Email Address Verification) - UserID: 1', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('269', '2022-11-06 05:50:17', 'Verification Email Resent', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('270', '2022-11-06 05:50:42', 'General Settings Modified. Changes made: Logo URL Changed from \'https://dash.lunardev.group/u/logo.png\' to \'\'. System Emails From Name Changed from \'Lunar Client Area\' to \'WHMCompleteSolution\'.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('271', '2022-11-06 05:51:31', 'General Settings Modified. Changes made: Logo URL Changed from \'\' to \'https://dash.lunardev.group/u/logo.png\'. Signature Changed. System Emails From Name Changed from \'WHMCompleteSolution\' to \'Lunar Client Area\'.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('272', '2022-11-06 05:54:04', 'General Settings Modified. Changes made: Affiliate Enabled Enabled. Affiliate Earning Percent Changed from \'0\' to \'3\'. Affiliate Bonus Deposit Changed from \'0.00\' to \'100.00\'. Affiliate Payout Changed from \'25.00\' to \'5.00\'. Affiliates Delay Commission Changed from \'0\' to \'3\'. Affiliate Department Changed from \'0\' to \'1\'. Affiliate Links Changed.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('273', '2022-11-06 05:55:37', 'Activated Affiliate Account - Affiliate ID: 1 - User ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('274', '2022-11-06 05:58:06', 'General Settings Modified. Changes made: Affiliate Bonus Deposit Changed from \'100.00\' to \'0.00\'. Affiliate Links Changed.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('275', '2022-11-06 05:59:56', 'Email Sent to Teagen Oviatt (Email Address Verification) - UserID: 2', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('276', '2022-11-06 05:59:57', 'Created Client Teagen Oviatt - UserID: 2 - Client ID: 2', 'adrianoviatt@outlook.com', '2', '2', '0', '162.157.120.232');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('277', '2022-11-06 05:59:57', 'Opted Out from Marketing Emails - Client ID: 2', 'adrianoviatt@outlook.com', '2', '2', '0', '162.157.120.232');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('278', '2022-11-06 05:59:57', 'Email Sent to Teagen Oviatt (Welcome) - Client ID: 2', 'adrianoviatt@outlook.com', '2', '2', '0', '162.157.120.232');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('279', '2022-11-06 06:01:03', 'Email Sent to Teagen Oviatt (Email Address Verification) - UserID: 2', 'adrianoviatt@outlook.com', '2', '2', '0', '162.157.120.232');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('280', '2022-11-06 06:01:03', 'Verification Email Resent', 'adrianoviatt@outlook.com', '2', '2', '0', '162.157.120.232');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('281', '2022-11-06 06:01:48', 'Client Profile Modified - First Name: \'Teagen\' to \'Adrian\' - Client ID: 2', 'adrianoviatt@outlook.com', '2', '2', '0', '162.157.120.232');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('282', '2022-11-06 06:01:54', 'Activated Affiliate Account - Affiliate ID: 2 - User ID: 2', 'adrianoviatt@outlook.com', '2', '2', '0', '162.157.120.232');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('283', '2022-11-06 06:02:11', 'General Settings Modified. Changes made: Affiliate Links Changed.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('284', '2022-11-06 06:05:23', 'Email Sent to Winter Test (Email Address Verification) - UserID: 3', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('288', '2022-11-06 06:06:29', 'General Settings Modified. Changes made: Logo URL Changed from \'https://dash.lunardev.group/u/logo.png\' to \'\'. Affiliate Links Changed.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('289', '2022-11-06 06:06:43', 'Updated URI Path Mode to: acceptpathinfo', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('290', '2022-11-06 06:06:43', 'Uri Path Management Setting \"URI Mode Override\" Enabled', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('291', '2022-11-06 06:06:48', 'Updated URI Path Mode to: basic', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('292', '2022-11-06 06:06:48', 'Uri Path Management Setting \"URI Mode Override\" Enabled', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('293', '2022-11-06 06:06:51', 'Updated URI Path Mode to: rewrite', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('294', '2022-11-06 06:06:51', 'Uri Path Management Setting \"URI Mode Override\" Disabled', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('295', '2022-11-06 06:07:54', 'URI Path Management Setting \"Rewrite Auto Management\" Enabled', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('296', '2022-11-06 06:15:15', 'General Settings Modified. Changes made: Default Nameserver1 Changed from \'ns1.whmcs.lunardev.group\' to \'\'. Default Nameserver2 Changed from \'ns2.whmcs.lunardev.group\' to \'\'.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('297', '2022-11-06 06:15:46', 'General Settings Modified. Changes made: Add Funds Enabled Enabled. Add Funds Minimum Changed from \'10.00\' to \'1.00\'.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('298', '2022-11-06 06:15:54', 'General Settings Modified. Changes made: Affiliate Earning Percent Changed from \'3\' to \'1\'.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('299', '2022-11-06 06:16:37', 'General Settings Modified. Changes made: Affiliate Links Changed.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('300', '2022-11-06 06:17:04', 'General Settings Modified. Changes made: Affiliate Links Changed.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('301', '2022-11-06 06:18:37', 'General Settings Modified. Changes made: Announcements Tweet Enabled.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('302', '2022-11-06 06:19:42', 'Product Configuration Modified: dedicated_ip Value Modified: \'on\' to \'\'. Product ID: 1', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('303', '2022-11-06 06:21:22', 'Product Configuration Modified: Quantity In Stock Modified: \'15\' to \'3\'. Product ID: 1', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('304', '2022-11-06 06:22:17', 'Product Group Modified: \'Minecraft Hosting\' - Changes: Name Modified: \'Lunar Panel\' to \'Minecraft Hosting\'. Disabled Payment Gateways Modified. Headline Modified: \'\' to \'From vanilla to modded, your own custom server\' - Product Group ID: 1', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('305', '2022-11-06 06:22:25', 'Product Group Modified: \'Minecraft Hosting\' - Changes: Headline Modified: \'From vanilla to modded, your own custom server\' to \'\'. Tagline Modified: \'\' to \'From vanilla to modded, your own custom server\' - Product Group ID: 1', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('306', '2022-11-06 06:26:24', 'Configurable Option Group Created: \'Test\' - Option Group ID: 1', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('307', '2022-11-06 06:26:31', 'Configurable Option Group Modified: \'Test\' - Option Group ID: 1', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('308', '2022-11-06 06:27:43', 'Product Configuration Modified: Product Type Modified: \'server\' to \'other\'. Product ID: 1', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('314', '2022-11-06 06:28:05', 'Running Module Create on Order', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('317', '2022-11-06 06:28:42', 'Product Configuration Modified: Quantity In Stock Modified: \'2\' to \'3\'. Pricing Modified. Product ID: 1', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('325', '2022-11-06 06:29:05', 'Running Module Create on Order', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('327', '2022-11-06 06:29:06', 'PayPal Checkout Subscription Error - Failed to create subscription. Please refer to the module log for further details.', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('328', '2022-11-06 06:29:28', 'Gateway Module Configuration Modified: \'PayPal\'', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('339', '2022-11-06 06:35:35', 'Registrar Activated: \'Enom\'', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('340', '2022-11-06 06:40:52', 'Registrar Deactivated: \'Enom\'', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('341', '2022-11-06 06:41:10', 'Registrar Activated: \'Namecheap\'', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('342', '2022-11-06 06:44:09', 'Registrar Deactivated: \'Namecheap\'', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('343', '2022-11-06 06:44:18', 'Registrar Activated: \'Email Notifications\'', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('344', '2022-11-06 06:44:24', 'Registrar Deactivated: \'Email Notifications\'', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('345', '2022-11-06 06:44:26', 'Registrar Activated: \'Affordable Domains\'', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('346', '2022-11-06 06:44:30', 'Registrar Deactivated: \'Affordable Domains\'', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('347', '2022-11-06 06:44:34', 'Registrar Activated: \'GoDaddy\'', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('348', '2022-11-06 06:47:25', 'Registrar Deactivated: \'GoDaddy\'', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('349', '2022-11-06 06:49:19', 'Cleanup Operation: WHOIS Lookup Log Emptied', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('350', '2022-11-06 06:49:21', 'Cleanup Operation: Gateway Log Emptied', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('351', '2022-11-06 06:49:21', 'Cleanup Operation: Template Cache Emptied', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('352', '2022-11-06 06:49:22', 'Cleanup Operation: Ticket Mail Import Log Emptied', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('353', '2022-11-06 06:49:44', 'Added New Knowledgebase Category - Minecraft', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('354', '2022-11-06 06:50:46', 'Product Configuration Modified: Pricing Modified. Product ID: 1', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('355', '2022-11-06 06:51:21', 'Product Configuration Modified: server_name Value Modified: \'\' to \'Paper Minecraft\'. Product ID: 1', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('356', '2022-11-06 06:51:24', 'Product Configuration Modified: Automatic Setup Modified: \'Order\' to \'Payment\'. Product ID: 1', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('357', '2022-11-06 06:52:07', 'Product Configuration Modified: dedicated_ip Value Modified: \'\' to \'on\'. Product ID: 1', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('358', '2022-11-06 06:52:36', 'Configurable Option Group Deleted - \'Test\' - Option Group ID: 1', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('359', '2022-11-06 06:52:49', 'Product Configuration Modified: Product Hidden. Product ID: 1', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('360', '2022-11-06 06:53:08', 'Product Configuration Modified: Pricing Modified. Product ID: 1', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('370', '2022-11-06 06:53:26', 'PayPal Checkout Subscription Error - Failed to create subscription. Please refer to the module log for further details.', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('377', '2022-11-06 06:55:34', 'Product Configuration Modified: Quantity In Stock Modified: \'2\' to \'3\'. Pricing Modified. Product ID: 1', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('379', '2022-11-06 06:56:45', 'Product Configuration Modified: Quantity In Stock Modified: \'4\' to \'3\'. Product Displayed. Product ID: 1', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('381', '2022-11-06 07:01:40', 'Product Deleted: \'Minecraft Paper\' - Product Group ID: 1', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('382', '2022-11-06 07:02:24', 'Product Created - \'MC Paper | 2GB Ram\' - Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('383', '2022-11-06 07:04:05', 'Product Configuration Modified: Product Color Modified. Server Group Modified: \'0\' to \'1\'. cpu Value Modified: \'\' to \'40\'. disk Value Modified: \'\' to \'2048\'. memory Value Modified: \'\' to \'2048\'. swap Value Modified: \'\' to \'0\'. location_id Value Modified: \'\' to \'2\'. dedicated_ip Value Modified: \'\' to \'on\'. nest_id Value Modified: \'\' to \'1\'. egg_id Value Modified: \'\' to \'1\'. io Value Modified: \'\' to \'500\'. server_name Value Modified: \'\' to \'2GB Paper MC\'. oom_disabled Value Modified: \'\' to \'on\'. backups Value Modified: \'\' to \'0\'. allocations Value Modified: \'\' to \'0\'. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('388', '2022-11-06 07:09:19', 'Product Configuration Modified: Automatic Setup Modified: \'\' to \'Payment\'. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('391', '2022-11-06 07:10:39', 'Product Configuration Modified: dedicated_ip Value Modified: \'on\' to \'\'. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('392', '2022-11-06 07:11:16', 'Product Configuration Modified: Automatic Setup Modified: \'Payment\' to \'Order\'. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('396', '2022-11-06 07:11:40', 'Running Module Create on Order', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('398', '2022-11-06 07:16:21', 'Product Configuration Modified: cpu Value Modified: \'40\' to \'50\'. port_range Value Modified: \'\' to \'25555-65535\'. databases Value Modified: \'\' to \'1\'. backups Value Modified: \'0\' to \'1\'. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('399', '2022-11-06 07:16:34', 'Product Configuration Modified: dedicated_ip Value Modified: \'\' to \'on\'. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('404', '2022-11-06 07:17:13', 'Running Module Create on Order', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('409', '2022-11-06 07:20:16', 'Product Configuration Modified: location_id Value Modified: \'2\' to \'1\'. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('410', '2022-11-06 07:25:30', 'Product Configuration Modified: Featured Product Enabled. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('411', '2022-11-06 07:26:47', 'Product Configuration Modified: cpu Value Modified: \'50\' to \'100\'. dedicated_ip Value Modified: \'on\' to \'\'. nest_id Value Modified: \'1\' to \'9\'. egg_id Value Modified: \'1\' to \'24\'. io Value Modified: \'500\' to \'200\'. oom_disabled Value Modified: \'on\' to \'\'. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('412', '2022-11-06 07:29:43', 'Product Configuration Modified: port_range Value Modified: \'25555-65535\' to \'\'. server_name Value Modified: \'2GB Paper MC\' to \'\'. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('413', '2022-11-06 07:30:27', 'Product Configuration Modified: cpu Value Modified: \'100\' to \'45\'. disk Value Modified: \'2048\' to \'5120\'. location_id Value Modified: \'1\' to \'2\'. nest_id Value Modified: \'9\' to \'1\'. egg_id Value Modified: \'24\' to \'1\'. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('414', '2022-11-06 07:30:31', 'Product Configuration Modified: backups Value Modified: \'1\' to \'0\'. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('426', '2022-11-06 07:40:45', 'Product Configuration Modified: Payment Type Modified: \'free\' to \'recurring\'. Pricing Modified. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('427', '2022-11-06 07:43:03', 'Product Configuration Modified: server_name Value Modified: \'\' to \'2GB Paper MC\'. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('428', '2022-11-06 07:43:13', 'Product Configuration Modified: Configurable Options Upgrade/Downgrade Enabled. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('429', '2022-11-06 07:43:33', 'Product Created - \'MC Paper | 4GB Ram\' - Product ID: 3', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('430', '2022-11-06 07:43:33', 'Product Duplicated: \'MC Paper | 2GB Ram\' to \'MC Paper | 4GB Ram\' - Product ID: 3', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('431', '2022-11-06 07:44:17', 'Product Configuration Modified: cpu Value Modified: \'45\' to \'55\'. disk Value Modified: \'5120\' to \'6144\'. memory Value Modified: \'2048\' to \'4096\'. server_name Value Modified: \'2GB Paper MC\' to \'4GB Paper MC\'. Upgrade Packages Modified. Product ID: 3', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('432', '2022-11-06 07:44:27', 'Product Configuration Modified: Upgrade Packages Modified. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('433', '2022-11-06 07:45:08', 'Product Configuration Modified: Pricing Modified. Product ID: 3', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('434', '2022-11-06 07:45:38', 'Product Created - \'MC Paper | 6GB Ram\' - Product ID: 4', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('435', '2022-11-06 07:45:38', 'Product Duplicated: \'MC Paper | 4GB Ram\' to \'MC Paper | 6GB Ram\' - Product ID: 4', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('436', '2022-11-06 07:46:14', 'Product Configuration Modified: cpu Value Modified: \'55\' to \'85\'. disk Value Modified: \'6144\' to \'8192\'. memory Value Modified: \'4096\' to \'6144\'. Pricing Modified. Product ID: 4', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('437', '2022-11-06 07:47:04', 'Product Created - \'MC Forge | 2GB Ram\' - Product ID: 5', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('438', '2022-11-06 07:47:05', 'Product Duplicated: \'MC Paper | 2GB Ram\' to \'MC Forge | 2GB Ram\' - Product ID: 5', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('439', '2022-11-06 07:48:39', 'Product Modified - Name Modified: \'MC Forge | 2GB Ram\' to \'MC Forge | 5GB Ram\' - Product ID: 5', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('440', '2022-11-06 07:48:39', 'Product Configuration Modified: cpu Value Modified: \'45\' to \'55\'. disk Value Modified: \'5120\' to \'6144\'. memory Value Modified: \'2048\' to \'5120\'. egg_id Value Modified: \'1\' to \'5\'. server_name Value Modified: \'2GB Paper MC\' to \'5GB Forge MC\'. Upgrade Packages Modified. Pricing Modified. Product ID: 5', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('441', '2022-11-06 07:49:10', 'Product Configuration Modified: server_name Value Modified: \'4GB Paper MC\' to \'6GB Paper MC\'. Product ID: 4', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('442', '2022-11-06 07:49:26', 'Product Modified: \'MC Paper | 2GB Ram\' - Display Order Modified: \'1\' to \'0\' - Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('443', '2022-11-06 07:49:26', 'Product Modified: \'MC Paper | 4GB Ram\' - Display Order Modified: \'2\' to \'1\' - Product ID: 3', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('444', '2022-11-06 07:49:26', 'Product Modified: \'MC Paper | 6GB Ram\' - Display Order Modified: \'3\' to \'2\' - Product ID: 4', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('445', '2022-11-06 07:49:26', 'Product Modified: \'MC Forge | 5GB Ram\' - Display Order Modified: \'2\' to \'3\' - Product ID: 5', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('446', '2022-11-06 07:49:44', 'Product Group Created: \'Bot Hosting\' - Product Group ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('447', '2022-11-06 07:50:00', 'Product Group Modified: \'Bot Hosting\' - Changes: Tagline Modified: \'\' to \'Python & Javascript Discord Bot Hosting\' - Product Group ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('448', '2022-11-06 07:50:45', 'Product Created - \'NodeJS | 1GB Ram\' - Product ID: 6', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('449', '2022-11-06 07:52:12', 'Product Configuration Modified: Product Color Modified. Payment Type Modified: \'free\' to \'recurring\'. Server Group Modified: \'0\' to \'1\'. cpu Value Modified: \'\' to \'35\'. disk Value Modified: \'\' to \'2048\'. memory Value Modified: \'\' to \'1024\'. swap Value Modified: \'\' to \'0\'. location_id Value Modified: \'\' to \'2\'. nest_id Value Modified: \'\' to \'8\'. egg_id Value Modified: \'\' to \'23\'. io Value Modified: \'\' to \'500\'. databases Value Modified: \'\' to \'1\'. server_name Value Modified: \'\' to \'NodeJS | 1GB Ram\'. Pricing Modified. Product ID: 6', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('450', '2022-11-06 07:52:38', 'Product Created - \'Python | 1GB Ram\' - Product ID: 7', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('451', '2022-11-06 07:52:38', 'Product Duplicated: \'NodeJS | 1GB Ram\' to \'Python | 1GB Ram\' - Product ID: 7', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('452', '2022-11-06 07:53:12', 'Product Configuration Modified: Featured Product Enabled. Automatic Setup Modified: \'\' to \'Payment\'. nest_id Value Modified: \'8\' to \'9\'. egg_id Value Modified: \'23\' to \'24\'. server_name Value Modified: \'NodeJS | 1GB Ram\' to \'Python | 1GB Ram\'. Product ID: 7', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('453', '2022-11-06 07:53:21', 'Product Configuration Modified: Configurable Options Upgrade/Downgrade Enabled. Upgrade Packages Modified. Product ID: 7', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('454', '2022-11-06 07:53:31', 'Product Configuration Modified: Automatic Setup Modified: \'\' to \'Payment\'. Product ID: 6', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('455', '2022-11-06 07:53:36', 'Product Modified: \'MC Forge | 5GB Ram\' - Display Order Modified: \'3\' to \'2\' - Product ID: 5', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('456', '2022-11-06 07:53:36', 'Product Modified: \'MC Paper | 6GB Ram\' - Display Order Modified: \'2\' to \'3\' - Product ID: 4', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('457', '2022-11-06 07:53:42', 'Product Configuration Modified: Automatic Setup Modified: \'Order\' to \'Payment\'. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('458', '2022-11-06 07:53:49', 'Product Configuration Modified: Automatic Setup Modified: \'Order\' to \'Payment\'. Product ID: 3', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('459', '2022-11-06 07:53:56', 'Product Configuration Modified: Automatic Setup Modified: \'Order\' to \'Payment\'. Product ID: 5', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('460', '2022-11-06 07:54:09', 'Product Configuration Modified: Automatic Setup Modified: \'Order\' to \'Payment\'. Product ID: 4', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('461', '2022-11-06 07:54:56', 'Product Configuration Modified: Product Short Description Modified. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('462', '2022-11-06 07:55:20', 'Product Configuration Modified: Product Short Description Modified. Product Tagline Modified. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('463', '2022-11-06 07:57:22', 'Product Configuration Modified: Product Description Modified. Product Tagline Modified. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('464', '2022-11-06 07:58:05', 'Product Configuration Modified: Product Description Modified. Product ID: 3', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('465', '2022-11-06 07:59:09', 'Product Configuration Modified: Product Description Modified. Product ID: 5', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('466', '2022-11-06 07:59:54', 'Product Configuration Modified: Product Description Modified. Product ID: 4', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('467', '2022-11-06 08:00:03', 'Product Configuration Modified: Product Description Modified. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('468', '2022-11-06 08:00:13', 'Product Configuration Modified: Upgrade Packages Modified. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('469', '2022-11-06 08:02:34', 'Configurable Option Group Created: \'Minecraft Hosting\' - Option Group ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('470', '2022-11-06 08:03:02', 'Configurable Option Group Modified: \'Minecraft Hosting\' - Option Group ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('471', '2022-11-06 08:03:11', 'Configurable Option Group Deleted - \'Minecraft Hosting\' - Option Group ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('482', '2022-11-06 08:19:13', 'Added New Knowledgebase Article - How to add plugins on MC Paper', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('483', '2022-11-06 08:36:22', 'Modified Knowledgebase Article ID: 1', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('484', '2022-11-06 08:41:47', 'Modified Knowledgebase Article ID: 1', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('485', '2022-11-06 08:42:25', 'Modified Knowledgebase Article ID: 1', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('486', '2022-11-06 08:42:34', 'Modified Knowledgebase Article ID: 1', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('487', '2022-11-06 08:42:55', 'Modified Knowledgebase Article ID: 1', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('488', '2022-11-06 03:43:01', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('489', '2022-11-06 03:43:01', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('490', '2022-11-06 03:43:01', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('491', '2022-11-06 08:46:30', 'Product Configuration Modified: Product Description Modified. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('492', '2022-11-06 08:46:36', 'Product Configuration Modified: cpu Value Modified: \'45\' to \'55\'. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('493', '2022-11-06 08:48:08', 'Product Configuration Modified: Product Description Modified. cpu Value Modified: \'55\' to \'100\'. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('494', '2022-11-06 08:48:24', 'Product Configuration Modified: Product Description Modified. cpu Value Modified: \'55\' to \'110\'. Product ID: 3', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('495', '2022-11-06 08:48:39', 'Product Configuration Modified: Product Description Modified. cpu Value Modified: \'55\' to \'115\'. Product ID: 5', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('496', '2022-11-06 08:48:58', 'Product Configuration Modified: Product Description Modified. cpu Value Modified: \'85\' to \'120\'. Product ID: 4', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('500', '2022-11-06 09:13:34', 'Product Configuration Modified: Product Description Modified. Product ID: 2', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('501', '2022-11-06 09:13:42', 'Product Configuration Modified: Product Description Modified. Product ID: 3', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('502', '2022-11-06 09:13:52', 'Product Configuration Modified: Product Description Modified. Product ID: 5', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('503', '2022-11-06 09:13:59', 'Product Configuration Modified: Product Description Modified. Product ID: 4', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('504', '2022-11-06 09:14:10', 'Product Configuration Modified: Product Description Modified. Product ID: 4', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('505', '2022-11-06 09:14:16', 'Product Configuration Modified: databases Value Modified: \'1\' to \'3\'. Product ID: 4', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('506', '2022-11-06 09:19:28', 'Created role \"1: Admin\" with access to \"acceptorder, acceptquote, activatemodule, addannouncement, addbannedip, addbillableitem, addcancelrequest, addclient, addclientnote, addcontact, addcredit, addinvoicepayment, addorder, addpaymethod, addproduct, addprojectmessage, addprojecttask, addticketnote, addticketreply, addtransaction, adduser, affiliateactivate, blockticketsender, applycredit, cancelorder, capturepayment, closeclient, createclientinvite, createssotoken, createinvoice, createoauthcredential, createorupdatetld, createproject, createquote, deactivatemodule, decryptpassword, deleteannouncement, deleteclient, deletecontact, deleteoauthcredential, deleteorder, deletepaymethod, deleteprojecttask, deletequote, deleteticket, deleteticketnote, deleteticketreply, deleteuserclient, domaingetlockingstatus, domaingetnameservers, domaingetwhoisinfo, domainregister, domainrelease, domainrenew, domainrequestepp, domaintoggleidprotect, domaintransfer, domainupdatelockingstatus, domainupdatenameservers, domainupdatewhoisinfo, domainwhois, encryptpassword, endtasktimer, fraudorder, geninvoices, getactivitylog, getadmindetails, getadminusers, getaffiliates, getannouncements, getautomationlog, getcancelledpackages, getclientgroups, getclientpassword, getclients, getclientsaddons, getclientsdetails, getclientsdomains, getclientsproducts, getconfigurationvalue, getcontacts, getcredits, getcurrencies, getemails, getemailtemplates, gethealthstatus, getinvoice, getinvoices, getmoduleconfigurationparameters, getmodulequeue, getorders, getorderstatuses, getpaymentmethods, getpaymethods, getpermissionslist, getproducts, getproject, getprojects, getpromotions, getquotes, getregistrars, getservers, getstaffonline, getstats, getsupportdepartments, getsupportstatuses, getticket, getticketattachment, getticketcounts, getticketnotes, getticketpredefinedcats, getticketpredefinedreplies, gettickets, gettldpricing, gettodoitems, gettodoitemstatuses, gettransactions, getuserpermissions, listoauthcredentials, logactivity, mergeticket, modulechangepackage, modulechangepw, modulecreate, modulecustom, modulesuspend, moduleterminate, moduleunsuspend, openticket, orderfraudcheck, pendingorder, resetpassword, sendadminemail, sendemail, sendquote, starttasktimer, triggernotificationevent, updateadminnotes, updateannouncement, updateclient, updateclientaddon, updateclientdomain, updateclientproduct, updatecontact, updateinvoice, updatemoduleconfiguration, updateoauthcredential, updatepaymethod, updateproject, updateprojecttask, updatequote, updateticket, updateticketreply, updatetodoitem, updatetransaction, updateuser, updateuserpermissions, upgradeproduct, validatelogin, whmcsdetails, getusers\"', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('507', '2022-11-06 09:19:35', 'Created API Credential identifier \"lyCsze18ikxVxivT7bCCxXWnza1m66Kz\" for Admin \"1: winter\"', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('508', '2022-11-06 09:20:42', 'Deleted API Credential identifier \"lyCsze18ikxVxivT7bCCxXWnza1m66Kz\" for Admin \"1: winter\"', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('509', '2022-11-06 09:25:37', 'Product Configuration Modified: cpu Value Modified: \'35\' to \'10\'. Product ID: 6', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('510', '2022-11-06 09:26:15', 'Product Configuration Modified: Product Description Modified. Product ID: 6', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('511', '2022-11-06 09:26:46', 'Product Configuration Modified: Product Description Modified. Product ID: 6', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('512', '2022-11-06 09:27:02', 'Product Configuration Modified: Product Description Modified. Product ID: 7', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('513', '2022-11-06 09:27:11', 'Product Configuration Modified: Product Description Modified. Product ID: 6', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('514', '2022-11-06 09:27:23', 'Product Configuration Modified: Product Description Modified. Product ID: 7', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('515', '2022-11-06 09:27:46', 'Product Created - \'Python | 3GB Ram\' - Product ID: 8', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('516', '2022-11-06 09:27:46', 'Product Duplicated: \'Python | 1GB Ram\' to \'Python | 3GB Ram\' - Product ID: 8', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('517', '2022-11-06 09:29:25', 'Product Configuration Modified: Product Description Modified. cpu Value Modified: \'35\' to \'20\'. disk Value Modified: \'2048\' to \'6144\'. memory Value Modified: \'1024\' to \'3072\'. server_name Value Modified: \'Python | 1GB Ram\' to \'Python | 3GB Ram\'. backups Value Modified: \'\' to \'2\'. Product ID: 8', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('518', '2022-11-06 09:29:47', 'Product Configuration Modified: Product Description Modified. Product ID: 8', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('519', '2022-11-06 09:30:06', 'Product Created - \'NodeJS | 3GB Ram\' - Product ID: 9', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('520', '2022-11-06 09:30:06', 'Product Duplicated: \'NodeJS | 1GB Ram\' to \'NodeJS | 3GB Ram\' - Product ID: 9', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('521', '2022-11-06 09:31:08', 'Product Configuration Modified: Product Description Modified. cpu Value Modified: \'10\' to \'20\'. disk Value Modified: \'2048\' to \'6144\'. memory Value Modified: \'1024\' to \'3072\'. databases Value Modified: \'1\' to \'2\'. server_name Value Modified: \'NodeJS | 1GB Ram\' to \'NodeJS | 3GB Ram\'. backups Value Modified: \'\' to \'2\'. Product ID: 9', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('522', '2022-11-06 09:31:39', 'Product Configuration Modified: Upgrade Packages Modified. Product ID: 8', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('523', '2022-11-06 09:31:46', 'Product Configuration Modified: Upgrade Packages Modified. Product ID: 7', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('524', '2022-11-06 09:31:53', 'Product Configuration Modified: Upgrade Packages Modified. Product ID: 9', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('525', '2022-11-06 09:32:05', 'Product Configuration Modified: Upgrade Packages Modified. Product ID: 6', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('526', '2022-11-06 09:32:12', 'Product Configuration Modified: Upgrade Packages Modified. Product ID: 6', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('527', '2022-11-06 09:32:30', 'Product Configuration Modified: Upgrade Packages Modified. Product ID: 9', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('528', '2022-11-06 09:32:37', 'Product Configuration Modified: Upgrade Packages Modified. Product ID: 7', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('529', '2022-11-06 09:32:43', 'Product Configuration Modified: Upgrade Packages Modified. Product ID: 8', 'winter', '0', '3', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('530', '2022-11-06 09:34:11', 'Product Configuration Modified: Upgrade Packages Modified. Product ID: 4', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('531', '2022-11-06 09:34:43', 'Product Modified - Name Modified: \'MC Forge | 5GB Ram\' to \'MC Paper | 5GB Ram\' - Product ID: 5', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('532', '2022-11-06 09:34:43', 'Product Configuration Modified: egg_id Value Modified: \'5\' to \'1\'. server_name Value Modified: \'5GB Forge MC\' to \'5GB PaperMC\'. Product ID: 5', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('533', '2022-11-06 09:34:58', 'Product Configuration Modified: Featured Product Disabled. Product ID: 2', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('534', '2022-11-06 09:35:08', 'Product Configuration Modified: Featured Product Disabled. Product ID: 3', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('535', '2022-11-06 09:35:13', 'Product Configuration Modified: Upgrade Packages Modified. Product ID: 3', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('536', '2022-11-06 09:35:21', 'Product Configuration Modified: Upgrade Packages Modified. Product ID: 5', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('537', '2022-11-06 09:35:30', 'Product Configuration Modified: Upgrade Packages Modified. Product ID: 4', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('538', '2022-11-06 09:35:37', 'Product Configuration Modified: Featured Product Enabled. Product ID: 9', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('539', '2022-11-06 09:36:00', 'Product Configuration Modified: Featured Product Disabled. Product ID: 7', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('540', '2022-11-06 09:36:58', 'General Settings Modified. Changes made: Affiliate Links Changed.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('541', '2022-11-06 09:37:36', 'Email Sent to Winter Fe ([Ticket ID: BYO-439263] Affiliate Withdrawal Request) - Client ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('542', '2022-11-06 09:38:03', 'Deleted Ticket - Ticket ID: 1', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('543', '2022-11-06 09:38:21', 'Affiliate ID 1 Details Updated', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('544', '2022-11-06 09:44:25', 'Automatic Backup Settings Changed. Daily Email Backup changed from \'\' to \'contact@lunardev.group\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('545', '2022-11-06 09:44:34', 'Email Sent to Noah Bryfogle (Email Address Verification) - UserID: 4', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('546', '2022-11-06 09:44:34', 'Created Client Noah Bryfogle - UserID: 4 - Client ID: 4', 'unsoughtconch@gmail.com', '4', '4', '0', '24.102.195.35');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('547', '2022-11-06 09:44:34', 'Opted Out from Marketing Emails - Client ID: 4', 'unsoughtconch@gmail.com', '4', '4', '0', '24.102.195.35');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('548', '2022-11-06 09:44:35', 'Email Sent to Noah Bryfogle (Welcome) - Client ID: 4', 'unsoughtconch@gmail.com', '4', '4', '0', '24.102.195.35');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('549', '2022-11-06 09:48:49', 'Product Modified - Name Modified: \'MC Paper | 2GB Ram\' to \'Coal\' - Product ID: 2', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('550', '2022-11-06 09:48:49', 'Product Configuration Modified: server_name Value Modified: \'2GB Paper MC\' to \'Minecraft | Coal\'. Product ID: 2', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('551', '2022-11-06 09:49:06', 'Product Modified - Name Modified: \'MC Paper | 4GB Ram\' to \'Redstone\' - Product ID: 3', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('552', '2022-11-06 09:49:06', 'Product Configuration Modified: server_name Value Modified: \'4GB Paper MC\' to \'Minecraft | Redstone\'. Product ID: 3', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('553', '2022-11-06 09:49:24', 'Product Modified - Name Modified: \'MC Paper | 5GB Ram\' to \'Diamond\' - Product ID: 5', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('554', '2022-11-06 09:49:24', 'Product Configuration Modified: server_name Value Modified: \'5GB PaperMC\' to \'Minecraft | Diamond\'. Product ID: 5', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('555', '2022-11-06 09:49:47', 'Product Modified - Name Modified: \'MC Paper | 6GB Ram\' to \'Netherite\' - Product ID: 4', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('556', '2022-11-06 09:49:47', 'Product Configuration Modified: server_name Value Modified: \'6GB Paper MC\' to \'Minecraft | Netherite\'. Product ID: 4', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('557', '2022-11-06 09:54:42', 'Email Sent to Motzumoto Last (Email Address Verification) - UserID: 5', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('558', '2022-11-06 09:54:42', 'Created Client Motzumoto Last - UserID: 5 - Client ID: 5', 'cuztopher1e@gmail.com', '5', '5', '0', '173.94.240.217');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('559', '2022-11-06 09:54:42', 'Opted In to Marketing Emails - Client ID: 5', 'cuztopher1e@gmail.com', '5', '5', '0', '173.94.240.217');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('560', '2022-11-06 09:54:42', 'Email Sent to Motzumoto Last (Welcome) - Client ID: 5', 'cuztopher1e@gmail.com', '5', '5', '0', '173.94.240.217');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('561', '2022-11-06 09:55:28', 'Activated Affiliate Account - Affiliate ID: 3 - User ID: 4', 'unsoughtconch@gmail.com', '4', '4', '0', '24.102.195.35');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('562', '2022-11-06 09:55:39', 'User Account Modified - Last Name changed from \'Last\' to \'Lunar\' - UserID: 5', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('563', '2022-11-06 09:56:18', 'Client Profile Modified - Last Name: \'Last\' to \'Lunar\', Company Name: \'\' to \'Lunar Development\' - Client ID: 5', 'cuztopher1e@gmail.com', '5', '5', '0', '173.94.240.217');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('564', '2022-11-06 09:56:32', 'Email Sent to Noah Bryfogle (Email Address Verification) - UserID: 4', 'unsoughtconch@gmail.com', '4', '4', '0', '24.102.195.35');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('565', '2022-11-06 09:56:32', 'Verification Email Resent', 'unsoughtconch@gmail.com', '4', '4', '0', '24.102.195.35');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('566', '2022-11-06 09:58:55', 'Admin User \'Motzumoto\' with role Full Administrator created', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('567', '2022-11-06 10:08:39', 'Email Sent to Test ([Ticket ID: ARZ-616732] test)', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('568', '2022-11-06 10:17:06', 'General Settings Modified. Changes made: Affiliate Links Changed.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('569', '2022-11-06 10:18:44', 'Activated Affiliate Account - Affiliate ID: 4 - User ID: 5', 'Motzumoto', '5', '5', '2', '173.94.240.217');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('570', '2022-11-06 10:19:03', 'Gateway Module Activated: \'Stripe\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('571', '2022-11-06 10:22:03', 'Gateway Module Configuration Modified: \'Stripe\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('572', '2022-11-06 10:22:09', 'Gateway Module Configuration Modified: \'Stripe\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('575', '2022-11-06 10:47:32', 'Domain Pricing TLD Created: \'.com\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('576', '2022-11-06 10:47:32', 'Domain Pricing TLD Created: \'.net\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('577', '2022-11-06 10:47:32', 'Domain Pricing TLD Created: \'.org\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('578', '2022-11-06 10:47:32', 'Domain Pricing TLD Created: \'.biz\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('579', '2022-11-06 10:47:32', 'Domain Pricing TLD Created: \'.info\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('580', '2022-11-06 10:48:30', 'Registrar Activated: \'Enom\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('581', '2022-11-06 10:48:30', 'Domain Registrar Modified: \'Enom\' - \'Username\' set to \'winterfe\'.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('582', '2022-11-06 10:51:20', 'Automation Settings Changed. Changes made: DR Auto Delete Inactive Clients changed from \'on\' to \'off\'. DR Auto Delete Inactive Clients Users changed from \'on\' to \'off\'. DR Auto Delete Inactive Clients Months changed from \'\' to \'0\'. Close Inactive Tickets changed from \'0\' to \'168\'. Prune Ticket Attachments Months changed from \'0\' to \'3\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('589', '2022-11-06 10:58:53', 'Promotion Created: \'welcome\' - Promotion ID: 1', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('590', '2022-11-06 11:03:07', 'General Settings Modified. Changes made: Domain Changed from \'http://user.lunardev.group\' to \'http://user.lunardev.group/\'. Allow Register Disabled. Signature Changed.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('591', '2022-11-06 11:19:32', 'General Settings Modified. Changes made: Allow Transfer Disabled. Allow Own Domain Disabled.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('592', '2022-11-06 11:19:52', 'General Settings Modified. Changes made: Enable Domain Renewal Orders Disabled. Auto Renew Domainson Payment Disabled. Free Domain Auto Renew Requires Product Disabled. Domain Auto Renew Default Disabled. Domain To Do List Entries Disabled. Allow IDN Domains Disabled.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('593', '2022-11-06 11:20:08', 'General Settings Modified. Changes made: Registrar Admin Use Client Details Disabled.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('594', '2022-11-06 11:21:21', 'General Settings Modified. Changes made: Order Form Template Changed from \'standard_cart\' to \'legacy_modern\'. Product Monthly Pricing Breakdown Enabled.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('595', '2022-11-06 11:21:38', 'General Settings Modified. Changes made: Invoice Pay To Changed.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('596', '2022-11-06 11:22:42', 'General Settings Modified. Changes made: Clients Profile Optional Fields Changed from \'\' to \'address1,city,state,postcode,phonenumber\'.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('597', '2022-11-06 11:26:20', 'Added New Announcement (Opening Promotional Code)', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('598', '2022-11-06 11:27:59', 'Added New Predefined Reply Category - Minecraft', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('599', '2022-11-06 11:28:24', 'Added New Predefined Reply - ', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('600', '2022-11-06 11:35:58', 'Modified Predefined Reply (ID: 1)', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('601', '2022-11-06 11:38:24', 'Support Department Created: \'Game Servers\' - Support Department ID: 2', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('602', '2022-11-06 11:39:32', 'Support Department Modified: Name Changed: \'Game Servers\' to \'Billing Issue\' - Support Department ID: 2', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('603', '2022-11-06 11:39:32', 'Support Department Modified: \'Billing Issue\' - Configuration Modified - Support Department ID: 2', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('604', '2022-11-06 11:39:55', 'Support Department Modified: Name Changed: \'General Enquiries\' to \'General\' - Support Department ID: 1', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('605', '2022-11-06 11:39:55', 'Support Department Modified: \'General\' - Configuration Modified - Support Department ID: 1', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('606', '2022-11-06 11:40:00', 'Email Sent to Winter Fe ([Ticket ID: LZU-287273] Test) - Client ID: 1', 'winter@lunardev.group', '1', '1', '0', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('607', '2022-11-06 11:40:47', 'Email Sent to Winter Fe ([Ticket ID: LZU-287273] Test) - Client ID: 1', 'winter', '1', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('608', '2022-11-06 11:43:20', 'Email Sent to Winter Fe (Your Feedback is Requested for Ticket #LZU-287273) - Client ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('609', '2022-11-06 11:45:08', 'Admin Email Notification Sending Failed - Mailer Exception - Email Sending Failed: SMTP Error: The following recipients failed: winter@lunardev.group: <noreply@user.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\r\ncuztopher1e@gmail.com: <noreply@user.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\r\n (Subject: WHMCS Admin Failed Login Attempt)', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('610', '2022-11-06 11:45:08', 'Failed Admin Login Attempt - IP: 97.89.6.129', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('611', '2022-11-06 07:45:01', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('612', '2022-11-06 07:45:05', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('613', '2022-11-06 07:45:05', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('614', '2022-11-06 07:45:05', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('615', '2022-11-06 07:45:06', 'Admin Email Notification Sending Failed - Mailer Exception - Email Sending Failed: SMTP Error: The following recipients failed: winter@lunardev.group: <noreply@user.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\r\ncuztopher1e@gmail.com: <noreply@user.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\r\n (Subject: WHMCS Domain Synchronisation Cron Report)', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('616', '2022-11-06 09:00:02', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('617', '2022-11-06 09:00:02', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('618', '2022-11-06 09:00:03', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('619', '2022-11-06 09:00:03', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('620', '2022-11-06 09:00:03', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('621', '2022-11-06 09:00:03', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('622', '2022-11-06 09:00:03', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('623', '2022-11-06 09:00:03', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('624', '2022-11-06 09:00:03', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('625', '2022-11-06 09:00:03', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('626', '2022-11-06 09:00:03', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('627', '2022-11-06 09:00:03', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('628', '2022-11-06 09:00:03', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('629', '2022-11-06 09:00:03', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('630', '2022-11-06 09:00:03', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('631', '2022-11-06 09:00:03', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('632', '2022-11-06 09:00:03', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('633', '2022-11-06 09:00:03', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('634', '2022-11-06 09:00:03', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('635', '2022-11-06 09:00:03', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('636', '2022-11-06 09:00:03', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('637', '2022-11-06 09:00:03', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('638', '2022-11-06 09:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('639', '2022-11-06 09:00:08', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('640', '2022-11-06 09:00:08', 'Admin Email Notification Sending Failed - Mailer Exception - Email Sending Failed: SMTP Error: The following recipients failed: winter@lunardev.group: <noreply@user.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\r\ncuztopher1e@gmail.com: <noreply@user.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\r\n (Subject: WHMCS Cron Job Activity)', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('641', '2022-11-06 09:00:08', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('642', '2022-11-06 09:00:08', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('643', '2022-11-06 09:00:09', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('644', '2022-11-06 09:00:09', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('645', '2022-11-06 09:00:09', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('646', '2022-11-06 09:00:09', 'Cron Job: Email Sending Failed: SMTP Error: The following recipients failed: contact@lunardev.group: <noreply@user.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\r\n', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('647', '2022-11-06 11:45:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('648', '2022-11-06 11:45:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('649', '2022-11-06 11:45:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('650', '2022-11-06 11:45:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('651', '2022-11-06 11:45:03', 'Admin Email Notification Sending Failed - Mailer Exception - Email Sending Failed: SMTP Error: The following recipients failed: winter@lunardev.group: <noreply@user.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\r\ncuztopher1e@gmail.com: <noreply@user.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\r\n (Subject: WHMCS Domain Synchronisation Cron Report)', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('652', '2022-11-06 18:51:02', 'Product Configuration Modified: Pricing Modified. Product ID: 9', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('653', '2022-11-06 18:51:10', 'Product Configuration Modified: Pricing Modified. Product ID: 8', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('654', '2022-11-06 18:51:26', 'Product Configuration Modified: Allow Multiple Quantities Enabled. Product ID: 8', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('655', '2022-11-06 18:51:37', 'Product Configuration Modified: Allow Multiple Quantities Enabled. Product ID: 7', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('656', '2022-11-06 18:51:44', 'Product Configuration Modified: Allow Multiple Quantities Enabled. Product ID: 9', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('657', '2022-11-06 18:51:51', 'Product Configuration Modified: Allow Multiple Quantities Enabled. Product ID: 6', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('658', '2022-11-06 19:14:34', 'Gateway Module Configuration Modified: \'PayPal\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('659', '2022-11-06 19:18:29', 'New Order Placed - Order ID: 8 - User ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('660', '2022-11-06 19:18:29', 'Created Invoice - Invoice ID: 5', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('661', '2022-11-06 19:18:31', 'Email Sent to Winter Fe (Customer Invoice) - Client ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('662', '2022-11-06 19:18:32', 'Email Sending Failed - Email Sending Failed: SMTP Error: The following recipients failed: winter@lunardev.group: <noreply@user.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\r\ncuztopher1e@gmail.com: <noreply@user.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\r\n (Subject: WHMCS New Order Notification)', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('663', '2022-11-06 19:18:32', 'Admin Email Message Sending Failed - Email Sending Failed: SMTP Error: The following recipients failed: winter@lunardev.group: <noreply@user.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\r\ncuztopher1e@gmail.com: <noreply@user.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\r\n (Subject: WHMCS New Order Notification)', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('664', '2022-11-06 19:18:32', 'Email Sent to Winter Fe (Order Confirmation) - Client ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('665', '2022-11-06 19:18:35', 'Added Transaction - Transaction ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('666', '2022-11-06 19:18:35', 'Added Invoice Payment - Invoice ID: 5', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('667', '2022-11-06 19:18:35', 'Invoice Marked Paid - Invoice ID: 5', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('668', '2022-11-06 19:18:35', 'Email Sent to Winter Fe (Invoice Payment Confirmation) - Client ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('669', '2022-11-06 19:18:35', 'Running Module Create on Payment', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('670', '2022-11-06 19:18:37', 'Module Create Successful - Service ID: 8', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('671', '2022-11-06 19:18:38', 'Email Sent to Winter Fe (New Product Information) - Client ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('672', '2022-11-06 19:18:38', 'Email Sending Failed - Email Sending Failed: SMTP Error: The following recipients failed: winter@lunardev.group: <noreply@user.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\r\ncuztopher1e@gmail.com: <noreply@user.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\r\n (Subject: WHMCS Automatic Setup Successful)', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('673', '2022-11-06 19:18:38', 'Admin Email Message Sending Failed - Email Sending Failed: SMTP Error: The following recipients failed: winter@lunardev.group: <noreply@user.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\r\ncuztopher1e@gmail.com: <noreply@user.lunardev.group>: Sender address rejected: not owned by user contact@lunardev.group\r\n (Subject: WHMCS Automatic Setup Successful)', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('674', '2022-11-06 19:33:38', 'General Settings Modified. Changes made: Logo URL Changed from \'\' to \'https://dash.lunardev.group/u/logo.png\'.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('675', '2022-11-06 19:33:49', 'General Settings Modified. Changes made: Domain Changed from \'http://user.lunardev.group/\' to \'https://user.lunardev.group/\'.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('676', '2022-11-06 19:34:11', 'General Settings Modified. Changes made: Enable Translations Enabled.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('677', '2022-11-06 19:36:36', 'General Settings Modified. Changes made: Email Global Header Changed. System Emails From Email Changed from \'noreply@user.lunardev.group\' to \'contact@lunardev.group\'.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('678', '2022-11-06 19:38:06', 'General Settings Modified. Changes made: Add Funds Maximum Changed from \'100.00\' to \'200.00\'. Add Funds Maximum Balance Changed from \'300.00\' to \'400.00\'.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('679', '2022-11-06 19:38:32', 'General Settings Modified. Changes made: Affiliate Earning Percent Changed from \'1\' to \'5\'.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('680', '2022-11-06 19:39:17', 'General Settings Modified. Changes made: Captcha Forms Changed from \'{\"checkoutCompletion\":false,\"domainChecker\":true,\"registration\":true,\"contactUs\":true,\"submitTicket\":true,\"login\":false}\' to \'{\"checkoutCompletion\":false,\"domainChecker\":true,\"registration\":true,\"contactUs\":true,\"submitTicket\":true,\"login\":true}\'. CC Allow Customer Delete Enabled.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('681', '2022-11-06 19:40:30', 'Order Accepted - Order ID: 8', 'winter', '1', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('682', '2022-11-06 15:45:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('683', '2022-11-06 15:45:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('684', '2022-11-06 15:45:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('685', '2022-11-06 17:00:01', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('686', '2022-11-06 19:45:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('687', '2022-11-06 19:45:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('688', '2022-11-06 19:45:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('689', '2022-11-06 23:45:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('690', '2022-11-06 23:45:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('691', '2022-11-06 23:45:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('692', '2022-11-06 23:45:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('693', '2022-11-07 01:00:01', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('694', '2022-11-07 03:45:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('695', '2022-11-07 03:45:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('696', '2022-11-07 03:45:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('697', '2022-11-07 07:45:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('698', '2022-11-07 07:45:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('699', '2022-11-07 07:45:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('700', '2022-11-07 09:00:02', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('701', '2022-11-07 09:00:02', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('702', '2022-11-07 09:00:03', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('703', '2022-11-07 09:00:03', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('704', '2022-11-07 09:00:03', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('705', '2022-11-07 09:00:03', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('706', '2022-11-07 09:00:03', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('707', '2022-11-07 09:00:03', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('708', '2022-11-07 09:00:03', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('709', '2022-11-07 09:00:03', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('710', '2022-11-07 09:00:03', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('711', '2022-11-07 09:00:03', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('712', '2022-11-07 09:00:03', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('713', '2022-11-07 09:00:03', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('714', '2022-11-07 09:00:03', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('715', '2022-11-07 09:00:03', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('716', '2022-11-07 09:00:03', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('717', '2022-11-07 09:00:03', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('718', '2022-11-07 09:00:03', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('719', '2022-11-07 09:00:03', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('720', '2022-11-07 09:00:03', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('721', '2022-11-07 09:00:03', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('722', '2022-11-07 09:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('723', '2022-11-07 09:00:07', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('724', '2022-11-07 09:00:11', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('725', '2022-11-07 09:00:11', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('726', '2022-11-07 09:00:11', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('727', '2022-11-07 09:00:11', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('728', '2022-11-07 09:00:12', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('729', '2022-11-07 09:00:14', 'Cron Job: Email Backup - Sent Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('730', '2022-11-07 09:00:14', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('731', '2022-11-07 11:45:01', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('732', '2022-11-07 11:45:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('733', '2022-11-07 11:45:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('734', '2022-11-07 11:45:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('735', '2022-11-07 15:45:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('736', '2022-11-07 15:45:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('737', '2022-11-07 15:45:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('738', '2022-11-07 20:58:15', 'Automatic Cancellation Requested Immediately - Service ID: 8', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('739', '2022-11-07 20:58:17', 'Email Sent to Winter Fe (Cancellation Request Confirmation) - Client ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('740', '2022-11-07 17:00:02', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('741', '2022-11-07 22:00:54', 'General Settings Modified. Changes made: System URL Changed from \'http://user.lunardev.group/\' to \'https://user.lunardev.group/\'.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('742', '2022-11-07 22:01:06', 'Gateway Module Configuration Modified: \'PayPal\'', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('743', '2022-11-07 22:01:11', 'Gateway Module Configuration Modified: \'PayPal\'', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('744', '2022-11-07 22:01:24', 'Gateway Module Configuration Modified: \'PayPal\'', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('745', '2022-11-07 22:13:30', 'General Settings Modified. Changes made: Logo URL Changed from \'https://dash.lunardev.group/u/logo.png\' to \'\'.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('746', '2022-11-07 22:13:50', 'General Settings Modified. Changes made: Logo URL Changed from \'\' to \'x\'.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('747', '2022-11-07 22:17:55', 'General Settings Modified. Changes made: Logo URL Changed from \'x\' to \'https://dash.lunardev.group/u/6c7QzS.png\'.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('748', '2022-11-07 22:18:32', 'General Settings Modified. Changes made: Email Global Header Changed.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('749', '2022-11-07 22:18:53', 'General Settings Modified. Changes made: Email Global Header Changed.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('750', '2022-11-07 22:19:02', 'General Settings Modified. Changes made: System Emails From Name Changed from \'Lunar Client Area\' to \'Lunar Hosting\'.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('751', '2022-11-07 22:19:34', 'General Settings Modified. Changes made: Email Global Header Changed.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('752', '2022-11-07 22:19:52', 'General Settings Modified. Changes made: Email Global Header Changed.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('753', '2022-11-07 22:20:08', 'General Settings Modified. Changes made: Email Global Header Changed.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('754', '2022-11-07 22:20:21', 'General Settings Modified. Changes made: Email Global Header Changed.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('755', '2022-11-07 22:20:32', 'General Settings Modified. Changes made: Email Global Header Changed.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('756', '2022-11-07 22:33:16', 'New Order Placed - Order ID: 9 - User ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('757', '2022-11-07 22:33:16', 'Created Invoice - Invoice ID: 6', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('758', '2022-11-07 22:33:18', 'Email Sent to Winter Fe (Customer Invoice) - Client ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('759', '2022-11-07 22:33:20', 'Email Sent (WHMCS New Order Notification) - Client ID: 1 - Order ID: 9', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('760', '2022-11-07 22:33:21', 'Email Sent to Winter Fe (Order Confirmation) - Client ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('761', '2022-11-07 22:35:11', 'Subscription Cancellation for ID I-C2SS9WJ25M0H Failed - Service ID: 9', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('762', '2022-11-07 22:35:17', 'Order Status set to Cancelled - Order ID: 9', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('763', '2022-11-08 00:41:34', 'Email Sent to Jaden Mayhue (Email Address Verification) - UserID: 6', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('764', '2022-11-08 00:41:34', 'Created Client Jaden Mayhue - UserID: 6 - Client ID: 6', 'ileakpics2020@gmail.com', '6', '6', '0', '209.169.222.202');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('765', '2022-11-08 00:41:34', 'Opted Out from Marketing Emails - Client ID: 6', 'ileakpics2020@gmail.com', '6', '6', '0', '209.169.222.202');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('766', '2022-11-08 00:41:35', 'Email Sent to Jaden Mayhue (Welcome) - Client ID: 6', 'ileakpics2020@gmail.com', '6', '6', '0', '209.169.222.202');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('767', '2022-11-08 00:42:23', 'Product Created - \'Python | Humble\' - Product ID: 10', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('768', '2022-11-08 00:42:23', 'Product Duplicated: \'Python | 3GB Ram\' to \'Python | Humble\' - Product ID: 10', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('769', '2022-11-08 00:43:02', 'Email Sent to Jaden Mayhue (Email Address Verification) - UserID: 6', 'ileakpics2020@gmail.com', '6', '6', '0', '209.169.222.202');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('770', '2022-11-08 00:43:02', 'Verification Email Resent', 'ileakpics2020@gmail.com', '6', '6', '0', '209.169.222.202');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('771', '2022-11-08 00:43:39', 'Product Configuration Modified: Product Description Modified. Featured Product Disabled. Product Hidden. Payment Type Modified: \'recurring\' to \'free\'. Allow Multiple Quantities Disabled. Configurable Options Upgrade/Downgrade Disabled. cpu Value Modified: \'20\' to \'50\'. location_id Value Modified: \'2\' to \'1\'. server_name Value Modified: \'Python | 3GB Ram\' to \'Python | Humble\'s Special Package\'. Upgrade Packages Modified. Pricing Modified. Product ID: 10', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('772', '2022-11-07 19:45:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('773', '2022-11-07 19:45:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('774', '2022-11-07 19:45:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('775', '2022-11-08 00:45:36', 'New Order Placed - Order ID: 10 - User ID: 6', 'winter', '6', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('776', '2022-11-08 00:45:39', 'Email Sent (WHMCS New Order Notification) - Client ID: 6 - Order ID: 10', 'winter', '6', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('777', '2022-11-08 00:45:39', 'Email Sent to Jaden Mayhue (Order Confirmation) - Client ID: 6', 'winter', '6', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('778', '2022-11-08 00:45:49', 'Running Module Create on Accept Pending Order', 'winter', '6', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('779', '2022-11-08 00:45:50', 'Module Create Failed - Service ID: 10 - Error: Couldn\'t find any nodes satisfying the request.', 'winter', '6', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('780', '2022-11-08 00:48:26', 'Product Configuration Modified: location_id Value Modified: \'1\' to \'2\'. Product ID: 10', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('781', '2022-11-08 00:51:03', 'Running Module Terminate on Order Cancel', 'winter', '6', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('782', '2022-11-08 00:51:04', 'Module Terminate Successful - Service ID: 10', 'winter', '6', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('783', '2022-11-08 00:51:04', 'Order Status set to Cancelled - Order ID: 10', 'winter', '6', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('784', '2022-11-08 00:52:24', 'Deleted Product/Service - User ID: 6 - Service ID: 10', 'winter', '6', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('785', '2022-11-08 00:52:39', 'New Order Placed - Order ID: 11 - User ID: 6', 'winter', '6', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('786', '2022-11-08 00:52:40', 'Email Sent (WHMCS New Order Notification) - Client ID: 6 - Order ID: 11', 'winter', '6', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('787', '2022-11-08 00:52:41', 'Email Sent to Jaden Mayhue (Order Confirmation) - Client ID: 6', 'winter', '6', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('788', '2022-11-08 00:53:51', 'Running Module Create on Accept Pending Order', 'winter', '6', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('789', '2022-11-08 00:53:53', 'Module Create Successful - Service ID: 11', 'winter', '6', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('790', '2022-11-08 00:53:53', 'Email Sent to Jaden Mayhue (New Product Information) - Client ID: 6', 'winter', '6', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('791', '2022-11-08 00:53:53', 'Order Accepted - Order ID: 11', 'winter', '6', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('792', '2022-11-08 00:57:34', 'Product Configuration Modified: location_id Value Modified: \'2\' to \'1\'. Product ID: 10', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('793', '2022-11-08 00:58:01', 'Module Create Failed - Service ID: 11 - Error: Failed to create server because it is already created.', 'winter', '6', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('794', '2022-11-08 00:59:10', 'Module Change Package Successful - Service ID: 11', 'winter', '6', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('795', '2022-11-08 01:01:03', 'Module Terminate Successful - Service ID: 11', 'winter', '6', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('796', '2022-11-08 01:01:18', 'Module Create Successful - Service ID: 11', 'winter', '6', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('798', '2022-11-07 23:05:04', 'Email Sent to Winter Fe (Promotional Sale | All services 20% off!) - Client ID: 1', 'System', '1', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('799', '2022-11-07 23:05:05', 'Email Sent to Winter Fe (Promotional Sale | All services 20% off!) - Client ID: 1', 'System', '1', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('800', '2022-11-07 23:45:01', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('801', '2022-11-07 23:45:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('802', '2022-11-07 23:45:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('803', '2022-11-07 23:45:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('804', '2022-11-08 01:00:02', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('805', '2022-11-08 03:45:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('806', '2022-11-08 03:45:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('807', '2022-11-08 03:45:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('808', '2022-11-08 11:39:29', 'Failed Admin Login Attempt - IP: 2600:387:2:811::45', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('809', '2022-11-08 07:45:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('810', '2022-11-08 07:45:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('811', '2022-11-08 07:45:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('812', '2022-11-08 09:00:02', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('813', '2022-11-08 09:00:02', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('814', '2022-11-08 09:00:02', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('815', '2022-11-08 09:00:02', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('816', '2022-11-08 09:00:02', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('817', '2022-11-08 09:00:02', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('818', '2022-11-08 09:00:02', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('819', '2022-11-08 09:00:02', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('820', '2022-11-08 09:00:02', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('821', '2022-11-08 09:00:03', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('822', '2022-11-08 09:00:04', 'Module Terminate Successful - Service ID: 8', 'System', '1', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('823', '2022-11-08 09:00:04', 'Cron Job: SUCCESS: NodeJS | 1GB Ram - Winter Fe (Due Date: 12/06/2022)', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('824', '2022-11-08 09:00:04', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('825', '2022-11-08 09:00:04', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('826', '2022-11-08 09:00:04', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('827', '2022-11-08 09:00:04', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('828', '2022-11-08 09:00:04', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('829', '2022-11-08 09:00:04', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('830', '2022-11-08 09:00:04', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('831', '2022-11-08 09:00:04', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('832', '2022-11-08 09:00:04', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('833', '2022-11-08 09:00:04', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('834', '2022-11-08 09:00:04', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('835', '2022-11-08 09:00:04', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('836', '2022-11-08 09:00:04', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('837', '2022-11-08 09:00:08', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('838', '2022-11-08 09:00:11', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('839', '2022-11-08 09:00:11', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('840', '2022-11-08 09:00:11', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('841', '2022-11-08 09:00:11', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('842', '2022-11-08 09:00:11', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('843', '2022-11-08 09:00:14', 'Cron Job: Email Backup - Sent Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('844', '2022-11-08 09:00:14', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('845', '2022-11-08 14:08:47', 'Client Group Created: Staff - Client Group ID: 1', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('846', '2022-11-08 14:09:03', 'Client Group Created: Sponsored - Client Group ID: 2', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('847', '2022-11-08 14:11:55', 'General Settings Modified. Changes made: Template Changed from \'twenty-one\' to \'six\'.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('848', '2022-11-08 14:12:18', 'General Settings Modified. Changes made: Template Changed from \'six\' to \'twenty-one\'.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('849', '2022-11-08 14:20:45', 'Product Created - \'test\' - Product ID: 11', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('850', '2022-11-08 14:22:03', 'Product Deleted: \'test\' - Product Group ID: 11', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('851', '2022-11-08 14:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('852', '2022-11-08 14:40:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('853', '2022-11-08 14:40:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('854', '2022-11-08 14:40:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('855', '2022-11-08 15:11:13', 'Automated Task: Starting Process Email Queue', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('856', '2022-11-08 15:13:03', 'Addon Module Activated - Staff Noticeboard', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('857', '2022-11-08 15:13:21', 'Addon Module Access Permissions Changed - Staff Noticeboard - Added Role Group(s): Full Administrator, Sales Operator, Support Operator.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('858', '2022-11-08 15:13:21', 'Addon Module Settings Modified - Staff Noticeboard - Initial setting of Edit/Delete Permissions to \'on\', Initial setting of masteradmin2 to \'\', Initial setting of masteradmin3 to \'\'', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('859', '2022-11-08 15:57:41', 'Addon Module Activated - Cloudflare IP Sync', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('860', '2022-11-08 15:57:47', 'Addon Module Access Permissions Changed - Cloudflare IP Sync - Added Role Group(s): Full Administrator.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('861', '2022-11-08 16:01:18', 'Addon Module Activated - OneAll Social Login', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('862', '2022-11-08 16:01:47', 'Addon Module Access Permissions Changed - OneAll Social Login - Added Role Group(s): Full Administrator.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('863', '2022-11-08 16:01:47', 'Addon Module Settings Modified - OneAll Social Login - Initial setting of OneAll API Subdomain to \'\', Initial setting of OneAll API Public Key to \'\', Initial setting of OneAll API Private Key to \'\', Initial setting of API Handler to \'CURL\', Initial setting of API Port to \'443\', Initial setting of Embedded Title to \'Connect using a social network:\', Initial setting of Popup Link Title to \'Login using a social network\', Initial setting of Custom CSS URL to \'\', Initial setting of Automatic Link to \'on\', Initial setting of Amazon to \'\', Initial setting of Apple to \'\', Initial setting of Battle.net to \'\', Initial setting of Blogger to \'\', Initial setting of Discord to \'on\', Initial setting of Disqus to \'\', Initial setting of Draugiem to \'\', Initial setting of Dribbble to \'\', Initial setting of Epic Games to \'\', Initial setting of Facebook to \'\', Initial setting of Foursquare to \'\', Initial setting of Github.com to \'\', Initial setting of Google to \'on\', Initial setting of Instagram to \'\', Initial setting of Line to \'\', Initial setting of LinkedIn to \'\', Initial setting of LiveJournal to \'\', Initial setting of Mail.ru to \'\', Initial setting of Meetup to \'\', Initial setting of Mixer to \'\', Initial setting of Odnoklassniki to \'\', Initial setting of OpenID to \'\', Initial setting of Patreon to \'\', Initial setting of PayPal to \'\', Initial setting of Pinterest to \'\', Initial setting of PixelPin to \'\', Initial setting of Reddit to \'\', Initial setting of Skyrock.com to \'\', Initial setting of StackExchange to \'\', Initial setting of Steam to \'\', Initial setting of Strava to \'\', Initial setting of SoundCloud to \'\', Initial setting of Spotify to \'\', Initial setting of Tumblr to \'\', Initial setting of Twitch.tv to \'\', Initial setting of Twitter to \'on\', Initial setting of Vimeo to \'\', Initial setting of VKontakte to \'\', Initial setting of Weibo to \'\', Initial setting of Windows Live to \'\', Initial setting of WordPress.com to \'\', Initial setting of Xing to \'\', Initial setting of Yahoo to \'\', Initial setting of Yandex to \'\', Initial setting of YouTube to \'\'', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('864', '2022-11-08 16:03:14', 'Addon Module Settings Modified - OneAll Social Login - OneAll API Subdomain: \'\' to \'userlunardevgroup\', OneAll API Public Key: \'\' to \'0cdc48b7-8b42-4847-bada-7542e3a19a81\', OneAll API Private Key: \'\' to \'26adbb8c-ae09-4970-831d-6dd33eafb3bc\'', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('865', '2022-11-08 16:03:21', 'Addon Module Deactivated - OneAll Social Login', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('866', '2022-11-08 16:13:03', 'General Settings Modified. Changes made: Display Errors Enabled.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('867', '2022-11-08 16:16:02', 'Addon Module Activated - Bulk Pricing Updater', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('868', '2022-11-08 16:16:07', 'Addon Module Access Permissions Changed - Bulk Pricing Updater - Added Role Group(s): Full Administrator.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('869', '2022-11-08 16:16:10', 'Addon Module Access Permissions Changed - Bulk Pricing Updater - Added Role Group(s): Sales Operator.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('870', '2022-11-08 16:26:39', 'General Settings Modified. Changes made: Display Errors Disabled.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('871', '2022-11-08 16:26:51', 'Credit Card Payments Processed (0 Captured, 0 Failed)', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('872', '2022-11-08 16:34:34', 'Product Group Created: \'Terraria\' - Product Group ID: 3', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('873', '2022-11-08 16:35:03', 'Product Group Modified: \'Terraria\' - Changes: Tagline Modified: \'\' to \'Vanilla terraria servers to enjoy with your friends\' - Product Group ID: 3', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('874', '2022-11-08 16:36:47', 'Product Created - \'Terraria | Wisp\' - Product ID: 12', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('875', '2022-11-08 16:42:41', 'Product Group Created: \'Databases\' - Product Group ID: 4', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('876', '2022-11-08 16:42:48', 'Product Group Modified: \'Terraria\' - Changes: Group Hidden - Product Group ID: 3', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('877', '2022-11-08 16:43:07', 'Product Created - \'Postgres DB\' - Product ID: 13', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('878', '2022-11-08 16:43:07', 'Product Duplicated: \'Coal\' to \'Postgres DB\' - Product ID: 13', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('879', '2022-11-08 16:46:05', 'Product Modified - Name Modified: \'Postgres DB\' to \'Postgres\' - Product ID: 13', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('880', '2022-11-08 16:46:05', 'Product Configuration Modified: Product Group Modified: \'Minecraft Hosting\' to \'Databases\'. Product Description Modified. Featured Product Enabled. Allow Multiple Quantities Enabled. memory Value Modified: \'2048\' to \'1024\'. location_id Value Modified: \'2\' to \'1\'. nest_id Value Modified: \'1\' to \'13\'. egg_id Value Modified: \'1\' to \'28\'. server_name Value Modified: \'Minecraft | Coal\' to \'Postgres\'. Product URL Modified. Pricing Modified. Product ID: 13', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('881', '2022-11-08 16:55:32', 'Product Configuration Modified: Custom Field Created: \'PGUSER\'. Product ID: 13', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('882', '2022-11-08 16:55:53', 'Product Configuration Modified: Custom Field Created: \'PGPASSWORD\'. Product ID: 13', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('883', '2022-11-08 16:56:24', 'Product Configuration Modified: memory Value Modified: \'1024\' to \'2048\'. Product ID: 13', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('884', '2022-11-08 16:57:44', 'Promotion Created: \'44B1JI0MIB\' - Promotion ID: 2', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('885', '2022-11-08 16:58:42', 'Promotion Modified: \'44B1JI0MIB\' - Changes: Requires Existing Product Allowed In Account Enabled - Promotion ID: 2', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('886', '2022-11-08 16:59:42', 'Promotion Modified: \'44B1JI0MIB\' - Changes: Value Modified: \'0.00\' to \'1\'. Requires Modified. Cycles Modified. Start Date Modified: \'0000-00-00\' to \'2022-11-08\'. Expiry Date Modified: \'0000-00-00\' to \'2022-11-09\'. Lifetime Promotion Enabled. Existing Client Only Enabled - Promotion ID: 2', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('887', '2022-11-08 17:00:01', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('888', '2022-11-08 17:00:25', 'Promotion Deleted: \'44B1JI0MIB\' - Promotion ID: 2', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('889', '2022-11-08 17:00:44', 'Promotion Created: \'CJT1R9W5P2\' - Promotion ID: 3', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('890', '2022-11-08 17:01:36', 'Promotion Modified: \'CJT1R9W5P2\' - Changes: Type Changed: \'Price Override\' to \'Percentage\'. Value Modified: \'0.00\' to \'100\'. Applies To Modified. Requires Modified. Requires Existing Product Allowed In Account Disabled. Once Per Client Enabled - Promotion ID: 3', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('891', '2022-11-08 17:01:53', 'New Order Placed - Order ID: 12 - User ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('892', '2022-11-08 17:01:53', 'Created Invoice - Invoice ID: 7', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('893', '2022-11-08 17:01:54', 'Email Sent to Winter Fe (Customer Invoice) - Client ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('894', '2022-11-08 17:01:55', 'Email Sent (WHMCS New Order Notification) - Client ID: 1 - Order ID: 12', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('895', '2022-11-08 17:01:56', 'Email Sent to Winter Fe (Order Confirmation) - Client ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('896', '2022-11-08 17:01:56', 'Invoice Marked Paid - Invoice ID: 7', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('897', '2022-11-08 17:01:57', 'Email Sent to Winter Fe (Invoice Payment Confirmation) - Client ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('898', '2022-11-08 17:01:57', 'Running Module Create on Payment', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('899', '2022-11-08 17:01:58', 'Module Create Successful - Service ID: 12', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('900', '2022-11-08 17:01:59', 'Email Sent to Winter Fe (New Product Information) - Client ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('901', '2022-11-08 17:03:12', 'Promotion Deleted: \'CJT1R9W5P2\' - Promotion ID: 3', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('902', '2022-11-08 17:03:29', 'Automatic Cancellation Requested Immediately - Service ID: 12', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('903', '2022-11-08 17:03:30', 'Email Sent to Winter Fe (Cancellation Request Confirmation) - Client ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('904', '2022-11-08 17:06:33', 'Product Configuration Modified: Custom Field Created: \'MINECRAFT_VERSION\'. Product ID: 2', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('905', '2022-11-08 17:06:49', 'Product Configuration Modified: Custom Field Created: \'MINECRAFT_VERSION\'. Product ID: 3', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('906', '2022-11-08 17:07:00', 'Product Configuration Modified: Custom Field Created: \'MINECRAFT_VERSION\'. Product ID: 5', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('907', '2022-11-08 17:07:10', 'Product Configuration Modified: Custom Field Created: \'MINECRAFT_VERSION\'. Product ID: 4', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('908', '2022-11-08 17:07:32', 'Product Configuration Modified: Custom Field Modified: \'PGPASSWORD\'. Product ID: 13', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('909', '2022-11-08 17:08:19', 'Product Configuration Modified: Custom Field Created: \'GIT_ADDRESS\'. Product ID: 6', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('910', '2022-11-08 17:08:45', 'Product Configuration Modified: Custom Field Created: \'BRANCH\'. Product ID: 6', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('911', '2022-11-08 17:09:18', 'Product Configuration Modified: Custom Field Modified: \'BRANCH\'. Custom Field Created: \'JS_FILE\'. Product ID: 6', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('912', '2022-11-08 17:09:52', 'Product Configuration Modified: Custom Field Created: \'ACCESS_TOKEN\'. Product ID: 6', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('913', '2022-11-08 17:10:39', 'Product Configuration Modified: Custom Field Modified: \'ACCESS_TOKEN\'. Product ID: 6', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('914', '2022-11-08 17:10:55', 'Product Configuration Modified: Custom Field Modified: \'BRANCH\'. Custom Field Modified: \'JS_FILE\'. Custom Field Modified: \'ACCESS_TOKEN\'. Product ID: 6', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('915', '2022-11-08 17:11:46', 'Product Configuration Modified: Custom Field Created: \'USERNAME\'. Product ID: 6', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('916', '2022-11-08 17:11:59', 'Product Configuration Modified: Custom Field Modified: \'ACCESS_TOKEN\'. Product ID: 6', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('917', '2022-11-08 17:12:46', 'Product Deleted: \'NodeJS | 3GB Ram\' - Product Group ID: 9', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('918', '2022-11-08 17:12:49', 'Product Deleted: \'Python | 1GB Ram\' - Product Group ID: 7', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('919', '2022-11-08 17:12:53', 'Product Deleted: \'Python | 3GB Ram\' - Product Group ID: 8', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('920', '2022-11-08 17:13:14', 'Product Created - \'NodeJS | 3GB Ram\' - Product ID: 14', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('921', '2022-11-08 17:13:14', 'Product Duplicated: \'NodeJS | 1GB Ram\' to \'NodeJS | 3GB Ram\' - Product ID: 14', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('922', '2022-11-08 17:15:11', 'Product Configuration Modified: Product Description Modified. Featured Product Enabled. Configurable Options Upgrade/Downgrade Enabled. cpu Value Modified: \'10\' to \'20\'. disk Value Modified: \'2048\' to \'6144\'. memory Value Modified: \'1024\' to \'3072\'. server_name Value Modified: \'NodeJS | 1GB Ram\' to \'NodeJS | 3GB Ram\'. Upgrade Packages Modified. Pricing Modified. Product ID: 14', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('923', '2022-11-08 17:15:26', 'Product Created - \'Python | 1GB Ram\' - Product ID: 15', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('924', '2022-11-08 17:15:26', 'Product Duplicated: \'NodeJS | 3GB Ram\' to \'Python | 1GB Ram\' - Product ID: 15', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('925', '2022-11-08 17:18:28', 'Product Configuration Modified: Product Description Modified. cpu Value Modified: \'20\' to \'10\'. disk Value Modified: \'6144\' to \'2048\'. memory Value Modified: \'3072\' to \'1024\'. nest_id Value Modified: \'8\' to \'9\'. egg_id Value Modified: \'23\' to \'24\'. server_name Value Modified: \'NodeJS | 3GB Ram\' to \'Python | 3GB Ram\'. Pricing Modified. Custom Field Name Modified: \'JS_FILE\' to \'PY_FILE\'. Custom Field Modified: \'PY_FILE\'. Product ID: 15', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('926', '2022-11-08 17:18:46', 'Product Created - \'Python | 3GB Ram\' - Product ID: 16', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('927', '2022-11-08 17:18:46', 'Product Duplicated: \'Python | 1GB Ram\' to \'Python | 3GB Ram\' - Product ID: 16', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('928', '2022-11-08 17:19:36', 'Product Configuration Modified: Product Description Modified. cpu Value Modified: \'10\' to \'20\'. disk Value Modified: \'2048\' to \'6144\'. memory Value Modified: \'1024\' to \'3072\'. backups Value Modified: \'\' to \'3\'. Pricing Modified. Product ID: 16', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('929', '2022-11-08 17:19:50', 'Product Configuration Modified: Product Description Modified. Product ID: 16', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('930', '2022-11-08 17:20:13', 'Product Configuration Modified: Product Description Modified. backups Value Modified: \'\' to \'3\'. Product ID: 14', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('931', '2022-11-08 17:23:04', 'Product Configuration Modified: Product Color Modified. Product ID: 15', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('932', '2022-11-08 17:23:16', 'Product Configuration Modified: Product Color Modified. Product ID: 16', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('933', '2022-11-08 17:23:33', 'Product Configuration Modified: Product Color Modified. Product ID: 6', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('934', '2022-11-08 17:23:42', 'Product Configuration Modified: Product Color Modified. Product ID: 14', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('935', '2022-11-08 17:25:18', 'Product Configuration Modified: Product Color Modified. io Value Modified: \'\' to \'500\'. Custom Field Created: \'WORLD_SIZE\'. Product ID: 12', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('936', '2022-11-08 17:25:46', 'Product Configuration Modified: Custom Field Created: \'MAX_PLAYERS\'. Product ID: 12', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('937', '2022-11-08 17:26:58', 'Product Configuration Modified: Custom Field Created: \'WORLD_DIFFICULTY\'. Product ID: 12', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('938', '2022-11-08 17:30:22', 'Product Configuration Modified: Product Description Modified. Product Color Modified. Product Displayed. Payment Type Modified: \'free\' to \'recurring\'. Server Group Modified: \'0\' to \'1\'. cpu Value Modified: \'\' to \'20\'. disk Value Modified: \'\' to \'5120\'. memory Value Modified: \'\' to \'1024\'. location_id Value Modified: \'\' to \'2\'. nest_id Value Modified: \'\' to \'12\'. egg_id Value Modified: \'\' to \'27\'. backups Value Modified: \'\' to \'1\'. Pricing Modified. Product ID: 12', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('939', '2022-11-08 17:30:49', 'Product Group Modified: \'Terraria\' - Changes: Group Displayed - Product Group ID: 3', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('940', '2022-11-08 17:32:18', 'Product Configuration Modified: Automatic Setup Modified: \'\' to \'Payment\'. Product ID: 12', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('941', '2022-11-08 17:32:28', 'Product Configuration Modified: server_name Value Modified: \'\' to \'Terria | Wisp\'. Product ID: 12', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('942', '2022-11-08 17:32:41', 'Product Configuration Modified: swap Value Modified: \'\' to \'0\'. Product ID: 12', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('943', '2022-11-08 17:34:52', 'Server Modified: \'Lunar Panel\' - Changes: Server Status Address Modified: \'\' to \'https://panel.lunardev.group/api/application/nodes/1\' - Server ID: 1', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('944', '2022-11-08 17:35:45', 'Running Module Terminate on Order Cancel', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('945', '2022-11-08 17:35:46', 'Module Terminate Successful - Service ID: 12', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('946', '2022-11-08 17:35:46', 'Order Status set to Cancelled - Order ID: 12', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('947', '2022-11-08 17:36:49', 'Server Modified: \'Lunar Panel\' - Changes: Server Status Address Modified: \'https://panel.lunardev.group/api/application/nodes/1\' to \'\' - Server ID: 1', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('948', '2022-11-08 17:37:22', 'Server Modified: \'Lunar Panel\' - Changes: IP Address Modified: \'\' to \'3.238.129.43\' - Server ID: 1', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('949', '2022-11-08 17:38:18', 'Server Modified: \'Lunar Panel\' - Changes: IP Address Modified: \'3.238.129.43\' to \'\' - Server ID: 1', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('950', '2022-11-08 17:43:29', 'Added Client File - Title: test - User ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('951', '2022-11-08 17:44:14', 'Deleted Client File - Title: test - User ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('952', '2022-11-08 17:44:39', 'Client Profile Modified - Client Group: \'None\' to \'Staff\' - Client ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('954', '2022-11-08 17:47:35', 'Client Profile Modified - Client Group: \'None\' to \'Staff\' - Client ID: 5', 'winter', '5', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('955', '2022-11-08 17:47:46', 'Client Profile Modified - Client Group: \'None\' to \'Staff\' - Client ID: 6', 'winter', '6', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('956', '2022-11-08 17:48:48', 'Client Group Modified: Staff - Discount Percentage Changed from \'15.00\' to \'35\' - Client Group ID: 1', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('957', '2022-11-09 01:00:01', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('958', '2022-11-09 02:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('959', '2022-11-09 09:00:02', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('960', '2022-11-09 09:00:02', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('961', '2022-11-09 14:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('962', '2022-11-10 02:40:01', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('963', '2022-11-10 04:07:56', 'Product Configuration Modified: Pricing Modified. Product ID: 13', 'winter', '0', '0', '1', '2600:1700:4174:ea00:652c:7db4:4ce1:ed91');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('964', '2022-11-10 09:00:02', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('965', '2022-11-10 09:00:02', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('966', '2022-11-10 14:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('967', '2022-11-10 19:50:53', 'Email Sent to Dylan "Big Cock" James (Email Address Verification) - UserID: 7', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('968', '2022-11-10 19:50:53', 'Created Client Dylan "Big Cock" James - UserID: 7 - Client ID: 7', 'dylan@tritan.dev', '7', '7', '0', '2600:1006:b127:e84:e19d:d7f0:f889:c87f');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('969', '2022-11-10 19:50:53', 'Opted In to Marketing Emails - Client ID: 7', 'dylan@tritan.dev', '7', '7', '0', '2600:1006:b127:e84:e19d:d7f0:f889:c87f');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('970', '2022-11-10 19:50:53', 'Email Sent to Dylan "Big Cock" James (Welcome) - Client ID: 7', 'dylan@tritan.dev', '7', '7', '0', '2600:1006:b127:e84:e19d:d7f0:f889:c87f');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('971', '2022-11-11 02:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('972', '2022-11-11 09:00:01', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('973', '2022-11-11 09:00:02', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('974', '2022-11-11 14:40:01', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('975', '2022-11-11 21:25:29', 'General Settings Modified. Changes made: Display Errors Enabled.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('976', '2022-11-11 21:25:50', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('977', '2022-11-11 21:25:50', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('978', '2022-11-11 21:29:03', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('979', '2022-11-11 21:29:04', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('980', '2022-11-11 21:29:04', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('981', '2022-11-11 21:29:04', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('982', '2022-11-11 21:29:04', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('983', '2022-11-11 21:29:04', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('984', '2022-11-11 21:29:04', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('985', '2022-11-11 21:29:04', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('986', '2022-11-11 21:29:04', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('987', '2022-11-11 21:29:04', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('988', '2022-11-11 21:29:04', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('989', '2022-11-11 21:29:04', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('990', '2022-11-11 21:29:04', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('991', '2022-11-11 21:29:04', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('992', '2022-11-11 21:29:04', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('993', '2022-11-11 21:29:04', 'Automated Task: Starting Prune Ticket Attachments', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('994', '2022-11-11 21:29:04', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('995', '2022-11-11 21:29:04', 'Automated Task: Starting Affiliate Reports', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('996', '2022-11-11 21:29:04', 'Automated Task: Starting Process Email Queue', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('997', '2022-11-11 21:29:04', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('998', '2022-11-11 21:29:04', 'Automated Task: Starting Process Email Campaigns', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('999', '2022-11-11 21:29:04', 'Automated Task: Starting Credit Card Expiry Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1000', '2022-11-11 21:29:04', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1001', '2022-11-11 21:29:04', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1002', '2022-11-11 21:29:04', 'Automated Task: Starting Overage Billing Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1003', '2022-11-11 21:29:04', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1004', '2022-11-11 21:29:04', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1005', '2022-11-11 21:29:04', 'Automated Task: Starting Ticket Escalation Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1006', '2022-11-11 21:29:04', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1007', '2022-11-11 21:29:04', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1008', '2022-11-11 21:29:05', 'Automated Task: Starting Update Server Usage', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1009', '2022-11-11 21:29:05', 'Automated Task: Starting Update Server Meta Data', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1010', '2022-11-11 21:29:05', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1011', '2022-11-11 21:29:08', 'Automated Task: Starting Run Jobs Queue', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1012', '2022-11-11 21:29:08', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1013', '2022-11-11 21:29:08', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1014', '2022-11-11 21:29:08', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1015', '2022-11-11 21:29:11', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1016', '2022-11-11 21:29:12', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1017', '2022-11-11 21:29:12', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1018', '2022-11-11 21:29:13', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1019', '2022-11-11 21:29:13', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1020', '2022-11-11 21:29:13', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1021', '2022-11-11 21:29:15', 'Cron Job: Email Backup - Sent Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1022', '2022-11-11 21:29:15', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1023', '2022-11-11 21:30:02', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1024', '2022-11-11 21:30:06', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1025', '2022-11-11 21:30:06', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1026', '2022-11-11 21:30:06', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1027', '2022-11-11 21:35:47', 'General Settings Modified. Changes made: Display Errors Disabled.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1028', '2022-11-11 21:36:28', 'Client Profile Modified - Client Group: \'None\' to \'Staff\' - Client ID: 7', 'winter', '7', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1029', '2022-11-11 21:38:40', 'Admin Role Group Modified: \'Sales Operator\' - Account Level Email Notifications Disabled. Widgets Added: Staff Noticeboard. Removed Permissions: Sidebar Statistics, Delete Client, Manage Predefined Replies, Delete Predefined Replies, Delete Predefined Replies, View MarketConnect Balance', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1030', '2022-11-11 21:41:03', 'Admin User \'dylan\' with role Sales Operator created', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1031', '2022-11-11 21:47:47', 'Client Profile Modified - Status: \'Inactive\' to \'Active\' - Client ID: 1', 'winter', '1', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1032', '2022-11-11 21:48:09', 'Client Profile Modified - Status: \'Inactive\' to \'Active\' - Client ID: 2', 'winter', '2', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1033', '2022-11-11 21:48:18', 'Client Profile Modified - Status: \'Inactive\' to \'Active\' - Client ID: 5', 'winter', '5', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1034', '2022-11-11 21:48:28', 'Client Profile Modified - Status: \'Inactive\' to \'Active\' - Client ID: 4', 'winter', '4', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1036', '2022-11-11 21:49:31', 'Automation Settings Changed. Changes made: Auto Cancellation Requests changed from \'on\' to \'off\'', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1037', '2022-11-11 21:49:39', 'Automation Settings Changed. Changes made: Auto Client Status Change changed from \'2\' to \'1\'', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1038', '2022-11-11 21:49:44', 'Automation Settings Changed. Changes made: Auto Client Status Change changed from \'1\' to \'3\'', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1039', '2022-11-11 21:50:10', 'Automation Settings Changed. Changes made: Daily Cron Execution Hour changed from \'09\' to \'00\'', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1045', '2022-11-12 00:00:02', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1046', '2022-11-12 00:00:02', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1047', '2022-11-12 00:00:03', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1048', '2022-11-12 00:00:03', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1049', '2022-11-12 00:00:03', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1050', '2022-11-12 00:00:03', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1051', '2022-11-12 00:00:03', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1052', '2022-11-12 00:00:03', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1053', '2022-11-12 00:00:03', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1054', '2022-11-12 00:00:03', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1055', '2022-11-12 00:00:03', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1056', '2022-11-12 00:00:03', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1057', '2022-11-12 00:00:03', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1058', '2022-11-12 00:00:03', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1059', '2022-11-12 00:00:03', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1060', '2022-11-12 00:00:03', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1061', '2022-11-12 00:00:03', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1062', '2022-11-12 00:00:03', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1063', '2022-11-12 00:00:03', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1064', '2022-11-12 00:00:03', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1065', '2022-11-12 00:00:03', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1066', '2022-11-12 00:00:03', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1067', '2022-11-12 00:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1068', '2022-11-12 00:00:06', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1069', '2022-11-12 00:00:09', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1070', '2022-11-12 00:00:09', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1071', '2022-11-12 00:00:09', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1072', '2022-11-12 00:00:09', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1073', '2022-11-12 00:00:10', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1074', '2022-11-12 00:00:12', 'Cron Job: Email Backup - Sent Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1075', '2022-11-12 00:00:12', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1076', '2022-11-12 00:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1077', '2022-11-12 00:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1078', '2022-11-12 00:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1079', '2022-11-12 00:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1080', '2022-11-12 04:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1081', '2022-11-12 04:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1082', '2022-11-12 04:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1083', '2022-11-12 05:44:56', 'Failed Admin Login Attempt - IP: 68.205.153.222', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1084', '2022-11-12 05:44:57', 'Failed Admin Login Attempt - IP: 68.205.153.222', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1085', '2022-11-12 05:48:11', 'Access Denied to Configure General Settings', 'dylan', '0', '0', '3', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1086', '2022-11-12 05:48:16', 'Access Denied to Configure Automation Settings', 'dylan', '0', '0', '3', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1087', '2022-11-12 05:48:19', 'Access Denied to Apps and Integrations', 'dylan', '0', '0', '3', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1088', '2022-11-12 05:48:30', 'Access Denied to Configure Servers', 'dylan', '0', '0', '3', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1089', '2022-11-12 05:48:34', 'Access Denied to Configure Support Departments', 'dylan', '0', '0', '3', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1090', '2022-11-12 05:48:39', 'Access Denied to Configure Client Groups', 'dylan', '0', '0', '3', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1091', '2022-11-12 05:48:44', 'Access Denied to Manage Notifications', 'dylan', '0', '0', '3', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1092', '2022-11-12 05:49:32', 'Administrator Account Modified (Dylan "Big Cock" James)', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1093', '2022-11-12 05:59:42', 'Email Sent to Winter Fe ([Ticket ID: ZXP-716726] ur services) - Client ID: 1', 'dylan', '1', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1094', '2022-11-12 06:01:20', 'Access Denied to Configure Domain Registrars', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1095', '2022-11-12 06:01:31', 'Access Denied to Configure Payment Gateways', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1096', '2022-11-12 06:08:40', 'Email Sent to Astrid Iscool (Email Address Verification) - UserID: 8', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1097', '2022-11-12 06:08:41', 'Created Client Astrid Iscool - UserID: 8 - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1098', '2022-11-12 06:08:41', 'Opted In to Marketing Emails - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1099', '2022-11-12 06:08:41', 'Email Sent to Astrid Iscool (Welcome) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1100', '2022-11-12 06:11:27', 'New Order Placed - Order ID: 13 - User ID: 8', 'dylan', '8', '8', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1101', '2022-11-12 06:11:27', 'Created Invoice - Invoice ID: 9', 'dylan', '8', '8', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1102', '2022-11-12 06:11:27', 'Invoice Marked Paid - Invoice ID: 9', 'dylan', '8', '8', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1103', '2022-11-12 06:11:29', 'Email Sent to Astrid Iscool (Invoice Payment Confirmation) - Client ID: 8', 'dylan', '8', '8', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1104', '2022-11-12 06:11:29', 'Running Module Create on Payment', 'dylan', '8', '8', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1105', '2022-11-12 06:11:31', 'Module Create Successful - Service ID: 13', 'dylan', '8', '8', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1106', '2022-11-12 06:11:32', 'Email Sent to Astrid Iscool (New Product Information) - Client ID: 8', 'dylan', '8', '8', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1107', '2022-11-12 06:11:33', 'Email Sent to Astrid Iscool (Customer Invoice) - Client ID: 8', 'dylan', '8', '8', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1108', '2022-11-12 06:11:34', 'Email Sent (WHMCS New Order Notification) - Client ID: 8 - Order ID: 13', 'dylan', '8', '8', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1109', '2022-11-12 06:11:35', 'Email Sent to Astrid Iscool (Order Confirmation) - Client ID: 8', 'dylan', '8', '8', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1110', '2022-11-12 06:12:09', 'Created Manual Invoice - Invoice ID: 10', 'dylan', '8', '8', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1111', '2022-11-12 06:12:49', 'Modified Invoice - Invoice ID: 10', 'dylan', '8', '8', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1112', '2022-11-12 06:13:03', 'Reactivated Invoice - Invoice ID: 10', 'dylan', '8', '8', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1113', '2022-11-12 06:13:07', 'Modified Invoice - Invoice ID: 10', 'dylan', '8', '8', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1114', '2022-11-12 06:13:48', 'Client Profile Modified - Company Name: \'tritan development usa \' to \'Tritan Development\' - Client ID: 8', 'dylan', '8', '8', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1115', '2022-11-12 06:14:48', 'Modified Invoice - Invoice ID: 10', 'dylan', '8', '8', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1116', '2022-11-12 06:14:56', 'Cancelled Invoice - Invoice ID: 10', 'dylan', '8', '8', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1117', '2022-11-12 06:15:02', 'Email Sent to Winter Fe (revamped hosting, W!!!) - Client ID: 1', 'System', '1', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1118', '2022-11-12 06:15:03', 'Email Sent to Adrian Oviatt (revamped hosting, W!!!) - Client ID: 2', 'System', '2', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1120', '2022-11-12 06:15:05', 'Email Sent to Noah Bryfogle (revamped hosting, W!!!) - Client ID: 4', 'System', '4', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1121', '2022-11-12 06:15:05', 'Email Sent to Motzumoto Lunar (revamped hosting, W!!!) - Client ID: 5', 'System', '5', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1122', '2022-11-12 06:15:06', 'Email Sent to Jaden Mayhue (revamped hosting, W!!!) - Client ID: 6', 'System', '6', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1123', '2022-11-12 06:15:07', 'Email Sent to Dylan "Big Cock" James (revamped hosting, W!!!) - Client ID: 7', 'System', '7', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1124', '2022-11-12 06:15:07', 'Email Sent to Astrid Iscool (revamped hosting, W!!!) - Client ID: 8', 'System', '8', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1125', '2022-11-12 07:34:32', 'Module Terminate Successful - Service ID: 13', 'winter', '8', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1126', '2022-11-12 08:00:02', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1127', '2022-11-12 08:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1128', '2022-11-12 08:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1129', '2022-11-12 08:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1130', '2022-11-12 09:35:31', 'Admin Role Group Modified: \'Sales Operator\' - Added Permissions: Refund Invoice Payments, View Billable Items, Manage Billable Items, View Activity Log, View Admin Log, Manage API Credentials, Configure Servers, Manage Product Groups, Create New Products/Services, Edit Products/Services, Delete Products/Services, Configure Product Addons, Configure Product Bundles, Configure Domain Pricing, Configure Support Departments, API Access', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1131', '2022-11-12 12:30:01', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1132', '2022-11-12 12:30:01', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1133', '2022-11-12 12:30:01', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1134', '2022-11-12 12:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1135', '2022-11-12 16:00:02', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1136', '2022-11-12 16:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1137', '2022-11-12 16:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1138', '2022-11-12 16:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1139', '2022-11-12 20:30:01', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1140', '2022-11-12 20:30:01', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1141', '2022-11-12 20:30:01', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1142', '2022-11-13 00:00:01', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1143', '2022-11-13 00:00:02', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1144', '2022-11-13 00:00:03', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1145', '2022-11-13 00:00:03', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1146', '2022-11-13 00:00:03', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1147', '2022-11-13 00:00:03', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1148', '2022-11-13 00:00:03', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1149', '2022-11-13 00:00:03', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1150', '2022-11-13 00:00:03', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1151', '2022-11-13 00:00:03', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1152', '2022-11-13 00:00:03', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1153', '2022-11-13 00:00:03', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1154', '2022-11-13 00:00:03', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1155', '2022-11-13 00:00:03', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1156', '2022-11-13 00:00:03', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1157', '2022-11-13 00:00:03', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1158', '2022-11-13 00:00:03', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1159', '2022-11-13 00:00:03', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1160', '2022-11-13 00:00:03', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1161', '2022-11-13 00:00:03', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1162', '2022-11-13 00:00:03', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1163', '2022-11-13 00:00:03', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1164', '2022-11-13 00:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1165', '2022-11-13 00:00:06', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1166', '2022-11-13 00:00:10', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1167', '2022-11-13 00:00:10', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1168', '2022-11-13 00:00:11', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1169', '2022-11-13 00:00:11', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1170', '2022-11-13 00:00:11', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1171', '2022-11-13 00:00:14', 'Cron Job: Email Backup - Sent Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1172', '2022-11-13 00:00:14', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1173', '2022-11-13 00:30:01', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1174', '2022-11-13 00:30:01', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1175', '2022-11-13 00:30:01', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1176', '2022-11-13 00:40:01', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1177', '2022-11-13 03:13:43', 'Modified Invoice - Invoice ID: 11', 'winter', '7', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1178', '2022-11-13 03:13:48', 'Modified Invoice Options - Invoice ID: 11', 'winter', '7', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1179', '2022-11-13 03:13:50', 'Email Sent to Dylan "Big Cock" James (Customer Invoice) - Client ID: 7', 'winter', '7', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1180', '2022-11-13 03:14:25', 'Modified Invoice - Invoice ID: 12', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1181', '2022-11-13 03:14:26', 'Modified Invoice Options - Invoice ID: 12', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1182', '2022-11-13 03:14:28', 'Email Sent to Astrid Iscool (Customer Invoice) - Client ID: 8', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1183', '2022-11-13 03:15:48', 'Modified Invoice Options - Invoice ID: 12', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1184', '2022-11-13 03:17:26', 'Added Transaction - Transaction ID: 2', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1185', '2022-11-13 03:17:26', 'Added Invoice Payment - Invoice ID: 12', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1186', '2022-11-13 03:17:26', 'Invoice Marked Paid - Invoice ID: 12', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1187', '2022-11-13 03:17:27', 'Email Sent to Astrid Iscool (Invoice Payment Confirmation) - Client ID: 8', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1188', '2022-11-13 03:19:11', 'Activated Affiliate Account - Affiliate ID: 5 - User ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '172.83.40.68');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1189', '2022-11-13 03:19:46', 'Added Credit - User ID: 8 - Amount: $70,000,000.00 USD', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1190', '2022-11-13 03:20:05', 'New Order Placed - Order ID: 14 - User ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '172.83.40.68');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1191', '2022-11-13 03:20:05', 'Created Invoice - Invoice ID: 13', 'killmeuwu@protonmail.com', '8', '8', '0', '172.83.40.68');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1192', '2022-11-13 03:20:05', 'Credit Applied at Client Request on Checkout - Invoice ID: 13 - Amount: 10', 'killmeuwu@protonmail.com', '8', '8', '0', '172.83.40.68');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1193', '2022-11-13 03:20:07', 'Email Sent to Astrid Iscool (Customer Invoice) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '172.83.40.68');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1194', '2022-11-13 03:20:09', 'Email Sent (WHMCS New Order Notification) - Client ID: 8 - Order ID: 14', 'killmeuwu@protonmail.com', '8', '8', '0', '172.83.40.68');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1195', '2022-11-13 03:20:10', 'Email Sent to Astrid Iscool (Order Confirmation) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '172.83.40.68');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1196', '2022-11-13 03:20:10', 'Invoice Marked Paid - Invoice ID: 13', 'killmeuwu@protonmail.com', '8', '8', '0', '172.83.40.68');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1197', '2022-11-13 03:20:11', 'Email Sent to Astrid Iscool (Invoice Payment Confirmation) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '172.83.40.68');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1198', '2022-11-13 03:20:11', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '172.83.40.68');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1199', '2022-11-13 03:20:13', 'Module Create Successful - Service ID: 14', 'killmeuwu@protonmail.com', '8', '8', '0', '172.83.40.68');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1200', '2022-11-13 03:20:13', 'Email Sent to Astrid Iscool (New Product Information) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '172.83.40.68');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1201', '2022-11-13 03:23:50', 'Email Sent to Astrid Iscool ([Ticket ID: GDO-542279] 70 trillion??) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '172.83.40.68');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1202', '2022-11-13 03:25:02', 'Email Sent to Astrid Iscool ([Ticket ID: GDO-542279] 70 trillion??) - Client ID: 8', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1203', '2022-11-13 03:25:47', 'Email Sent to Astrid Iscool ([Ticket ID: GDO-542279] 70 trillion??) - Client ID: 8', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1204', '2022-11-13 03:27:01', 'Email Sent to Astrid Iscool ([Ticket ID: GDO-542279] 70 trillion??) - Client ID: 8', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1205', '2022-11-13 03:27:01', 'Email Sent to Astrid Iscool (Your Feedback is Requested for Ticket #GDO-542279) - Client ID: 8', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1206', '2022-11-13 03:29:40', 'Email Sent to Astrid Iscool (Your Feedback is Requested for Ticket #GDO-542279) - Client ID: 8', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1207', '2022-11-13 03:29:48', 'Email Sent to Astrid Iscool (Your Feedback is Requested for Ticket #GDO-542279) - Client ID: 8', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1208', '2022-11-13 03:29:54', 'Email Sent to Astrid Iscool ([Ticket ID: GDO-542279] 70 trillion??) - Client ID: 8', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1209', '2022-11-13 03:30:24', 'Deleted Ticket - Ticket ID: 5', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1210', '2022-11-13 03:39:18', 'General Settings Modified. Changes made: Maintenance Mode Enabled.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1211', '2022-11-13 03:41:03', 'General Settings Modified. Changes made: Maintenance Mode Disabled.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1212', '2022-11-13 03:42:56', 'General Settings Modified. Changes made: Domain Changed from \'https://user.lunardev.group/\' to \'http://user.lunardev.group/\'. Logo URL Changed from \'https://dash.lunardev.group/u/6c7QzS.png\' to \'http://dash.lunardev.group/u/6c7QzS.png\'. System URL Changed from \'https://user.lunardev.group/\' to \'http://user.lunardev.group/\'.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1213', '2022-11-13 03:44:41', 'General Settings Modified. Changes made: Domain Changed from \'http://user.lunardev.group/\' to \'https://user.lunardev.group/\'. Logo URL Changed from \'http://dash.lunardev.group/u/6c7QzS.png\' to \'https://dash.lunardev.group/u/6c7QzS.png\'. System URL Changed from \'http://user.lunardev.group/\' to \'https://user.lunardev.group/\'.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1214', '2022-11-13 03:47:52', 'Addon Module Activated - Google Analytics', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1215', '2022-11-13 03:49:26', 'Addon Module Access Permissions Changed - - Removed Role Group(s): Full Administrator.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1216', '2022-11-13 03:49:26', 'Addon Module Access Permissions Changed - Google Analytics - Added Role Group(s): Full Administrator.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1217', '2022-11-13 03:49:26', 'Addon Module Settings Modified - Google Analytics - Initial setting of Analytics Version to \'Global Site Tag\', Initial setting of Measurement ID to \'G-V52X006QED\', Initial setting of Tracking Domain to \'user.lunardev.group\'', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1218', '2022-11-13 03:51:48', 'Addon Module Deactivated - Google Analytics', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1219', '2022-11-13 03:52:00', 'Addon Module Activated - PayPal Transaction Lookup', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1220', '2022-11-13 03:56:10', 'Addon Module Access Permissions Changed - PayPal Transaction Lookup - Added Role Group(s): Full Administrator.', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1221', '2022-11-13 03:56:10', 'Addon Module Settings Modified - PayPal Transaction Lookup - Initial setting of API Username to \'contact_api1.lunardev.group\', API Password (password field) value set., API Signature (password field) value set., Initial setting of Show Balance to \'on\', Initial setting of showbalance2 to \'\', Initial setting of showbalance3 to \'\'', 'winter', '0', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1222', '2022-11-13 04:03:37', 'Module Change Package Successful - Service ID: 14', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1223', '2022-11-13 04:03:37', 'Automatic Product/Service Upgrade Successful - Service ID: 14', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1224', '2022-11-13 04:03:39', 'Email Sent to Astrid Iscool (Order Confirmation) - Client ID: 8', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1225', '2022-11-13 04:03:39', 'Upgrade Order Placed - Order ID: 15', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1226', '2022-11-13 04:03:40', 'Email Sent (WHMCS New Order Notification) - Client ID: 8 - Order ID: 15', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1227', '2022-11-13 04:03:50', 'Module Change Package Successful - Service ID: 14', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1228', '2022-11-13 04:05:22', 'Modified Product/Service - MINECRAFT_VERSION changed from to rd-132211 - User ID: 8 - Service ID: 14', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1229', '2022-11-13 04:05:28', 'Module Change Package Successful - Service ID: 14', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1230', '2022-11-13 04:09:22', 'Modified Product/Service - MINECRAFT_VERSION changed from rd-132211 to 1.8.8 - User ID: 8 - Service ID: 14', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1231', '2022-11-13 04:09:27', 'Module Change Package Successful - Service ID: 14', 'winter', '8', '1', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1232', '2022-11-13 04:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1233', '2022-11-13 04:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1234', '2022-11-13 04:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1235', '2022-11-13 07:08:39', 'Added Client File - Title: 04d46af90d2ea9f80708dd73aa130e0b.jpg - User ID: 8', 'winter', '8', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1236', '2022-11-13 07:10:29', 'Client Profile Modified - Last Name: \'Iscool\' to \'Isgay\' - Client ID: 8', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1237', '2022-11-13 07:11:20', 'Email Sent to Astrid Isgay ([Ticket ID: UFR-251616] PlEASE HELP BETTER THEN coAL?) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1238', '2022-11-13 07:11:56', 'Email Sent to Astrid Isgay ([Ticket ID: UFR-251616] PlEASE HELP BETTER THEN coAL?) - Client ID: 8', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1239', '2022-11-13 07:13:10', 'Email Sent to Astrid Isgay ([Ticket ID: UFR-251616] PlEASE HELP BETTER THEN coAL?) - Client ID: 8', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1240', '2022-11-13 07:16:13', 'Added Credit - User ID: 8 - Amount: $999,999,999.00 USD', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1241', '2022-11-13 07:16:19', 'Added Credit - User ID: 8 - Amount: $999,999,999.00 USD', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1242', '2022-11-13 07:16:23', 'Added Credit - User ID: 8 - Amount: $999,999,999.00 USD', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1243', '2022-11-13 07:16:26', 'Added Credit - User ID: 8 - Amount: $999,999,999.00 USD', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1244', '2022-11-13 07:16:29', 'Added Credit - User ID: 8 - Amount: $999,999,999.00 USD', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1245', '2022-11-13 07:16:32', 'Added Credit - User ID: 8 - Amount: $999,999,999.00 USD', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1246', '2022-11-13 07:16:56', 'Added Credit - User ID: 8 - Amount: $999,999,999.00 USD', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1247', '2022-11-13 07:17:11', 'Added Credit - User ID: 8 - Amount: $70,000,000,000.00 USD', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1248', '2022-11-13 07:17:20', 'Added Credit - User ID: 8 - Amount: $70,000,000,000.00 USD', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1249', '2022-11-13 07:17:31', 'Added Credit - User ID: 8 - Amount: $70,000,000,000.00 USD', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1250', '2022-11-13 07:17:33', 'Added Credit - User ID: 8 - Amount: $70,000,000,000.00 USD', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1251', '2022-11-13 07:17:36', 'Added Credit - User ID: 8 - Amount: $70,000,000,000.00 USD', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1252', '2022-11-13 07:17:38', 'Added Credit - User ID: 8 - Amount: $70,000,000,000.00 USD', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1253', '2022-11-13 07:18:02', 'Added Credit - User ID: 8 - Amount: $700,000,000,000.00 USD', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1254', '2022-11-13 07:18:37', 'Added Credit - User ID: 8 - Amount: $1,127,069,999,990.00 USD', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1255', '2022-11-13 07:18:43', 'Added Credit - User ID: 8 - Amount: $1,127,069,999,990.00 USD', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1256', '2022-11-13 07:19:17', 'Added Credit - User ID: 8 - Amount: $1,127,069,999,990.00 USD', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1257', '2022-11-13 07:19:33', 'Added Credit - User ID: 8 - Amount: $4,508,279,999,960.00 USD', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1258', '2022-11-13 07:20:27', 'Modified Invoice - Invoice ID: 14', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1259', '2022-11-13 07:20:30', 'Modified Invoice Options - Invoice ID: 14', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1260', '2022-11-13 07:20:32', 'Email Sent to Astrid Isgay (Customer Invoice) - Client ID: 8', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1261', '2022-11-13 07:20:39', 'Cancelled Invoice - Invoice ID: 14', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1262', '2022-11-13 07:20:57', 'Modified Invoice - Invoice ID: 15', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1263', '2022-11-13 07:21:16', 'Modified Invoice - Invoice ID: 15', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1264', '2022-11-13 07:21:23', 'Modified Invoice - Invoice ID: 15', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1265', '2022-11-13 07:21:31', 'Modified Invoice - Invoice ID: 15', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1266', '2022-11-13 07:21:38', 'Modified Invoice - Invoice ID: 15', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1267', '2022-11-13 07:21:43', 'Modified Invoice - Invoice ID: 15', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1268', '2022-11-13 07:21:50', 'Modified Invoice - Invoice ID: 15', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1269', '2022-11-13 07:21:57', 'Modified Invoice - Invoice ID: 15', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1270', '2022-11-13 07:22:33', 'Modified Invoice - Invoice ID: 15', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1271', '2022-11-13 07:22:41', 'Modified Invoice Options - Invoice ID: 15', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1272', '2022-11-13 07:22:42', 'Email Sent to Astrid Isgay (Customer Invoice) - Client ID: 8', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1273', '2022-11-13 07:22:52', 'Credit Applied - Amount: 9016559999920 - Invoice ID: 15', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1274', '2022-11-13 07:22:52', 'Invoice Marked Paid - Invoice ID: 15', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1275', '2022-11-13 07:22:54', 'Email Sent to Astrid Isgay (Invoice Payment Confirmation) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1276', '2022-11-13 07:24:19', 'Modified Invoice - Invoice ID: 16', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1277', '2022-11-13 07:24:23', 'Modified Invoice Options - Invoice ID: 16', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1278', '2022-11-13 07:24:24', 'Email Sent to Astrid Isgay (Customer Invoice) - Client ID: 8', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1279', '2022-11-13 07:24:32', 'Modified Invoice - Invoice ID: 16', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1280', '2022-11-13 07:24:56', 'Added Transaction - Transaction ID: 3', 'winter', '7', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1281', '2022-11-13 07:24:56', 'Added Invoice Payment - Invoice ID: 11', 'winter', '7', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1282', '2022-11-13 07:24:56', 'Invoice Marked Paid - Invoice ID: 11', 'winter', '7', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1283', '2022-11-13 07:24:57', 'Email Sent to Dylan "Big Cock" James (Invoice Payment Confirmation) - Client ID: 7', 'winter', '7', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1284', '2022-11-13 07:24:57', 'Added Transaction - Transaction ID: 4', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1285', '2022-11-13 07:24:57', 'Added Invoice Payment - Invoice ID: 16', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1286', '2022-11-13 07:24:57', 'Invoice Marked Paid - Invoice ID: 16', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1287', '2022-11-13 07:24:58', 'Email Sent to Astrid Isgay (Invoice Payment Confirmation) - Client ID: 8', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1288', '2022-11-13 07:25:29', 'Added Credit - User ID: 8 - Amount: $90,165,599,999,200.00 USD', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1289', '2022-11-13 07:27:08', 'Product Created - \'Enchanted Netherite\' - Product ID: 17', 'winter', '0', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1290', '2022-11-13 07:27:08', 'Product Duplicated: \'Netherite\' to \'Enchanted Netherite\' - Product ID: 17', 'winter', '0', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1291', '2022-11-13 07:29:11', 'Product Configuration Modified: Product Description Modified. Product Color Modified. Allow Multiple Quantities Enabled. cpu Value Modified: \'120\' to \'200\'. disk Value Modified: \'8192\' to \'12048\'. memory Value Modified: \'6144\' to \'0\'. location_id Value Modified: \'2\' to \'1\'. databases Value Modified: \'3\' to \'100\'. server_name Value Modified: \'Minecraft | Netherite\' to \'Minecraft | Enchanted Netherite\'. backups Value Modified: \'0\' to \'10\'. Upgrade Packages Modified. Pricing Modified. Product ID: 17', 'winter', '0', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1292', '2022-11-13 07:29:37', 'New Order Placed - Order ID: 16 - User ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1293', '2022-11-13 07:29:53', 'Created Invoice - Invoice ID: 17', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1294', '2022-11-13 07:29:53', 'Credit Applied at Client Request on Checkout - Invoice ID: 17 - Amount: 50050', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1295', '2022-11-13 07:29:54', 'Email Sent to Astrid Isgay (Customer Invoice) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1296', '2022-11-13 07:29:56', 'Email Sent (WHMCS New Order Notification) - Client ID: 8 - Order ID: 16', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1297', '2022-11-13 07:29:56', 'Email Sent to Astrid Isgay (Order Confirmation) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1298', '2022-11-13 07:29:57', 'Invoice Marked Paid - Invoice ID: 17', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1299', '2022-11-13 07:29:58', 'Email Sent to Astrid Isgay (Invoice Payment Confirmation) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1300', '2022-11-13 07:29:58', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1301', '2022-11-13 07:30:00', 'Module Create Successful - Service ID: 15', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1302', '2022-11-13 07:30:00', 'Email Sent to Astrid Isgay (New Product Information) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1303', '2022-11-13 07:30:01', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1304', '2022-11-13 07:30:02', 'Module Create Successful - Service ID: 16', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1305', '2022-11-13 07:30:03', 'Email Sent to Astrid Isgay (New Product Information) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1306', '2022-11-13 07:30:04', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1307', '2022-11-13 07:30:05', 'Module Create Failed - Service ID: 17 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1308', '2022-11-13 07:30:06', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1309', '2022-11-13 07:30:06', 'Module Create Failed - Service ID: 18 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1310', '2022-11-13 07:30:07', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1311', '2022-11-13 07:30:07', 'Module Create Failed - Service ID: 19 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1312', '2022-11-13 07:30:08', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1313', '2022-11-13 07:30:09', 'Module Create Successful - Service ID: 20', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1314', '2022-11-13 07:30:10', 'Email Sent to Astrid Isgay (New Product Information) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1315', '2022-11-13 07:30:11', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1316', '2022-11-13 07:30:12', 'Module Create Successful - Service ID: 21', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1317', '2022-11-13 07:30:12', 'Email Sent to Astrid Isgay (New Product Information) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1318', '2022-11-13 07:30:13', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1319', '2022-11-13 07:30:14', 'Module Create Successful - Service ID: 22', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1320', '2022-11-13 07:30:14', 'Email Sent to Astrid Isgay (New Product Information) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1321', '2022-11-13 07:30:15', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1322', '2022-11-13 07:30:16', 'Module Create Successful - Service ID: 23', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1323', '2022-11-13 07:30:17', 'Email Sent to Astrid Isgay (New Product Information) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1324', '2022-11-13 07:30:17', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1325', '2022-11-13 07:30:18', 'Module Create Successful - Service ID: 24', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1326', '2022-11-13 07:30:19', 'Email Sent to Astrid Isgay (New Product Information) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1327', '2022-11-13 07:30:20', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1328', '2022-11-13 07:30:20', 'Module Create Successful - Service ID: 25', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1329', '2022-11-13 07:30:21', 'Email Sent to Astrid Isgay (New Product Information) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1330', '2022-11-13 07:30:22', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1331', '2022-11-13 07:30:23', 'Module Create Failed - Service ID: 26 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1332', '2022-11-13 07:30:24', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1333', '2022-11-13 07:30:24', 'Module Create Failed - Service ID: 27 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1334', '2022-11-13 07:30:25', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1335', '2022-11-13 07:30:26', 'Module Create Failed - Service ID: 28 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1336', '2022-11-13 07:30:27', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1337', '2022-11-13 07:30:28', 'Module Create Failed - Service ID: 29 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1338', '2022-11-13 07:30:29', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1339', '2022-11-13 07:30:30', 'Module Create Failed - Service ID: 30 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1340', '2022-11-13 07:30:30', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1341', '2022-11-13 07:30:31', 'Module Create Failed - Service ID: 31 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1342', '2022-11-13 07:30:32', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1343', '2022-11-13 07:30:33', 'Module Create Failed - Service ID: 32 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1344', '2022-11-13 07:30:34', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1345', '2022-11-13 07:30:35', 'Module Create Failed - Service ID: 33 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1346', '2022-11-13 07:30:36', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1347', '2022-11-13 07:30:37', 'Module Create Failed - Service ID: 34 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1348', '2022-11-13 07:30:38', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1349', '2022-11-13 07:30:39', 'Module Create Failed - Service ID: 35 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1350', '2022-11-13 07:30:40', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1351', '2022-11-13 07:30:41', 'Module Create Failed - Service ID: 36 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1352', '2022-11-13 07:30:42', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1353', '2022-11-13 07:30:43', 'Module Create Failed - Service ID: 37 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1354', '2022-11-13 07:30:43', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1355', '2022-11-13 07:30:44', 'Module Create Failed - Service ID: 38 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1356', '2022-11-13 07:30:45', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1357', '2022-11-13 07:30:46', 'Module Create Failed - Service ID: 39 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1358', '2022-11-13 07:30:46', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1359', '2022-11-13 07:30:47', 'Module Create Failed - Service ID: 40 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1360', '2022-11-13 07:30:48', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1361', '2022-11-13 07:30:49', 'Module Create Failed - Service ID: 41 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1362', '2022-11-13 07:30:50', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1363', '2022-11-13 07:30:51', 'Module Create Failed - Service ID: 42 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1364', '2022-11-13 07:30:52', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1365', '2022-11-13 07:30:53', 'Module Create Failed - Service ID: 43 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1366', '2022-11-13 07:30:53', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1367', '2022-11-13 07:30:54', 'Module Create Failed - Service ID: 44 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1368', '2022-11-13 07:30:55', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1369', '2022-11-13 07:30:56', 'Module Create Failed - Service ID: 45 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1370', '2022-11-13 07:30:57', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1371', '2022-11-13 07:30:58', 'Module Create Failed - Service ID: 46 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1372', '2022-11-13 07:30:59', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1373', '2022-11-13 07:31:00', 'Module Create Failed - Service ID: 47 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1374', '2022-11-13 07:31:00', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1375', '2022-11-13 07:31:01', 'Module Create Failed - Service ID: 48 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1376', '2022-11-13 07:31:02', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1377', '2022-11-13 07:31:03', 'Module Create Failed - Service ID: 49 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1378', '2022-11-13 07:31:04', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1379', '2022-11-13 07:31:05', 'Module Create Failed - Service ID: 50 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1380', '2022-11-13 07:31:06', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1381', '2022-11-13 07:31:06', 'Module Create Failed - Service ID: 51 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1382', '2022-11-13 07:31:07', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1383', '2022-11-13 07:31:08', 'Module Create Failed - Service ID: 52 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1384', '2022-11-13 07:31:09', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1385', '2022-11-13 07:31:10', 'Module Create Failed - Service ID: 53 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1386', '2022-11-13 07:31:11', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1387', '2022-11-13 07:31:12', 'Module Create Failed - Service ID: 54 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1388', '2022-11-13 07:31:12', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1389', '2022-11-13 07:31:15', 'Module Create Failed - Service ID: 55 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1390', '2022-11-13 07:31:16', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1391', '2022-11-13 07:31:17', 'Module Create Failed - Service ID: 56 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1392', '2022-11-13 07:31:18', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1393', '2022-11-13 07:31:19', 'Module Create Failed - Service ID: 57 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1394', '2022-11-13 07:31:19', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1395', '2022-11-13 07:31:20', 'Module Create Failed - Service ID: 58 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1396', '2022-11-13 07:31:21', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1397', '2022-11-13 07:31:22', 'Module Create Failed - Service ID: 59 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1398', '2022-11-13 07:31:23', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1399', '2022-11-13 07:31:24', 'Module Create Failed - Service ID: 60 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1400', '2022-11-13 07:31:24', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1401', '2022-11-13 07:31:25', 'Module Create Failed - Service ID: 61 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1402', '2022-11-13 07:31:26', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1403', '2022-11-13 07:31:27', 'Module Create Failed - Service ID: 62 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1404', '2022-11-13 07:31:28', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1405', '2022-11-13 07:31:29', 'Module Create Failed - Service ID: 63 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1406', '2022-11-13 07:31:30', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1407', '2022-11-13 07:31:31', 'Module Create Failed - Service ID: 64 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1408', '2022-11-13 07:31:32', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1409', '2022-11-13 07:31:33', 'Module Create Failed - Service ID: 65 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1410', '2022-11-13 07:31:34', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1411', '2022-11-13 07:31:35', 'Module Create Failed - Service ID: 66 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1412', '2022-11-13 07:31:35', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1413', '2022-11-13 07:31:36', 'Module Create Failed - Service ID: 67 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1414', '2022-11-13 07:31:37', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1415', '2022-11-13 07:31:38', 'Module Create Failed - Service ID: 68 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1416', '2022-11-13 07:31:39', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1417', '2022-11-13 07:31:40', 'Module Create Failed - Service ID: 69 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1418', '2022-11-13 07:31:40', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1419', '2022-11-13 07:31:41', 'Module Create Failed - Service ID: 70 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1420', '2022-11-13 07:31:42', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1421', '2022-11-13 07:31:43', 'Module Create Failed - Service ID: 71 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1422', '2022-11-13 07:31:44', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1423', '2022-11-13 07:31:45', 'Module Create Failed - Service ID: 72 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1424', '2022-11-13 07:31:46', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1425', '2022-11-13 07:31:47', 'Module Create Failed - Service ID: 73 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1426', '2022-11-13 07:31:48', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1427', '2022-11-13 07:31:49', 'Module Create Failed - Service ID: 74 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1428', '2022-11-13 07:31:50', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1429', '2022-11-13 07:31:50', 'Module Create Failed - Service ID: 75 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1430', '2022-11-13 07:31:51', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1431', '2022-11-13 07:31:52', 'Module Create Failed - Service ID: 76 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1432', '2022-11-13 07:31:52', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1433', '2022-11-13 07:31:53', 'Module Create Failed - Service ID: 77 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1434', '2022-11-13 07:31:53', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1435', '2022-11-13 07:31:54', 'Module Create Failed - Service ID: 78 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1436', '2022-11-13 07:31:55', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1437', '2022-11-13 07:31:55', 'Module Create Failed - Service ID: 79 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1438', '2022-11-13 07:31:56', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1439', '2022-11-13 07:31:56', 'Module Create Failed - Service ID: 80 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1440', '2022-11-13 07:31:57', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1441', '2022-11-13 07:31:58', 'Module Create Failed - Service ID: 81 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1442', '2022-11-13 07:31:58', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1443', '2022-11-13 07:31:59', 'Module Create Failed - Service ID: 82 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1444', '2022-11-13 07:32:00', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1445', '2022-11-13 07:32:00', 'Module Create Failed - Service ID: 83 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1446', '2022-11-13 07:32:01', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1447', '2022-11-13 07:32:01', 'Module Create Failed - Service ID: 84 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1448', '2022-11-13 07:32:02', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1449', '2022-11-13 07:32:03', 'Module Create Failed - Service ID: 85 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1450', '2022-11-13 07:32:03', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1451', '2022-11-13 07:32:04', 'Module Create Failed - Service ID: 86 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1452', '2022-11-13 07:32:04', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1453', '2022-11-13 07:32:05', 'Module Create Failed - Service ID: 87 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1454', '2022-11-13 07:32:06', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1455', '2022-11-13 07:32:06', 'Module Create Failed - Service ID: 88 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1456', '2022-11-13 07:32:07', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1457', '2022-11-13 07:32:08', 'Module Create Failed - Service ID: 89 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1458', '2022-11-13 07:32:09', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1459', '2022-11-13 07:32:10', 'Module Create Failed - Service ID: 90 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1460', '2022-11-13 07:32:11', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1461', '2022-11-13 07:32:11', 'Module Create Failed - Service ID: 91 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1462', '2022-11-13 07:32:12', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1463', '2022-11-13 07:32:12', 'Module Create Failed - Service ID: 92 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1464', '2022-11-13 07:32:13', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1465', '2022-11-13 07:32:13', 'Module Create Failed - Service ID: 93 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1466', '2022-11-13 07:32:14', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1467', '2022-11-13 07:32:15', 'Module Create Failed - Service ID: 94 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1468', '2022-11-13 07:32:16', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1469', '2022-11-13 07:32:16', 'Module Create Failed - Service ID: 95 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1470', '2022-11-13 07:32:17', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1471', '2022-11-13 07:32:17', 'Module Create Failed - Service ID: 96 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1472', '2022-11-13 07:32:18', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1473', '2022-11-13 07:32:18', 'Module Create Failed - Service ID: 97 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1474', '2022-11-13 07:32:19', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1475', '2022-11-13 07:32:20', 'Module Create Failed - Service ID: 98 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1476', '2022-11-13 07:32:20', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1477', '2022-11-13 07:32:21', 'Module Create Failed - Service ID: 99 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1478', '2022-11-13 07:32:21', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1479', '2022-11-13 07:32:22', 'Module Create Failed - Service ID: 100 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1480', '2022-11-13 07:32:23', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1481', '2022-11-13 07:32:23', 'Module Create Failed - Service ID: 101 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1482', '2022-11-13 07:32:24', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1483', '2022-11-13 07:32:25', 'Module Create Failed - Service ID: 102 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1484', '2022-11-13 07:32:25', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1485', '2022-11-13 07:32:26', 'Module Create Failed - Service ID: 103 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1486', '2022-11-13 07:32:26', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1487', '2022-11-13 07:32:27', 'Module Create Failed - Service ID: 104 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1488', '2022-11-13 07:32:28', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1489', '2022-11-13 07:32:28', 'Module Create Failed - Service ID: 105 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1490', '2022-11-13 07:32:29', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1491', '2022-11-13 07:32:29', 'Module Create Failed - Service ID: 106 - Error: Couldn\'t find any nodes satisfying the request.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1492', '2022-11-13 07:32:30', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1493', '2022-11-13 07:32:40', 'Module Create Failed - Service ID: 107 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1494', '2022-11-13 07:32:41', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1495', '2022-11-13 07:32:51', 'Module Create Failed - Service ID: 108 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1496', '2022-11-13 07:32:52', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1497', '2022-11-13 07:33:02', 'Module Create Failed - Service ID: 109 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1498', '2022-11-13 07:33:02', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1499', '2022-11-13 07:33:12', 'Module Create Failed - Service ID: 110 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1500', '2022-11-13 07:33:13', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1501', '2022-11-13 07:33:23', 'Module Create Failed - Service ID: 111 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1502', '2022-11-13 07:33:24', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1503', '2022-11-13 07:33:34', 'Module Create Failed - Service ID: 112 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1504', '2022-11-13 07:33:35', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1505', '2022-11-13 07:33:45', 'Module Create Failed - Service ID: 113 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1506', '2022-11-13 07:33:45', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1507', '2022-11-13 07:33:55', 'Module Create Failed - Service ID: 114 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1508', '2022-11-13 07:33:56', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1509', '2022-11-13 07:34:06', 'Module Create Failed - Service ID: 115 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1510', '2022-11-13 07:34:07', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1511', '2022-11-13 07:34:17', 'Module Create Failed - Service ID: 116 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1512', '2022-11-13 07:34:18', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1513', '2022-11-13 07:34:28', 'Module Create Failed - Service ID: 117 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1514', '2022-11-13 07:34:28', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1515', '2022-11-13 07:34:38', 'Module Create Failed - Service ID: 118 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1516', '2022-11-13 07:34:39', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1517', '2022-11-13 07:34:49', 'Module Create Failed - Service ID: 119 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1518', '2022-11-13 07:34:50', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1519', '2022-11-13 07:35:00', 'Module Create Failed - Service ID: 120 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1520', '2022-11-13 07:35:01', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1521', '2022-11-13 07:35:11', 'Module Create Failed - Service ID: 121 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1522', '2022-11-13 07:35:12', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1523', '2022-11-13 07:35:22', 'Module Create Failed - Service ID: 122 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1524', '2022-11-13 07:35:22', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1525', '2022-11-13 07:35:32', 'Module Create Failed - Service ID: 123 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1526', '2022-11-13 07:35:33', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1527', '2022-11-13 07:35:43', 'Module Create Failed - Service ID: 124 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1528', '2022-11-13 07:35:44', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1529', '2022-11-13 07:35:54', 'Module Create Failed - Service ID: 125 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1530', '2022-11-13 07:35:54', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1531', '2022-11-13 07:36:05', 'Module Create Failed - Service ID: 126 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1532', '2022-11-13 07:36:05', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1533', '2022-11-13 07:36:15', 'Module Create Failed - Service ID: 127 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1534', '2022-11-13 07:36:17', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1535', '2022-11-13 07:36:27', 'Module Create Failed - Service ID: 128 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1536', '2022-11-13 07:36:28', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1537', '2022-11-13 07:36:38', 'Module Create Failed - Service ID: 129 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1538', '2022-11-13 07:36:39', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1539', '2022-11-13 07:36:49', 'Module Create Failed - Service ID: 130 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1540', '2022-11-13 07:36:50', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1541', '2022-11-13 07:37:00', 'Module Create Failed - Service ID: 131 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1542', '2022-11-13 07:37:00', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1543', '2022-11-13 07:37:10', 'Module Create Failed - Service ID: 132 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1544', '2022-11-13 07:37:11', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1545', '2022-11-13 07:37:21', 'Module Create Failed - Service ID: 133 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1546', '2022-11-13 07:37:22', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1547', '2022-11-13 07:37:32', 'Module Create Failed - Service ID: 134 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1548', '2022-11-13 07:37:33', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1549', '2022-11-13 07:37:43', 'Module Create Failed - Service ID: 135 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1550', '2022-11-13 07:37:43', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1551', '2022-11-13 07:37:53', 'Module Create Failed - Service ID: 136 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1552', '2022-11-13 07:37:54', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1553', '2022-11-13 07:38:04', 'Module Create Failed - Service ID: 137 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1554', '2022-11-13 07:38:05', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1555', '2022-11-13 07:38:15', 'Module Create Failed - Service ID: 138 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1556', '2022-11-13 07:38:17', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1557', '2022-11-13 07:38:27', 'Module Create Failed - Service ID: 139 - Error: Failed to create user, received error code: 0. Enable module debug log for more info.', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1558', '2022-11-13 07:38:28', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1559', '2022-11-13 07:39:13', 'Module Create Failed - Service ID: 124 - Error: Couldn\'t find any nodes satisfying the request.', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1560', '2022-11-13 07:42:09', 'New Order Placed - Order ID: 17 - User ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1561', '2022-11-13 07:42:09', 'Created Invoice - Invoice ID: 18', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1562', '2022-11-13 07:42:09', 'Credit Applied at Client Request on Checkout - Invoice ID: 18 - Amount: 5', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1563', '2022-11-13 07:42:11', 'Email Sent to Astrid Isgay (Customer Invoice) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1564', '2022-11-13 07:42:11', 'Email Sent (WHMCS New Order Notification) - Client ID: 8 - Order ID: 17', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1565', '2022-11-13 07:42:12', 'Email Sent to Astrid Isgay (Order Confirmation) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1566', '2022-11-13 07:42:12', 'Invoice Marked Paid - Invoice ID: 18', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1567', '2022-11-13 07:42:13', 'Email Sent to Astrid Isgay (Invoice Payment Confirmation) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1568', '2022-11-13 07:42:13', 'Running Module Create on Payment', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1569', '2022-11-13 07:42:15', 'Module Create Successful - Service ID: 520', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1570', '2022-11-13 07:42:15', 'Email Sent to Astrid Isgay (New Product Information) - Client ID: 8', 'killmeuwu@protonmail.com', '8', '8', '0', '2001:569:7130:7200:d8e7:780:af98:de5b');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1571', '2022-11-13 07:43:54', 'Running Module Terminate on Order Cancel', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1572', '2022-11-13 07:43:55', 'Module Terminate Successful - Service ID: 15', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1573', '2022-11-13 07:43:55', 'Running Module Terminate on Order Cancel', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1574', '2022-11-13 07:43:56', 'Module Terminate Successful - Service ID: 16', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1575', '2022-11-13 07:43:56', 'Running Module Terminate on Order Cancel', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1576', '2022-11-13 07:43:57', 'Module Terminate Successful - Service ID: 20', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1577', '2022-11-13 07:43:57', 'Running Module Terminate on Order Cancel', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1578', '2022-11-13 07:43:57', 'Module Terminate Successful - Service ID: 21', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1579', '2022-11-13 07:43:57', 'Running Module Terminate on Order Cancel', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1580', '2022-11-13 07:43:57', 'Module Terminate Successful - Service ID: 22', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1581', '2022-11-13 07:43:57', 'Running Module Terminate on Order Cancel', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1582', '2022-11-13 07:43:58', 'Module Terminate Successful - Service ID: 23', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1583', '2022-11-13 07:43:58', 'Running Module Terminate on Order Cancel', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1584', '2022-11-13 07:43:58', 'Module Terminate Successful - Service ID: 24', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1585', '2022-11-13 07:43:58', 'Running Module Terminate on Order Cancel', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1586', '2022-11-13 07:43:59', 'Module Terminate Successful - Service ID: 25', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1587', '2022-11-13 07:44:00', 'Credit Removed - Reason: Order status changed to Cancelled - Amount: 50050.00 - Invoice ID: 17', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1588', '2022-11-13 07:44:00', 'Order Status set to Cancelled - Order ID: 16', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1589', '2022-11-13 07:44:40', 'Product Configuration Modified: Allow Multiple Quantities Disabled. Product ID: 17', 'winter', '0', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1590', '2022-11-13 07:47:42', 'Product Configuration Modified: Product Description Modified. disk Value Modified: \'5120\' to \'20480\'. Product ID: 13', 'winter', '0', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1591', '2022-11-13 07:52:56', 'Order Accepted - Order ID: 17', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1592', '2022-11-13 07:52:56', 'Order Accepted - Order ID: 15', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1593', '2022-11-13 07:52:56', 'Order Accepted - Order ID: 14', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1594', '2022-11-13 07:55:18', 'Product Configuration Modified: cpu Value Modified: \'20\' to \'50\'. disk Value Modified: \'5120\' to \'15360\'. memory Value Modified: \'1024\' to \'4096\'. backups Value Modified: \'1\' to \'3\'. Pricing Modified. Product ID: 12', 'winter', '0', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1595', '2022-11-13 07:56:22', 'Module Change Package Successful - Service ID: 520', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1596', '2022-11-13 08:00:01', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1597', '2022-11-13 08:04:49', 'Product Created - \'Terraria | TShock\' - Product ID: 18', 'winter', '0', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1598', '2022-11-13 08:04:49', 'Product Duplicated: \'Terraria | Wisp\' to \'Terraria | TShock\' - Product ID: 18', 'winter', '0', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1599', '2022-11-13 08:05:41', 'Product Configuration Modified: Product Description Modified. cpu Value Modified: \'50\' to \'100\'. disk Value Modified: \'15360\' to \'10240\'. location_id Value Modified: \'2\' to \'1\'. Pricing Modified. Product ID: 18', 'winter', '0', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1600', '2022-11-13 08:06:26', 'Product Configuration Modified: Product Description Modified. disk Value Modified: \'15360\' to \'5120\'. Product ID: 12', 'winter', '0', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1601', '2022-11-13 08:06:44', 'Product Modified - Name Modified: \'Terraria | Wisp\' to \'Terraria | Beginner \' - Product ID: 12', 'winter', '0', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1602', '2022-11-13 08:06:50', 'Product Configuration Modified: Pricing Modified. Product ID: 12', 'winter', '0', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1603', '2022-11-13 08:16:15', 'Reactivated Invoice - Invoice ID: 11', 'winter', '7', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1604', '2022-11-13 08:16:15', 'Reactivated Invoice - Invoice ID: 12', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1605', '2022-11-13 08:16:15', 'Reactivated Invoice - Invoice ID: 15', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1606', '2022-11-13 08:16:15', 'Reactivated Invoice - Invoice ID: 16', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1607', '2022-11-13 08:16:15', 'Reactivated Invoice - Invoice ID: 17', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1608', '2022-11-13 08:16:38', 'Cancelled Invoice - Invoice ID: 11', 'winter', '7', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1609', '2022-11-13 08:16:38', 'Cancelled Invoice - Invoice ID: 12', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1610', '2022-11-13 08:16:38', 'Cancelled Invoice - Invoice ID: 15', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1611', '2022-11-13 08:16:38', 'Cancelled Invoice - Invoice ID: 16', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1612', '2022-11-13 08:16:38', 'Cancelled Invoice - Invoice ID: 17', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1613', '2022-11-13 08:17:10', 'Deleted Invoice - Invoice ID: 11', 'winter', '7', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1614', '2022-11-13 08:17:10', 'Deleted Invoice - Invoice ID: 12', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1615', '2022-11-13 08:17:10', 'Deleted Invoice - Invoice ID: 15', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1616', '2022-11-13 08:17:10', 'Deleted Invoice - Invoice ID: 16', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1617', '2022-11-13 08:17:10', 'Deleted Invoice - Invoice ID: 17', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1618', '2022-11-13 08:18:09', 'Deleted Product/Service - User ID: 8 - Service ID: 519', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1619', '2022-11-13 08:18:09', 'Deleted Product/Service - User ID: 8 - Service ID: 518', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1620', '2022-11-13 08:18:09', 'Deleted Product/Service - User ID: 8 - Service ID: 517', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1621', '2022-11-13 08:18:09', 'Deleted Product/Service - User ID: 8 - Service ID: 516', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1622', '2022-11-13 08:18:09', 'Deleted Product/Service - User ID: 8 - Service ID: 515', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1623', '2022-11-13 08:18:09', 'Deleted Product/Service - User ID: 8 - Service ID: 514', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1624', '2022-11-13 08:18:09', 'Deleted Product/Service - User ID: 8 - Service ID: 513', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1625', '2022-11-13 08:18:09', 'Deleted Product/Service - User ID: 8 - Service ID: 512', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1626', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 511', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1627', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 510', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1628', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 509', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1629', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 508', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1630', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 507', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1631', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 506', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1632', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 505', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1633', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 504', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1634', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 503', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1635', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 502', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1636', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 501', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1637', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 500', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1638', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 499', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1639', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 498', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1640', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 497', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1641', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 496', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1642', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 495', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1643', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 494', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1644', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 493', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1645', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 492', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1646', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 491', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1647', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 490', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1648', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 489', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1649', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 488', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1650', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 487', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1651', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 486', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1652', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 485', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1653', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 484', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1654', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 483', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1655', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 482', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1656', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 481', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1657', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 480', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1658', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 479', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1659', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 478', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1660', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 477', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1661', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 476', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1662', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 475', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1663', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 474', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1664', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 473', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1665', '2022-11-13 08:18:33', 'Deleted Product/Service - User ID: 8 - Service ID: 472', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1666', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 471', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1667', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 470', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1668', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 469', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1669', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 468', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1670', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 467', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1671', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 466', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1672', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 465', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1673', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 464', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1674', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 463', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1675', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 462', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1676', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 461', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1677', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 460', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1678', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 459', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1679', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 458', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1680', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 457', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1681', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 456', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1682', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 455', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1683', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 454', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1684', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 453', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1685', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 452', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1686', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 451', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1687', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 450', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1688', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 449', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1689', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 448', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1690', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 447', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1691', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 446', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1692', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 445', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1693', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 444', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1694', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 443', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1695', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 442', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1696', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 441', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1697', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 440', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1698', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 439', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1699', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 438', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1700', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 437', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1701', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 436', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1702', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 435', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1703', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 434', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1704', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 433', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1705', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 432', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1706', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 431', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1707', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 430', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1708', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 429', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1709', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 428', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1710', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 427', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1711', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 426', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1712', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 425', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1713', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 424', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1714', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 423', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1715', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 422', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1716', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 421', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1717', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 420', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1718', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 419', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1719', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 418', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1720', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 417', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1721', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 416', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1722', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 415', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1723', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 414', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1724', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 413', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1725', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 412', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1726', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 411', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1727', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 410', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1728', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 409', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1729', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 408', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1730', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 407', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1731', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 406', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1732', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 405', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1733', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 404', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1734', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 403', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1735', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 402', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1736', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 401', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1737', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 400', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1738', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 399', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1739', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 398', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1740', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 397', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1741', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 396', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1742', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 395', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1743', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 394', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1744', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 393', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1745', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 392', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1746', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 391', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1747', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 390', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1748', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 389', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1749', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 388', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1750', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 387', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1751', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 386', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1752', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 385', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1753', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 384', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1754', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 383', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1755', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 382', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1756', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 381', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1757', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 380', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1758', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 379', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1759', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 378', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1760', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 377', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1761', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 376', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1762', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 375', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1763', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 374', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1764', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 373', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1765', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 372', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1766', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 371', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1767', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 370', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1768', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 369', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1769', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 368', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1770', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 367', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1771', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 366', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1772', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 365', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1773', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 364', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1774', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 363', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1775', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 362', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1776', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 361', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1777', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 360', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1778', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 359', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1779', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 358', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1780', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 357', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1781', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 356', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1782', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 355', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1783', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 354', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1784', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 353', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1785', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 352', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1786', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 351', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1787', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 350', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1788', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 349', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1789', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 348', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1790', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 347', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1791', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 346', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1792', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 345', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1793', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 344', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1794', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 343', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1795', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 342', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1796', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 341', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1797', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 340', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1798', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 339', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1799', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 338', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1800', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 337', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1801', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 336', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1802', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 335', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1803', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 334', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1804', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 333', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1805', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 332', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1806', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 331', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1807', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 330', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1808', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 329', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1809', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 328', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1810', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 327', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1811', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 326', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1812', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 325', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1813', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 324', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1814', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 323', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1815', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 322', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1816', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 321', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1817', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 320', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1818', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 319', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1819', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 318', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1820', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 317', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1821', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 316', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1822', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 315', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1823', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 314', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1824', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 313', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1825', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 312', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1826', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 311', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1827', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 310', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1828', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 309', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1829', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 308', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1830', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 307', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1831', '2022-11-13 08:18:34', 'Deleted Product/Service - User ID: 8 - Service ID: 306', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1832', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 305', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1833', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 304', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1834', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 303', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1835', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 302', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1836', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 301', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1837', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 300', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1838', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 299', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1839', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 298', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1840', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 297', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1841', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 296', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1842', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 295', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1843', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 294', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1844', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 293', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1845', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 292', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1846', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 291', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1847', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 290', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1848', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 289', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1849', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 288', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1850', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 287', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1851', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 286', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1852', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 285', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1853', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 284', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1854', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 283', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1855', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 282', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1856', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 281', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1857', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 280', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1858', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 279', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1859', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 278', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1860', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 277', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1861', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 276', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1862', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 275', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1863', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 274', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1864', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 273', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1865', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 272', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1866', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 271', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1867', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 270', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1868', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 269', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1869', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 268', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1870', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 267', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1871', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 266', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1872', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 265', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1873', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 264', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1874', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 263', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1875', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 262', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1876', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 261', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1877', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 260', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1878', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 259', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1879', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 258', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1880', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 257', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1881', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 256', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1882', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 255', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1883', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 254', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1884', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 253', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1885', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 252', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1886', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 251', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1887', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 250', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1888', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 249', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1889', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 248', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1890', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 247', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1891', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 246', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1892', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 245', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1893', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 244', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1894', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 243', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1895', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 242', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1896', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 241', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1897', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 240', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1898', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 239', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1899', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 238', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1900', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 237', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1901', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 236', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1902', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 235', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1903', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 234', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1904', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 233', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1905', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 232', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1906', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 231', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1907', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 230', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1908', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 229', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1909', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 228', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1910', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 227', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1911', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 226', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1912', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 225', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1913', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 224', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1914', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 223', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1915', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 222', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1916', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 221', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1917', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 220', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1918', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 219', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1919', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 218', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1920', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 217', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1921', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 216', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1922', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 215', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1923', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 214', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1924', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 213', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1925', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 212', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1926', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 211', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1927', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 210', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1928', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 209', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1929', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 208', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1930', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 207', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1931', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 206', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1932', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 205', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1933', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 204', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1934', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 203', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1935', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 202', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1936', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 201', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1937', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 200', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1938', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 199', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1939', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 198', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1940', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 197', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1941', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 196', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1942', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 195', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1943', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 194', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1944', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 193', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1945', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 192', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1946', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 191', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1947', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 190', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1948', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 189', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1949', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 188', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1950', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 187', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1951', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 186', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1952', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 185', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1953', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 184', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1954', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 183', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1955', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 182', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1956', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 181', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1957', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 180', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1958', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 179', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1959', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 178', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1960', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 177', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1961', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 176', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1962', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 175', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1963', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 174', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1964', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 173', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1965', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 172', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1966', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 171', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1967', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 170', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1968', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 169', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1969', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 168', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1970', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 167', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1971', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 166', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1972', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 165', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1973', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 164', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1974', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 163', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1975', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 162', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1976', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 161', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1977', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 160', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1978', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 159', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1979', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 158', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1980', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 157', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1981', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 156', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1982', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 155', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1983', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 154', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1984', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 153', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1985', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 152', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1986', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 151', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1987', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 150', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1988', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 149', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1989', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 148', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1990', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 147', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1991', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 146', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1992', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 145', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1993', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 144', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1994', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 143', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1995', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 142', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1996', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 141', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1997', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 140', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1998', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 139', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('1999', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 138', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2000', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 137', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2001', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 136', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2002', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 135', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2003', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 134', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2004', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 133', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2005', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 132', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2006', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 131', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2007', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 130', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2008', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 129', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2009', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 128', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2010', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 127', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2011', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 126', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2012', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 125', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2013', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 124', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2014', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 123', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2015', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 122', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2016', '2022-11-13 08:18:35', 'Deleted Product/Service - User ID: 8 - Service ID: 121', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2017', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 120', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2018', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 119', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2019', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 118', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2020', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 117', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2021', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 116', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2022', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 115', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2023', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 114', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2024', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 113', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2025', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 112', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2026', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 111', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2027', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 110', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2028', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 109', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2029', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 108', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2030', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 107', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2031', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 106', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2032', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 105', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2033', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 104', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2034', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 103', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2035', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 102', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2036', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 101', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2037', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 100', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2038', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 99', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2039', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 98', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2040', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 97', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2041', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 96', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2042', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 95', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2043', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 94', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2044', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 93', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2045', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 92', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2046', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 91', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2047', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 90', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2048', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 89', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2049', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 88', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2050', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 87', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2051', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 86', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2052', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 85', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2053', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 84', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2054', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 83', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2055', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 82', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2056', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 81', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2057', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 80', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2058', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 79', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2059', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 78', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2060', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 77', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2061', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 76', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2062', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 75', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2063', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 74', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2064', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 73', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2065', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 72', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2066', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 71', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2067', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 70', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2068', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 69', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2069', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 68', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2070', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 67', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2071', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 66', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2072', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 65', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2073', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 64', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2074', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 63', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2075', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 62', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2076', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 61', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2077', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 60', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2078', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 59', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2079', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 58', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2080', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 57', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2081', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 56', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2082', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 55', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2083', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 54', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2084', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 53', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2085', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 52', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2086', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 51', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2087', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 50', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2088', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 49', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2089', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 48', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2090', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 47', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2091', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 46', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2092', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 45', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2093', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 44', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2094', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 43', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2095', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 42', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2096', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 41', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2097', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 40', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2098', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 39', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2099', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 38', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2100', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 37', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2101', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 36', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2102', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 35', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2103', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 34', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2104', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 33', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2105', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 32', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2106', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 31', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2107', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 30', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2108', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 29', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2109', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 28', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2110', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 27', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2111', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 26', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2112', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 25', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2113', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 24', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2114', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 23', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2115', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 22', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2116', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 21', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2117', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 20', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2118', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 19', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2119', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 18', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2120', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 17', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2121', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 16', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2122', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 15', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2123', '2022-11-13 08:18:36', 'Deleted Product/Service - User ID: 8 - Service ID: 13', 'winter', '8', '8', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2124', '2022-11-13 08:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2125', '2022-11-13 08:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2126', '2022-11-13 08:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2127', '2022-11-13 09:11:38', 'Promotion Created: \'ZTYG8K420W\' - Promotion ID: 4', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2128', '2022-11-13 09:22:22', 'Deleted Order - Order ID: 16', 'winter', '8', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2129', '2022-11-13 09:28:23', 'Product Created - \'Terria | TShock Beginner\' - Product ID: 19', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2130', '2022-11-13 09:28:23', 'Product Duplicated: \'Terraria | TShock\' to \'Terria | TShock Beginner\' - Product ID: 19', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2131', '2022-11-13 09:30:06', 'Product Configuration Modified: Product Description Modified. memory Value Modified: \'4096\' to \'2048\'. egg_id Value Modified: \'27\' to \'29\'. backups Value Modified: \'3\' to \'1\'. Pricing Modified. Product ID: 19', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2132', '2022-11-13 09:30:53', 'Product Modified - Name Modified: \'Terraria | TShock\' to \'Terraria | TShock Novice\' - Product ID: 18', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2133', '2022-11-13 09:30:53', 'Product Configuration Modified: Product Description Modified. egg_id Value Modified: \'27\' to \'29\'. server_name Value Modified: \'Terria | Wisp\' to \'Terraria | TShock Novice\'. Pricing Modified. Product ID: 18', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2134', '2022-11-13 09:31:06', 'Product Modified - Name Modified: \'Terraria | Beginner \' to \'Terraria Vanilla | Beginner \' - Product ID: 12', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2135', '2022-11-13 09:31:16', 'Product Modified - Name Modified: \'Terraria | TShock Novice\' to \'Terraria TShock | Novice\' - Product ID: 18', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2136', '2022-11-13 09:31:48', 'Product Modified - Name Modified: \'Terria | TShock Beginner\' to \'Terria TShock | Beginner\' - Product ID: 19', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2137', '2022-11-13 09:32:45', 'Product Modified - Name Modified: \'Terria TShock | Beginner\' to \'Terraria TShock | Beginner\' - Product ID: 19', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2138', '2022-11-13 09:33:08', 'Product Configuration Modified: Pricing Modified. Product ID: 12', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2139', '2022-11-13 09:33:39', 'Product Configuration Modified: server_name Value Modified: \'Terria | Wisp\' to \'Terria Vanilla | Beginner\'. backups Value Modified: \'3\' to \'1\'. Product ID: 12', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2140', '2022-11-13 09:33:57', 'Product Configuration Modified: cpu Value Modified: \'100\' to \'75\'. Product ID: 19', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2141', '2022-11-13 09:34:03', 'Product Configuration Modified: Product Description Modified. Product ID: 19', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2142', '2022-11-13 09:34:28', 'Product Configuration Modified: Product Description Modified. cpu Value Modified: \'50\' to \'75\'. Product ID: 12', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2143', '2022-11-13 09:34:51', 'Product Configuration Modified: Product Description Modified. memory Value Modified: \'4096\' to \'2048\'. Product ID: 12', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2144', '2022-11-13 09:35:14', 'Product Configuration Modified: disk Value Modified: \'10240\' to \'15360\'. Product ID: 18', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2145', '2022-11-13 09:35:20', 'Product Configuration Modified: Product Description Modified. Product ID: 18', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2146', '2022-11-13 09:53:10', 'Email Sent to Winter Prod (Email Address Verification) - UserID: 9', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2161', '2022-11-13 09:59:24', 'Product Configuration Modified: location_id Value Modified: \'2\' to \'1\'. Product ID: 5', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2162', '2022-11-13 09:59:34', 'Product Configuration Modified: location_id Value Modified: \'2\' to \'1\'. Product ID: 4', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2163', '2022-11-13 09:59:44', 'Product Deleted: \'Enchanted Netherite\' - Product Group ID: 17', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2164', '2022-11-13 10:17:06', 'Product Configuration Modified: server_name Value Modified: \'Terria Vanilla | Beginner\' to \'Terraria Vanilla | Beginner\'. Product ID: 12', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2165', '2022-11-13 10:17:42', 'Product Configuration Modified: server_name Value Modified: \'Terria | Wisp\' to \'Terraria TShock | Beginner\'. Product ID: 19', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2167', '2022-11-13 10:19:08', 'Module Terminate Successful - Service ID: 14', 'winter', '8', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2168', '2022-11-13 10:19:40', 'Module Change Package Successful - Service ID: 520', 'winter', '8', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2169', '2022-11-13 10:23:49', 'Failed Admin Login Attempt - IP: 68.205.153.222', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2170', '2022-11-13 10:23:57', 'Failed Admin Login Attempt - IP: 68.205.153.222', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2171', '2022-11-13 10:24:04', 'Failed Admin Login Attempt - Username: dylan', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2172', '2022-11-13 10:26:39', 'IP Ban Removed: 68.205.153.222', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2173', '2022-11-13 10:28:02', 'Password Reset Initiated for Admin Username dylan', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2174', '2022-11-13 10:28:12', 'Failed Admin Login Attempt - Username: dylan', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2175', '2022-11-13 10:28:21', 'Failed Admin Login Attempt - Username: dylan', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2176', '2022-11-13 10:29:12', 'Password Reset Completed for Admin Username dylan', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2178', '2022-11-13 10:29:54', 'Client Deleted - ID: 9', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2179', '2022-11-13 10:30:03', 'Client Deleted - ID: 3', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2180', '2022-11-13 10:33:39', 'Administrator Account Modified (Dylan James)', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2181', '2022-11-13 10:33:53', 'Admin Role Group Modified: \'Sales Operator\' - Widgets Added: PayPal Overview', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2182', '2022-11-13 10:36:12', 'Product Group Created: \'KVM VPS Hosting\' - Product Group ID: 5', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2183', '2022-11-13 10:36:30', 'Product Group Modified: \'KVM VPS Hosting\' - Changes: Tagline Modified: \'\' to \'We provide the stuff, you provide the awesomeness.\' - Product Group ID: 5', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2184', '2022-11-13 10:37:44', 'Product Created - \'EZ - 2GB Ram, 2vCPUs, 25GB HDD, Unmetered Bandwidth\' - Product ID: 20', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2185', '2022-11-13 10:38:31', 'Product Modified - Name Modified: \'EZ - 2GB Ram, 2vCPUs, 25GB HDD, Unmetered Bandwidth\' to \'EZ (2GB, 2 vCPUs, 25GB HDD)\' - Product ID: 20', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2186', '2022-11-13 10:38:31', 'Product Configuration Modified: Product Tagline Modified. Product Color Modified. Apply Tax Enabled. Product URL Modified. Product ID: 20', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2187', '2022-11-13 10:38:49', 'Product Modified - Name Modified: \'EZ (2GB, 2 vCPUs, 25GB HDD)\' to \'Small (2GB, 2 vCPUs, 25GB HDD)\' - Product ID: 20', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2188', '2022-11-13 10:38:49', 'Product Configuration Modified: Product Description Modified. Product Short Description Modified. Product Tagline Modified. Product ID: 20', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2189', '2022-11-13 10:40:05', 'Product Modified - Name Modified: \'Small (2GB, 2 vCPUs, 25GB HDD)\' to \'VPS-1\' - Product ID: 20', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2190', '2022-11-13 10:40:05', 'Product Configuration Modified: Product Description Modified. Product Short Description Modified. Product ID: 20', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2191', '2022-11-13 10:40:32', 'Product Configuration Modified: Payment Type Modified: \'free\' to \'recurring\'. Allow Multiple Quantities Enabled. Pricing Modified. Product ID: 20', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2192', '2022-11-13 10:41:16', 'Product Group Modified: \'KVM VPS Hosting\' - Changes: Group Hidden - Product Group ID: 5', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2193', '2022-11-13 10:41:19', 'Product Group Modified: \'KVM VPS Hosting\' - Changes: Order Form Template Modified: \'universal_slider\' to \'standard_cart\' - Product Group ID: 5', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2194', '2022-11-13 10:41:43', 'Product Created - \'VPS-2\' - Product ID: 21', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2195', '2022-11-13 10:42:46', 'Product Configuration Modified: Product Description Modified. Product Color Modified. Payment Type Modified: \'free\' to \'recurring\'. Pricing Modified. Product ID: 21', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2196', '2022-11-13 10:43:20', 'Product Configuration Modified: Pricing Modified. Custom Field Created: \'Hostname\'. Product ID: 20', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2197', '2022-11-13 10:43:45', 'Product Configuration Modified: Custom Field Created: \'Do you agree to all 3rd party terms of services? \'. Product ID: 20', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2198', '2022-11-13 10:44:06', 'Product Configuration Modified: Configurable Options Upgrade/Downgrade Enabled. Upgrade Packages Modified. Product ID: 20', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2199', '2022-11-13 10:44:51', 'Product Configuration Modified: Custom Field Deleted: \'Hostname\' - Product ID: 20', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2200', '2022-11-13 10:44:54', 'Product Configuration Modified: Custom Field Deleted: \'Do you agree to all 3rd party terms of services? \' - Product ID: 20', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2201', '2022-11-13 10:45:05', 'Product Configuration Modified: Product Recommendations Modified. Product ID: 20', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2202', '2022-11-13 10:45:22', 'Product Configuration Modified: Subdomain Options Modified: \'\' to \'.tritan.dev\'. Product ID: 20', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2203', '2022-11-13 10:46:06', 'Configurable Option Group Created: \'\' - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2204', '2022-11-13 10:46:16', 'New Configurable Option Created: \'Location\' - Group: - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2205', '2022-11-13 10:46:16', 'Configurable Option Modified: Type Changed: \'\' to 1\' - Group: - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2206', '2022-11-13 10:46:16', 'Configurable Option Modified - \'Location\' - Option Added: \'Orlando, FL\' - Group: - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2207', '2022-11-13 10:46:20', 'Configurable Option Modified - \'Location\' - Option Added: \'Tampa, FL\' - Group: - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2208', '2022-11-13 10:46:39', 'Configurable Option Group Modified: \'\' - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2209', '2022-11-13 10:47:15', 'Product Configuration Modified: Subdomain Options Modified: \'.tritan.dev\' to \'.cust.myinfra.lol\'. Product ID: 20', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2210', '2022-11-13 10:48:06', 'New Configurable Option Created: \'Daily Backups\' - Group: - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2211', '2022-11-13 10:48:06', 'Configurable Option Modified: Type Changed: \'\' to 3\' - Group: - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2212', '2022-11-13 10:48:08', 'Configurable Option Group Modified: \'Dylan VPS Group\' - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2213', '2022-11-13 10:48:12', 'Configurable Option Group Modified: \'Dylan VPS Group\' - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2214', '2022-11-13 10:48:51', 'New Configurable Option Created: \'Operating System\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2215', '2022-11-13 10:48:51', 'Configurable Option Modified: Type Changed: \'\' to 1\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2216', '2022-11-13 10:48:51', 'Configurable Option Modified - \'Operating System\' - Option Added: \'Ubuntu 22.04 LTS\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2217', '2022-11-13 10:48:54', 'Configurable Option Group Modified: \'Dylan VPS Group\' - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2218', '2022-11-13 10:49:05', 'Configurable Option Group Modified: \'Dylan VPS Group\' - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2219', '2022-11-13 10:49:14', 'Configurable Option Group Modified: \'Dylan VPS Group\' - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2220', '2022-11-13 10:50:03', 'Product Configuration Modified: Custom Affiliate Payout Modified: No Commission. Product ID: 20', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2221', '2022-11-13 11:06:57', 'Access Denied to Apps and Integrations', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2222', '2022-11-13 11:11:27', 'New Configurable Option Created: \'IPs\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2223', '2022-11-13 11:11:27', 'Configurable Option Modified: Type Changed: \'\' to 4\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2224', '2022-11-13 11:11:27', 'Configurable Option Modified - \'IPs\' - Option Added: \'1 IP\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2225', '2022-11-13 11:11:57', 'Configurable Option Modified - \'IPs\' - Option Modified: \'5 IPs\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2226', '2022-11-13 11:11:57', 'Configurable Option Pricing Modified: \'IPs\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2227', '2022-11-13 11:13:53', 'Configurable Option Pricing Modified: \'IPs\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2228', '2022-11-13 11:13:59', 'Configurable Option Modified: Qty Maximum Modified: \'0\' to 5\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2229', '2022-11-13 11:13:59', 'Configurable Option Pricing Modified: \'IPs\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2230', '2022-11-13 11:14:04', 'Configurable Option Modified: Qty Maximum Modified: \'5\' to 20\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2231', '2022-11-13 11:14:04', 'Configurable Option Pricing Modified: \'IPs\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2232', '2022-11-13 11:14:09', 'Configurable Option Group Modified: \'Dylan VPS Group\' - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2233', '2022-11-13 11:14:13', 'Configurable Option Group Modified: \'Dylan VPS Group\' - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2234', '2022-11-13 11:14:47', 'General Settings Modified. Changes made: Display Errors Enabled.', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2235', '2022-11-13 11:15:31', 'Configurable Option Pricing Modified: \'IPs\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2236', '2022-11-13 11:15:40', 'Configurable Option Modified - \'IPs\' - Option Modified: \'1\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2237', '2022-11-13 11:15:40', 'Configurable Option Pricing Modified: \'IPs\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2238', '2022-11-13 11:20:40', 'Configurable Option Modified: Name Changed: \'IPs\' to Additional IPs\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2239', '2022-11-13 11:20:40', 'Configurable Option Pricing Modified: \'Additional IPs\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2240', '2022-11-13 11:20:44', 'Configurable Option Modified - \'Additional IPs\' - Option Modified: \'1x\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2241', '2022-11-13 11:20:44', 'Configurable Option Pricing Modified: \'Additional IPs\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2242', '2022-11-13 11:20:45', 'Configurable Option Group Modified: \'Dylan VPS Group\' - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2243', '2022-11-13 11:21:05', 'Configurable Option Modified: Qty Maximum Modified: \'20\' to 30\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2244', '2022-11-13 11:21:05', 'Configurable Option Pricing Modified: \'Additional IPs\' - Group: Dylan VPS Group - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2245', '2022-11-13 11:21:07', 'Configurable Option Group Modified: \'Dylan VPS Group\' - Option Group ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2246', '2022-11-13 11:38:49', 'Addon Module Activated - Proxmox Addon', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2247', '2022-11-13 11:39:13', 'Addon Module Activated - Proxmox Addon', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2248', '2022-11-13 11:39:17', 'Addon Module Activated - Proxmox Addon', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2249', '2022-11-13 11:39:33', 'Addon Module Activated - Proxmox Addon', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2250', '2022-11-13 11:39:46', 'Addon Module Access Permissions Changed - Proxmox Addon - Added Role Group(s): Full Administrator, Sales Operator.', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2251', '2022-11-13 11:40:06', 'Access Denied to Apps and Integrations', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2252', '2022-11-13 11:40:30', 'Access Denied to Apps and Integrations', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2253', '2022-11-13 11:40:48', 'Access Denied to Apps and Integrations', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2254', '2022-11-13 11:40:51', 'Access Denied to Apps and Integrations', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2255', '2022-11-13 11:40:54', 'Access Denied to Apps and Integrations', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2256', '2022-11-13 11:41:01', 'Admin User \'dylan\' modified. Changes: Role changed from \'Sales Operator\' to \'Full Administrator\'', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2257', '2022-11-13 11:45:06', 'Server Created: \'colo-fl01\' - Server ID: 2', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2258', '2022-11-13 11:45:23', 'Server Modified: \'colo-fl01\' - Changes: Username Modified: \'sysop\' to \'root\'. Access Hash Modified. Password Modified - Server ID: 2', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2259', '2022-11-13 11:45:35', 'Server Modified: \'colo-fl01\' - Changes: Access Hash Modified. Secure Connection Enabled - Server ID: 2', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2260', '2022-11-13 11:45:57', 'Server Group Created: \'Dylan's Hypervisors\' - Server Group ID: 2', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2261', '2022-11-13 11:46:06', 'General Settings Modified. Changes made: Display Errors Disabled.', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2262', '2022-11-13 11:47:01', 'Server Created: \'colo-fl02\' - Server ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2263', '2022-11-13 11:47:22', 'Server Modified: \'colo-fl02\' - Changes: Hostname Modified: \'colo-fl02.myinfa.lol\' to \'colo-fl02.myinfra.lol\' - Server ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2264', '2022-11-13 11:48:21', 'Server Created: \'colo-fl04\' - Server ID: 4', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2265', '2022-11-13 11:51:11', 'Server Group Modified: \'Dylan's Hypervisors\' - Changes: Server(s) Added to Group - Server Group ID: 2', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2266', '2022-11-13 11:51:42', 'Product Configuration Modified: Automatic Setup Modified: \'\' to \'Payment\'. Product ID: 20', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2267', '2022-11-13 11:53:04', 'Server Modified: \'colo-fl01\' - Changes: Secure Connection Disabled - Server ID: 2', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2268', '2022-11-13 11:53:08', 'Server Modified: \'colo-fl02\' - Changes: Secure Connection Disabled - Server ID: 3', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2269', '2022-11-13 11:53:13', 'Server Modified: \'colo-fl04\' - Changes: Secure Connection Disabled - Server ID: 4', 'dylan', '0', '0', '3', '68.205.153.222');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2270', '2022-11-13 12:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2271', '2022-11-13 12:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2272', '2022-11-13 12:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2273', '2022-11-13 12:31:35', 'Product Configuration Modified: Product Type Modified: \'server\' to \'hostingaccount\'. Product ID: 20', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2274', '2022-11-13 12:31:55', 'Product Configuration Modified: Product Type Modified: \'hostingaccount\' to \'server\'. Product ID: 20', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2275', '2022-11-13 12:35:49', 'Server Group Modified: \'Dylan's Hypervisors\' - Changes: Server(s) Removed from Group - Server Group ID: 2', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2276', '2022-11-13 12:36:18', 'Server Group Modified: \'Dylan's Hypervisors\' - Changes: Server(s) Added to Group - Server Group ID: 2', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2277', '2022-11-13 12:36:35', 'Server Modified: \'colo-fl01\' - Changes: Secure Connection Enabled - Server ID: 2', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2278', '2022-11-13 12:37:08', 'Server Modified: \'colo-fl02\' - Changes: Secure Connection Enabled - Server ID: 3', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2279', '2022-11-13 12:37:26', 'Server Modified: \'colo-fl04\' - Changes: Secure Connection Enabled - Server ID: 4', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2280', '2022-11-13 12:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2281', '2022-11-13 12:41:21', 'Server Modified: \'colo-fl01\' - Changes: Secure Connection Disabled - Server ID: 2', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2282', '2022-11-13 12:41:25', 'Server Modified: \'colo-fl02\' - Changes: Secure Connection Disabled - Server ID: 3', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2283', '2022-11-13 12:41:30', 'Server Modified: \'colo-fl04\' - Changes: Secure Connection Disabled - Server ID: 4', 'winter', '0', '7', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2284', '2022-11-13 16:00:02', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2285', '2022-11-13 16:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2286', '2022-11-13 16:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2287', '2022-11-13 16:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2288', '2022-11-13 20:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2289', '2022-11-13 20:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2290', '2022-11-13 20:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2291', '2022-11-14 00:00:02', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2292', '2022-11-14 00:00:02', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2293', '2022-11-14 00:00:03', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2294', '2022-11-14 00:00:03', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2295', '2022-11-14 00:00:03', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2296', '2022-11-14 00:00:03', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2297', '2022-11-14 00:00:03', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2298', '2022-11-14 00:00:03', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2299', '2022-11-14 00:00:03', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2300', '2022-11-14 00:00:03', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2301', '2022-11-14 00:00:03', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2302', '2022-11-14 00:00:03', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2303', '2022-11-14 00:00:03', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2304', '2022-11-14 00:00:03', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2305', '2022-11-14 00:00:03', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2306', '2022-11-14 00:00:03', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2307', '2022-11-14 00:00:03', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2308', '2022-11-14 00:00:03', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2309', '2022-11-14 00:00:03', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2310', '2022-11-14 00:00:03', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2311', '2022-11-14 00:00:03', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2312', '2022-11-14 00:00:03', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2313', '2022-11-14 00:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2314', '2022-11-14 00:00:07', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2315', '2022-11-14 00:00:13', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2316', '2022-11-14 00:00:13', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2317', '2022-11-14 00:00:14', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2318', '2022-11-14 00:00:14', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2319', '2022-11-14 00:00:15', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2320', '2022-11-14 00:00:18', 'Cron Job: Email Backup - Sent Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2321', '2022-11-14 00:00:18', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2322', '2022-11-14 00:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2323', '2022-11-14 00:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2324', '2022-11-14 00:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2325', '2022-11-14 00:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2326', '2022-11-14 04:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2327', '2022-11-14 04:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2328', '2022-11-14 04:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2329', '2022-11-14 07:13:10', 'Deleted Transaction - Transaction ID: 4', 'winter', '8', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2330', '2022-11-14 07:13:16', 'Deleted Transaction - Transaction ID: 3', 'winter', '7', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2331', '2022-11-14 07:13:21', 'Deleted Transaction - Transaction ID: 2', 'winter', '8', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2332', '2022-11-14 08:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2333', '2022-11-14 08:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2334', '2022-11-14 08:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2335', '2022-11-14 08:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2336', '2022-11-14 12:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2337', '2022-11-14 12:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2338', '2022-11-14 12:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2339', '2022-11-14 12:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2340', '2022-11-14 16:00:02', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2341', '2022-11-14 16:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2342', '2022-11-14 16:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2343', '2022-11-14 16:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2344', '2022-11-14 20:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2345', '2022-11-14 20:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2346', '2022-11-14 20:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2347', '2022-11-15 00:00:02', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2348', '2022-11-15 00:00:03', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2349', '2022-11-15 00:00:03', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2350', '2022-11-15 00:00:03', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2351', '2022-11-15 00:00:03', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2352', '2022-11-15 00:00:03', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2353', '2022-11-15 00:00:03', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2354', '2022-11-15 00:00:03', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2355', '2022-11-15 00:00:03', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2356', '2022-11-15 00:00:03', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2357', '2022-11-15 00:00:03', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2358', '2022-11-15 00:00:03', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2359', '2022-11-15 00:00:03', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2360', '2022-11-15 00:00:03', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2361', '2022-11-15 00:00:03', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2362', '2022-11-15 00:00:03', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2363', '2022-11-15 00:00:04', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2364', '2022-11-15 00:00:04', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2365', '2022-11-15 00:00:04', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2366', '2022-11-15 00:00:04', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2367', '2022-11-15 00:00:04', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2368', '2022-11-15 00:00:04', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2369', '2022-11-15 00:00:04', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2370', '2022-11-15 00:00:09', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2371', '2022-11-15 00:00:11', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2372', '2022-11-15 00:00:11', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2373', '2022-11-15 00:00:12', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2374', '2022-11-15 00:00:12', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2375', '2022-11-15 00:00:12', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2376', '2022-11-15 00:00:15', 'Cron Job: Email Backup - Sent Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2377', '2022-11-15 00:00:15', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2378', '2022-11-15 00:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2379', '2022-11-15 00:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2380', '2022-11-15 00:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2381', '2022-11-15 00:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2382', '2022-11-15 04:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2383', '2022-11-15 04:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2384', '2022-11-15 04:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2385', '2022-11-15 08:00:02', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2386', '2022-11-15 08:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2387', '2022-11-15 08:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2388', '2022-11-15 08:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2389', '2022-11-15 12:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2390', '2022-11-15 12:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2391', '2022-11-15 12:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2392', '2022-11-15 12:40:03', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2393', '2022-11-15 16:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2394', '2022-11-15 16:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2395', '2022-11-15 16:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2396', '2022-11-15 16:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2397', '2022-11-15 18:12:27', 'Automatic Backup Option Deactivated: Email', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2398', '2022-11-15 20:26:54', 'Automatic Backup Option Activated: Ftp', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2399', '2022-11-15 20:26:54', 'Automatic Backup Settings Changed. FTP Backup Password Changed. FTP Backup Hostname changed from \'\' to \'cloud.hep.gg\'. FTP Backup Username changed from \'\' to \'winter\'. FTP Backup Destination changed from \'/\' to \'/Dying USB Drive 1/Fifi/\'. FTP Passive Mode changed from \'off\' to \'on\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2400', '2022-11-15 20:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2401', '2022-11-15 20:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2402', '2022-11-15 20:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2403', '2022-11-15 21:31:06', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2404', '2022-11-15 21:31:06', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2405', '2022-11-15 21:31:07', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2406', '2022-11-15 21:31:07', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2407', '2022-11-15 21:31:07', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2408', '2022-11-15 21:31:09', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2409', '2022-11-15 21:31:09', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2410', '2022-11-16 00:00:03', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2411', '2022-11-16 00:00:03', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2412', '2022-11-16 00:00:04', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2413', '2022-11-16 00:00:04', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2414', '2022-11-16 00:00:04', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2415', '2022-11-16 00:00:04', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2416', '2022-11-16 00:00:04', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2417', '2022-11-16 00:00:04', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2418', '2022-11-16 00:00:04', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2419', '2022-11-16 00:00:04', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2420', '2022-11-16 00:00:04', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2421', '2022-11-16 00:00:04', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2422', '2022-11-16 00:00:04', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2423', '2022-11-16 00:00:04', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2424', '2022-11-16 00:00:04', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2425', '2022-11-16 00:00:04', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2426', '2022-11-16 00:00:04', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2427', '2022-11-16 00:00:04', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2428', '2022-11-16 00:00:04', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2429', '2022-11-16 00:00:04', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2430', '2022-11-16 00:00:04', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2431', '2022-11-16 00:00:04', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2432', '2022-11-16 00:00:04', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2433', '2022-11-16 00:00:08', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2434', '2022-11-16 00:00:10', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2435', '2022-11-16 00:00:10', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2436', '2022-11-16 00:00:11', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2437', '2022-11-16 00:00:11', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2438', '2022-11-16 00:00:11', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2439', '2022-11-16 00:00:13', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2440', '2022-11-16 00:00:13', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2441', '2022-11-16 00:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2442', '2022-11-16 00:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2443', '2022-11-16 00:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2444', '2022-11-16 00:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2445', '2022-11-16 04:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2446', '2022-11-16 04:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2447', '2022-11-16 04:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2448', '2022-11-16 08:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2449', '2022-11-16 08:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2450', '2022-11-16 08:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2451', '2022-11-16 08:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2452', '2022-11-16 09:35:41', 'Automatic Backup Settings Changed. FTP Backup Destination changed from \'/Dying USB Drive 1/Fifi/\' to \'/Dying USB Drive 1/Fifi/backups/whmcs\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2453', '2022-11-16 12:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2454', '2022-11-16 12:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2455', '2022-11-16 12:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2456', '2022-11-16 12:40:03', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2457', '2022-11-16 16:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2458', '2022-11-16 16:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2459', '2022-11-16 16:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2460', '2022-11-16 16:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2461', '2022-11-16 20:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2462', '2022-11-16 20:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2463', '2022-11-16 20:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2464', '2022-11-17 00:00:03', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2465', '2022-11-17 00:00:03', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2466', '2022-11-17 00:00:04', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2467', '2022-11-17 00:00:04', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2468', '2022-11-17 00:00:04', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2469', '2022-11-17 00:00:04', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2470', '2022-11-17 00:00:04', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2471', '2022-11-17 00:00:04', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2472', '2022-11-17 00:00:04', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2473', '2022-11-17 00:00:04', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2474', '2022-11-17 00:00:04', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2475', '2022-11-17 00:00:04', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2476', '2022-11-17 00:00:04', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2477', '2022-11-17 00:00:04', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2478', '2022-11-17 00:00:04', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2479', '2022-11-17 00:00:04', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2480', '2022-11-17 00:00:04', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2481', '2022-11-17 00:00:04', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2482', '2022-11-17 00:00:04', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2483', '2022-11-17 00:00:04', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2484', '2022-11-17 00:00:04', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2485', '2022-11-17 00:00:04', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2486', '2022-11-17 00:00:04', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2487', '2022-11-17 00:00:08', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2488', '2022-11-17 00:00:10', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2489', '2022-11-17 00:00:10', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2490', '2022-11-17 00:00:12', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2491', '2022-11-17 00:00:12', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2492', '2022-11-17 00:00:12', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2493', '2022-11-17 00:00:13', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2494', '2022-11-17 00:00:13', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2495', '2022-11-17 00:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2496', '2022-11-17 00:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2497', '2022-11-17 00:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2498', '2022-11-17 00:40:03', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2499', '2022-11-17 03:31:14', 'Automatic Backup Settings Changed. FTP Backup Destination changed from \'/Dying USB Drive 1/Fifi/backups/whmcs\' to \'/Dying USB Drive 1/Fifi/backups/whmcs/\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2500', '2022-11-17 04:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2501', '2022-11-17 04:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2502', '2022-11-17 04:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2503', '2022-11-17 08:00:02', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2504', '2022-11-17 08:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2505', '2022-11-17 08:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2506', '2022-11-17 08:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2507', '2022-11-17 12:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2508', '2022-11-17 12:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2509', '2022-11-17 12:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2510', '2022-11-17 12:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2511', '2022-11-17 16:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2512', '2022-11-17 16:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2513', '2022-11-17 16:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2514', '2022-11-17 16:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2515', '2022-11-17 20:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2516', '2022-11-17 20:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2517', '2022-11-17 20:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2518', '2022-11-18 00:00:02', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2519', '2022-11-18 00:00:03', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2520', '2022-11-18 00:00:03', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2521', '2022-11-18 00:00:03', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2522', '2022-11-18 00:00:03', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2523', '2022-11-18 00:00:03', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2524', '2022-11-18 00:00:03', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2525', '2022-11-18 00:00:03', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2526', '2022-11-18 00:00:03', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2527', '2022-11-18 00:00:03', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2528', '2022-11-18 00:00:03', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2529', '2022-11-18 00:00:03', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2530', '2022-11-18 00:00:03', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2531', '2022-11-18 00:00:03', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2532', '2022-11-18 00:00:04', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2533', '2022-11-18 00:00:04', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2534', '2022-11-18 00:00:04', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2535', '2022-11-18 00:00:04', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2536', '2022-11-18 00:00:04', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2537', '2022-11-18 00:00:04', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2538', '2022-11-18 00:00:04', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2539', '2022-11-18 00:00:04', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2540', '2022-11-18 00:00:04', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2541', '2022-11-18 00:00:08', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2542', '2022-11-18 00:00:10', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2543', '2022-11-18 00:00:10', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2544', '2022-11-18 00:00:11', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2545', '2022-11-18 00:00:11', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2546', '2022-11-18 00:00:12', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2547', '2022-11-18 00:00:12', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2548', '2022-11-18 00:00:12', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2549', '2022-11-18 00:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2550', '2022-11-18 00:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2551', '2022-11-18 00:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2552', '2022-11-18 00:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2553', '2022-11-18 04:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2554', '2022-11-18 04:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2555', '2022-11-18 04:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2556', '2022-11-18 08:00:02', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2557', '2022-11-18 08:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2558', '2022-11-18 08:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2559', '2022-11-18 08:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2560', '2022-11-18 12:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2561', '2022-11-18 12:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2562', '2022-11-18 12:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2563', '2022-11-18 12:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2564', '2022-11-18 16:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2565', '2022-11-18 16:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2566', '2022-11-18 16:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2567', '2022-11-18 16:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2568', '2022-11-18 20:29:56', 'Failed Admin Login Attempt - IP: 97.89.6.129', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2569', '2022-11-18 20:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2570', '2022-11-18 20:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2571', '2022-11-18 20:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2572', '2022-11-19 00:00:02', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2573', '2022-11-19 00:00:03', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2574', '2022-11-19 00:00:03', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2575', '2022-11-19 00:00:03', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2576', '2022-11-19 00:00:03', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2577', '2022-11-19 00:00:03', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2578', '2022-11-19 00:00:03', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2579', '2022-11-19 00:00:03', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2580', '2022-11-19 00:00:03', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2581', '2022-11-19 00:00:03', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2582', '2022-11-19 00:00:03', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2583', '2022-11-19 00:00:03', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2584', '2022-11-19 00:00:03', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2585', '2022-11-19 00:00:03', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2586', '2022-11-19 00:00:03', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2587', '2022-11-19 00:00:03', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2588', '2022-11-19 00:00:03', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2589', '2022-11-19 00:00:03', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2590', '2022-11-19 00:00:03', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2591', '2022-11-19 00:00:03', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2592', '2022-11-19 00:00:03', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2593', '2022-11-19 00:00:03', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2594', '2022-11-19 00:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2595', '2022-11-19 00:00:07', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2596', '2022-11-19 00:00:09', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2597', '2022-11-19 00:00:09', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2598', '2022-11-19 00:00:11', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2599', '2022-11-19 00:00:11', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2600', '2022-11-19 00:00:11', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2601', '2022-11-19 00:00:12', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2602', '2022-11-19 00:00:12', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2603', '2022-11-19 00:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2604', '2022-11-19 00:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2605', '2022-11-19 00:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2606', '2022-11-19 00:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2607', '2022-11-19 04:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2608', '2022-11-19 04:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2609', '2022-11-19 04:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2610', '2022-11-19 08:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2611', '2022-11-19 08:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2612', '2022-11-19 08:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2613', '2022-11-19 08:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2614', '2022-11-19 12:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2615', '2022-11-19 12:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2616', '2022-11-19 12:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2617', '2022-11-19 12:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2618', '2022-11-19 16:00:02', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2619', '2022-11-19 16:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2620', '2022-11-19 16:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2621', '2022-11-19 16:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2622', '2022-11-19 20:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2623', '2022-11-19 20:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2624', '2022-11-19 20:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2625', '2022-11-20 00:00:02', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2626', '2022-11-20 00:00:03', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2627', '2022-11-20 00:00:03', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2628', '2022-11-20 00:00:03', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2629', '2022-11-20 00:00:03', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2630', '2022-11-20 00:00:03', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2631', '2022-11-20 00:00:03', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2632', '2022-11-20 00:00:04', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2633', '2022-11-20 00:00:04', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2634', '2022-11-20 00:00:04', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2635', '2022-11-20 00:00:04', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2636', '2022-11-20 00:00:04', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2637', '2022-11-20 00:00:04', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2638', '2022-11-20 00:00:04', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2639', '2022-11-20 00:00:04', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2640', '2022-11-20 00:00:04', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2641', '2022-11-20 00:00:04', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2642', '2022-11-20 00:00:04', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2643', '2022-11-20 00:00:04', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2644', '2022-11-20 00:00:04', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2645', '2022-11-20 00:00:04', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2646', '2022-11-20 00:00:04', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2647', '2022-11-20 00:00:04', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2648', '2022-11-20 00:00:09', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2649', '2022-11-20 00:00:11', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2650', '2022-11-20 00:00:11', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2651', '2022-11-20 00:00:13', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2652', '2022-11-20 00:00:13', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2653', '2022-11-20 00:00:13', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2654', '2022-11-20 00:00:14', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2655', '2022-11-20 00:00:14', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2656', '2022-11-20 00:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2657', '2022-11-20 00:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2658', '2022-11-20 00:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2659', '2022-11-20 00:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2660', '2022-11-20 04:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2661', '2022-11-20 04:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2662', '2022-11-20 04:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2663', '2022-11-20 08:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2664', '2022-11-20 08:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2665', '2022-11-20 08:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2666', '2022-11-20 08:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2667', '2022-11-20 12:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2668', '2022-11-20 12:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2669', '2022-11-20 12:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2670', '2022-11-20 12:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2671', '2022-11-20 16:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2672', '2022-11-20 16:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2673', '2022-11-20 16:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2674', '2022-11-20 16:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2675', '2022-11-20 17:00:10', 'Failed Admin Login Attempt - IP: 97.89.6.129', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2676', '2022-11-20 20:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2677', '2022-11-20 20:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2678', '2022-11-20 20:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2679', '2022-11-21 00:00:03', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2680', '2022-11-21 00:00:03', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2681', '2022-11-21 00:00:04', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2682', '2022-11-21 00:00:04', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2683', '2022-11-21 00:00:04', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2684', '2022-11-21 00:00:04', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2685', '2022-11-21 00:00:04', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2686', '2022-11-21 00:00:04', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2687', '2022-11-21 00:00:04', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2688', '2022-11-21 00:00:04', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2689', '2022-11-21 00:00:04', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2690', '2022-11-21 00:00:04', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2691', '2022-11-21 00:00:04', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2692', '2022-11-21 00:00:04', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2693', '2022-11-21 00:00:07', 'Email Sent to Astrid Isgay (Your Feedback is Requested for Ticket #UFR-251616) - Client ID: 8', 'System', '8', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2694', '2022-11-21 00:00:07', 'Email Sent to Astrid Isgay ([Ticket ID: UFR-251616] PlEASE HELP BETTER THEN coAL?) - Client ID: 8', 'System', '8', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2695', '2022-11-21 00:00:07', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2696', '2022-11-21 00:00:07', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2697', '2022-11-21 00:00:07', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2698', '2022-11-21 00:00:08', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2699', '2022-11-21 00:00:08', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2700', '2022-11-21 00:00:08', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2701', '2022-11-21 00:00:08', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2702', '2022-11-21 00:00:08', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2703', '2022-11-21 00:00:08', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2704', '2022-11-21 00:00:11', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2705', '2022-11-21 00:00:13', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2706', '2022-11-21 00:00:13', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2707', '2022-11-21 00:00:14', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2708', '2022-11-21 00:00:14', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2709', '2022-11-21 00:00:15', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2710', '2022-11-21 00:00:16', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2711', '2022-11-21 00:00:16', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2712', '2022-11-21 00:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2713', '2022-11-21 00:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2714', '2022-11-21 00:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2715', '2022-11-21 00:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2716', '2022-11-21 04:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2717', '2022-11-21 04:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2718', '2022-11-21 04:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2719', '2022-11-21 08:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2720', '2022-11-21 08:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2721', '2022-11-21 08:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2722', '2022-11-21 08:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2723', '2022-11-21 12:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2724', '2022-11-21 12:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2725', '2022-11-21 12:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2726', '2022-11-21 12:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2727', '2022-11-21 16:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2728', '2022-11-21 16:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2729', '2022-11-21 16:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2730', '2022-11-21 16:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2731', '2022-11-21 20:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2732', '2022-11-21 20:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2733', '2022-11-21 20:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2734', '2022-11-22 00:00:02', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2735', '2022-11-22 00:00:02', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2736', '2022-11-22 00:00:03', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2737', '2022-11-22 00:00:03', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2738', '2022-11-22 00:00:03', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2739', '2022-11-22 00:00:03', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2740', '2022-11-22 00:00:03', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2741', '2022-11-22 00:00:03', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2742', '2022-11-22 00:00:03', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2743', '2022-11-22 00:00:03', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2744', '2022-11-22 00:00:03', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2745', '2022-11-22 00:00:03', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2746', '2022-11-22 00:00:03', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2747', '2022-11-22 00:00:03', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2748', '2022-11-22 00:00:03', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2749', '2022-11-22 00:00:03', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2750', '2022-11-22 00:00:03', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2751', '2022-11-22 00:00:03', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2752', '2022-11-22 00:00:03', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2753', '2022-11-22 00:00:03', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2754', '2022-11-22 00:00:03', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2755', '2022-11-22 00:00:03', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2756', '2022-11-22 00:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2757', '2022-11-22 00:00:07', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2758', '2022-11-22 00:00:13', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2759', '2022-11-22 00:00:13', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2760', '2022-11-22 00:00:15', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2761', '2022-11-22 00:00:15', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2762', '2022-11-22 00:00:15', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2763', '2022-11-22 00:00:16', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2764', '2022-11-22 00:00:16', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2765', '2022-11-22 00:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2766', '2022-11-22 00:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2767', '2022-11-22 00:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2768', '2022-11-22 00:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2769', '2022-11-22 04:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2770', '2022-11-22 04:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2771', '2022-11-22 04:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2772', '2022-11-22 08:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2773', '2022-11-22 08:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2774', '2022-11-22 08:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2775', '2022-11-22 08:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2776', '2022-11-22 12:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2777', '2022-11-22 12:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2778', '2022-11-22 12:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2779', '2022-11-22 12:40:03', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2780', '2022-11-22 16:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2781', '2022-11-22 16:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2782', '2022-11-22 16:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2783', '2022-11-22 16:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2784', '2022-11-22 20:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2785', '2022-11-22 20:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2786', '2022-11-22 20:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2787', '2022-11-23 00:00:02', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2788', '2022-11-23 00:00:03', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2789', '2022-11-23 00:00:03', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2790', '2022-11-23 00:00:03', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2791', '2022-11-23 00:00:03', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2792', '2022-11-23 00:00:03', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2793', '2022-11-23 00:00:03', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2794', '2022-11-23 00:00:03', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2795', '2022-11-23 00:00:03', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2796', '2022-11-23 00:00:03', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2797', '2022-11-23 00:00:03', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2798', '2022-11-23 00:00:03', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2799', '2022-11-23 00:00:03', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2800', '2022-11-23 00:00:03', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2801', '2022-11-23 00:00:03', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2802', '2022-11-23 00:00:03', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2803', '2022-11-23 00:00:03', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2804', '2022-11-23 00:00:04', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2805', '2022-11-23 00:00:04', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2806', '2022-11-23 00:00:04', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2807', '2022-11-23 00:00:04', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2808', '2022-11-23 00:00:04', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2809', '2022-11-23 00:00:04', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2810', '2022-11-23 00:00:08', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2811', '2022-11-23 00:00:10', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2812', '2022-11-23 00:00:10', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2813', '2022-11-23 00:00:13', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2814', '2022-11-23 00:00:13', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2815', '2022-11-23 00:00:13', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2816', '2022-11-23 00:00:14', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2817', '2022-11-23 00:00:14', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2818', '2022-11-23 00:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2819', '2022-11-23 00:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2820', '2022-11-23 00:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2821', '2022-11-23 00:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2822', '2022-11-23 04:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2823', '2022-11-23 04:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2824', '2022-11-23 04:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2825', '2022-11-23 04:38:17', 'Product Created - \'ModulesGarden Test\' - Product ID: 22', 'dylan', '0', '0', '3', '91.192.166.30');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2826', '2022-11-23 06:12:55', 'Failed Admin Login Attempt - Username: dylan', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2827', '2022-11-23 06:13:02', 'Failed Admin Login Attempt - Username: dylan', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2828', '2022-11-23 06:13:08', 'Failed Admin Login Attempt - Username: dylan', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2829', '2022-11-23 07:39:05', 'General Settings Changed. Whitelisted IP Added: \'68.205.153.222\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2830', '2022-11-23 07:39:44', 'General Settings Changed. Whitelisted IP Added: \'97.89.6.129\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2831', '2022-11-23 08:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2832', '2022-11-23 08:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2833', '2022-11-23 08:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2834', '2022-11-23 08:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2835', '2022-11-23 12:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2836', '2022-11-23 12:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2837', '2022-11-23 12:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2838', '2022-11-23 12:40:03', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2839', '2022-11-23 16:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2840', '2022-11-23 16:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2841', '2022-11-23 16:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2842', '2022-11-23 16:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2843', '2022-11-23 20:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2844', '2022-11-23 20:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2845', '2022-11-23 20:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2846', '2022-11-24 00:00:03', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2847', '2022-11-24 00:00:03', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2848', '2022-11-24 00:00:04', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2849', '2022-11-24 00:00:04', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2850', '2022-11-24 00:00:04', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2851', '2022-11-24 00:00:04', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2852', '2022-11-24 00:00:04', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2853', '2022-11-24 00:00:04', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2854', '2022-11-24 00:00:04', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2855', '2022-11-24 00:00:04', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2856', '2022-11-24 00:00:04', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2857', '2022-11-24 00:00:04', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2858', '2022-11-24 00:00:04', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2859', '2022-11-24 00:00:04', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2860', '2022-11-24 00:00:04', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2861', '2022-11-24 00:00:04', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2862', '2022-11-24 00:00:04', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2863', '2022-11-24 00:00:04', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2864', '2022-11-24 00:00:04', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2865', '2022-11-24 00:00:04', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2866', '2022-11-24 00:00:04', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2867', '2022-11-24 00:00:04', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2868', '2022-11-24 00:00:04', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2869', '2022-11-24 00:00:08', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2870', '2022-11-24 00:00:11', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2871', '2022-11-24 00:00:11', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2872', '2022-11-24 00:00:13', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2873', '2022-11-24 00:00:13', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2874', '2022-11-24 00:00:14', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2875', '2022-11-24 00:00:14', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2876', '2022-11-24 00:00:14', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2877', '2022-11-24 00:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2878', '2022-11-24 00:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2879', '2022-11-24 00:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2880', '2022-11-24 00:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2881', '2022-11-24 04:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2882', '2022-11-24 04:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2883', '2022-11-24 04:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2884', '2022-11-24 08:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2885', '2022-11-24 08:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2886', '2022-11-24 08:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2887', '2022-11-24 08:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2888', '2022-11-24 11:25:58', 'Failed Admin Login Attempt - IP: 2600:1700:2f80:38e0:b141:1c3a:1a86:7ee9', 'winter', '0', '0', '1', '2600:1700:2f80:38e0:b141:1c3a:1a86:7ee9');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2889', '2022-11-24 12:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2890', '2022-11-24 12:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2891', '2022-11-24 12:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2892', '2022-11-24 12:40:03', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2893', '2022-11-24 16:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2894', '2022-11-24 16:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2895', '2022-11-24 16:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2896', '2022-11-24 16:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2897', '2022-11-24 20:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2898', '2022-11-24 20:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2899', '2022-11-24 20:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2900', '2022-11-25 00:00:02', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2901', '2022-11-25 00:00:03', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2902', '2022-11-25 00:00:03', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2903', '2022-11-25 00:00:03', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2904', '2022-11-25 00:00:03', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2905', '2022-11-25 00:00:03', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2906', '2022-11-25 00:00:03', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2907', '2022-11-25 00:00:03', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2908', '2022-11-25 00:00:03', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2909', '2022-11-25 00:00:03', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2910', '2022-11-25 00:00:03', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2911', '2022-11-25 00:00:03', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2912', '2022-11-25 00:00:03', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2913', '2022-11-25 00:00:03', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2914', '2022-11-25 00:00:03', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2915', '2022-11-25 00:00:03', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2916', '2022-11-25 00:00:03', 'Automated Task: Starting Credit Card Expiry Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2917', '2022-11-25 00:00:03', 'Cron Job: Sent 0 Credit Card Expiry Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2918', '2022-11-25 00:00:03', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2919', '2022-11-25 00:00:03', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2920', '2022-11-25 00:00:03', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2921', '2022-11-25 00:00:03', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2922', '2022-11-25 00:00:03', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2923', '2022-11-25 00:00:03', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2924', '2022-11-25 00:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2925', '2022-11-25 00:00:07', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2926', '2022-11-25 00:00:10', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2927', '2022-11-25 00:00:10', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2928', '2022-11-25 00:00:12', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2929', '2022-11-25 00:00:12', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2930', '2022-11-25 00:00:12', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2931', '2022-11-25 00:00:13', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2932', '2022-11-25 00:00:13', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2933', '2022-11-25 00:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2934', '2022-11-25 00:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2935', '2022-11-25 00:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2936', '2022-11-25 00:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2937', '2022-11-25 04:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2938', '2022-11-25 04:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2939', '2022-11-25 04:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2940', '2022-11-25 08:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2941', '2022-11-25 08:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2942', '2022-11-25 08:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2943', '2022-11-25 08:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2944', '2022-11-25 12:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2945', '2022-11-25 12:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2946', '2022-11-25 12:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2947', '2022-11-25 12:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2948', '2022-11-25 16:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2949', '2022-11-25 16:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2950', '2022-11-25 16:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2951', '2022-11-25 16:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2952', '2022-11-25 20:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2953', '2022-11-25 20:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2954', '2022-11-25 20:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2955', '2022-11-26 00:00:02', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2956', '2022-11-26 00:00:03', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2957', '2022-11-26 00:00:03', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2958', '2022-11-26 00:00:03', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2959', '2022-11-26 00:00:03', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2960', '2022-11-26 00:00:03', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2961', '2022-11-26 00:00:03', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2962', '2022-11-26 00:00:03', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2963', '2022-11-26 00:00:03', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2964', '2022-11-26 00:00:03', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2965', '2022-11-26 00:00:03', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2966', '2022-11-26 00:00:03', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2967', '2022-11-26 00:00:03', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2968', '2022-11-26 00:00:03', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2969', '2022-11-26 00:00:03', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2970', '2022-11-26 00:00:03', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2971', '2022-11-26 00:00:03', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2972', '2022-11-26 00:00:04', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2973', '2022-11-26 00:00:04', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2974', '2022-11-26 00:00:04', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2975', '2022-11-26 00:00:04', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2976', '2022-11-26 00:00:04', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2977', '2022-11-26 00:00:04', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2978', '2022-11-26 00:00:09', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2979', '2022-11-26 00:00:13', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2980', '2022-11-26 00:00:13', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2981', '2022-11-26 00:00:15', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2982', '2022-11-26 00:00:15', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2983', '2022-11-26 00:00:16', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2984', '2022-11-26 00:00:17', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2985', '2022-11-26 00:00:17', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2986', '2022-11-26 00:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2987', '2022-11-26 00:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2988', '2022-11-26 00:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2989', '2022-11-26 00:40:03', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2990', '2022-11-26 04:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2991', '2022-11-26 04:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2992', '2022-11-26 04:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2993', '2022-11-26 08:00:02', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2994', '2022-11-26 08:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2995', '2022-11-26 08:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2996', '2022-11-26 08:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2997', '2022-11-26 12:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2998', '2022-11-26 12:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('2999', '2022-11-26 12:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3000', '2022-11-26 12:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3001', '2022-11-26 16:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3002', '2022-11-26 16:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3003', '2022-11-26 16:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3004', '2022-11-26 16:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3005', '2022-11-26 20:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3006', '2022-11-26 20:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3007', '2022-11-26 20:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3008', '2022-11-27 00:00:03', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3009', '2022-11-27 00:00:04', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3010', '2022-11-27 00:00:04', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3011', '2022-11-27 00:00:04', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3012', '2022-11-27 00:00:04', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3013', '2022-11-27 00:00:04', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3014', '2022-11-27 00:00:04', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3015', '2022-11-27 00:00:04', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3016', '2022-11-27 00:00:04', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3017', '2022-11-27 00:00:04', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3018', '2022-11-27 00:00:04', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3019', '2022-11-27 00:00:04', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3020', '2022-11-27 00:00:04', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3021', '2022-11-27 00:00:04', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3022', '2022-11-27 00:00:04', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3023', '2022-11-27 00:00:04', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3024', '2022-11-27 00:00:05', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3025', '2022-11-27 00:00:05', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3026', '2022-11-27 00:00:05', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3027', '2022-11-27 00:00:05', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3028', '2022-11-27 00:00:05', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3029', '2022-11-27 00:00:05', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3030', '2022-11-27 00:00:05', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3031', '2022-11-27 00:00:10', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3032', '2022-11-27 00:00:12', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3033', '2022-11-27 00:00:12', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3034', '2022-11-27 00:00:15', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3035', '2022-11-27 00:00:15', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3036', '2022-11-27 00:00:15', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3037', '2022-11-27 00:00:16', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3038', '2022-11-27 00:00:16', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3039', '2022-11-27 00:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3040', '2022-11-27 00:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3041', '2022-11-27 00:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3042', '2022-11-27 00:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3043', '2022-11-27 04:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3044', '2022-11-27 04:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3045', '2022-11-27 04:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3046', '2022-11-27 08:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3047', '2022-11-27 08:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3048', '2022-11-27 08:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3049', '2022-11-27 08:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3050', '2022-11-27 12:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3051', '2022-11-27 12:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3052', '2022-11-27 12:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3053', '2022-11-27 12:40:03', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3054', '2022-11-27 16:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3055', '2022-11-27 16:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3056', '2022-11-27 16:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3057', '2022-11-27 16:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3058', '2022-11-27 20:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3059', '2022-11-27 20:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3060', '2022-11-27 20:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3061', '2022-11-28 00:00:03', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3062', '2022-11-28 00:00:03', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3063', '2022-11-28 00:00:04', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3064', '2022-11-28 00:00:04', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3065', '2022-11-28 00:00:04', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3066', '2022-11-28 00:00:04', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3067', '2022-11-28 00:00:04', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3068', '2022-11-28 00:00:04', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3069', '2022-11-28 00:00:04', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3070', '2022-11-28 00:00:04', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3071', '2022-11-28 00:00:04', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3072', '2022-11-28 00:00:04', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3073', '2022-11-28 00:00:04', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3074', '2022-11-28 00:00:04', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3075', '2022-11-28 00:00:04', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3076', '2022-11-28 00:00:04', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3077', '2022-11-28 00:00:04', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3078', '2022-11-28 00:00:04', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3079', '2022-11-28 00:00:04', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3080', '2022-11-28 00:00:04', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3081', '2022-11-28 00:00:04', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3082', '2022-11-28 00:00:04', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3083', '2022-11-28 00:00:04', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3084', '2022-11-28 00:00:10', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3085', '2022-11-28 00:00:12', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3086', '2022-11-28 00:00:12', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3087', '2022-11-28 00:00:15', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3088', '2022-11-28 00:00:15', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3089', '2022-11-28 00:00:15', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3090', '2022-11-28 00:00:16', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3091', '2022-11-28 00:00:16', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3092', '2022-11-28 00:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3093', '2022-11-28 00:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3094', '2022-11-28 00:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3095', '2022-11-28 00:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3096', '2022-11-28 04:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3097', '2022-11-28 04:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3098', '2022-11-28 04:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3099', '2022-11-28 08:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3100', '2022-11-28 08:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3101', '2022-11-28 08:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3102', '2022-11-28 08:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3103', '2022-11-28 12:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3104', '2022-11-28 12:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3105', '2022-11-28 12:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3106', '2022-11-28 12:40:03', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3107', '2022-11-28 16:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3108', '2022-11-28 16:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3109', '2022-11-28 16:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3110', '2022-11-28 16:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3111', '2022-11-28 17:57:48', 'Administrator Account Modified (Winter Fe)', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3112', '2022-11-28 17:58:09', 'Administrator Account Modified (Winter Fe)', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3113', '2022-11-28 17:58:26', 'Administrator Account Modified (Winter Fe)', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3114', '2022-11-28 18:00:12', 'Email Sent to Winter Fe (Password Reset Validation) - UserID: 1', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3115', '2022-11-28 18:00:12', 'Password Reset Requested - UserID: 1', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3116', '2022-11-28 18:02:19', 'Password Reset Completed - UserID: 1', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3117', '2022-11-28 18:02:20', 'Email Sent to Winter Fe (Your password has been reset) - UserID: 1', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3118', '2022-11-28 20:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3119', '2022-11-28 20:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3120', '2022-11-28 20:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3121', '2022-11-29 00:00:03', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3122', '2022-11-29 00:00:03', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3123', '2022-11-29 00:00:03', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3124', '2022-11-29 00:00:03', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3125', '2022-11-29 00:00:04', 'Created Invoice - Invoice ID: 20', 'System', '8', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3126', '2022-11-29 00:00:04', 'Credit Automatically Applied at Invoice Creation - Invoice ID: 20 - Amount: 5', 'System', '8', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3127', '2022-11-29 00:00:07', 'Email Sent to Astrid Isgay (Customer Invoice) - Client ID: 8', 'System', '8', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3128', '2022-11-29 00:00:07', 'Invoice Marked Paid - Invoice ID: 20', 'System', '8', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3129', '2022-11-29 00:00:07', 'Email Sent to Astrid Isgay (Invoice Payment Confirmation) - Client ID: 8', 'System', '8', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3130', '2022-11-29 00:00:07', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3131', '2022-11-29 00:00:07', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3132', '2022-11-29 00:00:08', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3133', '2022-11-29 00:00:08', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3134', '2022-11-29 00:00:08', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3135', '2022-11-29 00:00:08', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3136', '2022-11-29 00:00:08', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3137', '2022-11-29 00:00:08', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3138', '2022-11-29 00:00:08', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3139', '2022-11-29 00:00:08', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3140', '2022-11-29 00:00:08', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3141', '2022-11-29 00:00:08', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3142', '2022-11-29 00:00:08', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3143', '2022-11-29 00:00:08', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3144', '2022-11-29 00:00:08', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3145', '2022-11-29 00:00:08', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3146', '2022-11-29 00:00:08', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3147', '2022-11-29 00:00:08', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3148', '2022-11-29 00:00:08', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3149', '2022-11-29 00:00:12', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3150', '2022-11-29 00:00:14', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3151', '2022-11-29 00:00:14', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3152', '2022-11-29 00:00:18', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3153', '2022-11-29 00:00:18', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3154', '2022-11-29 00:00:18', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3155', '2022-11-29 00:00:19', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3156', '2022-11-29 00:00:19', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3157', '2022-11-29 00:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3158', '2022-11-29 00:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3159', '2022-11-29 00:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3160', '2022-11-29 00:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3161', '2022-11-29 02:30:07', 'Password Reset Initiated for Admin Username winter', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3162', '2022-11-29 02:30:23', 'Password Reset Completed for Admin Username winter', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3163', '2022-11-29 02:30:25', 'Invalid Admin Password Reset Link Followed.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3164', '2022-11-29 02:32:12', 'New Order Placed - Order ID: 19 - User ID: 5', 'winter', '5', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3165', '2022-11-29 02:32:14', 'Email Sent (WHMCS New Order Notification) - Client ID: 5 - Order ID: 19', 'winter', '5', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3166', '2022-11-29 02:32:37', 'Module Create Successful - Service ID: 522', 'winter', '5', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3167', '2022-11-29 02:36:02', 'Modified Product/Service - Status changed from Active to Cancelled - User ID: 5 - Service ID: 522', 'winter', '5', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3168', '2022-11-29 02:36:06', 'Module Terminate Successful - Service ID: 522', 'winter', '5', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3169', '2022-11-29 02:37:28', 'Added Contact - User ID: 5 - Contact ID: 1', 'winter', '5', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3170', '2022-11-29 02:37:38', 'Deleted Product/Service - User ID: 5 - Service ID: 522', 'winter', '5', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3171', '2022-11-29 04:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3172', '2022-11-29 04:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3173', '2022-11-29 04:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3174', '2022-11-29 08:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3175', '2022-11-29 08:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3176', '2022-11-29 08:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3177', '2022-11-29 08:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3178', '2022-11-29 12:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3179', '2022-11-29 12:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3180', '2022-11-29 12:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3181', '2022-11-29 12:40:03', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3182', '2022-11-29 16:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3183', '2022-11-29 16:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3184', '2022-11-29 16:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3185', '2022-11-29 16:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3186', '2022-11-29 20:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3187', '2022-11-29 20:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3188', '2022-11-29 20:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3189', '2022-11-30 00:00:02', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3190', '2022-11-30 00:00:03', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3191', '2022-11-30 00:00:03', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3192', '2022-11-30 00:00:03', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3193', '2022-11-30 00:00:03', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3194', '2022-11-30 00:00:03', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3195', '2022-11-30 00:00:03', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3196', '2022-11-30 00:00:03', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3197', '2022-11-30 00:00:03', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3198', '2022-11-30 00:00:03', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3199', '2022-11-30 00:00:03', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3200', '2022-11-30 00:00:03', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3201', '2022-11-30 00:00:03', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3202', '2022-11-30 00:00:03', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3203', '2022-11-30 00:00:03', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3204', '2022-11-30 00:00:04', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3205', '2022-11-30 00:00:04', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3206', '2022-11-30 00:00:04', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3207', '2022-11-30 00:00:04', 'Automated Task: Starting Overage Billing Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3208', '2022-11-30 00:00:04', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3209', '2022-11-30 00:00:04', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3210', '2022-11-30 00:00:04', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3211', '2022-11-30 00:00:04', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3212', '2022-11-30 00:00:04', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3213', '2022-11-30 00:00:08', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3214', '2022-11-30 00:00:11', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3215', '2022-11-30 00:00:11', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3216', '2022-11-30 00:00:16', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3217', '2022-11-30 00:00:16', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3218', '2022-11-30 00:00:16', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3219', '2022-11-30 00:00:17', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3220', '2022-11-30 00:00:17', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3221', '2022-11-30 00:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3222', '2022-11-30 00:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3223', '2022-11-30 00:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3224', '2022-11-30 00:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3225', '2022-11-30 04:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3226', '2022-11-30 04:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3227', '2022-11-30 04:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3228', '2022-11-30 08:00:02', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3229', '2022-11-30 08:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3230', '2022-11-30 08:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3231', '2022-11-30 08:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3232', '2022-11-30 12:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3233', '2022-11-30 12:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3234', '2022-11-30 12:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3235', '2022-11-30 12:40:03', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3236', '2022-11-30 16:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3237', '2022-11-30 16:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3238', '2022-11-30 16:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3239', '2022-11-30 16:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3240', '2022-11-30 20:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3241', '2022-11-30 20:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3242', '2022-11-30 20:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3243', '2022-12-01 00:00:03', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3244', '2022-12-01 00:00:03', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3245', '2022-12-01 00:00:04', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3246', '2022-12-01 00:00:04', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3247', '2022-12-01 00:00:04', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3248', '2022-12-01 00:00:04', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3249', '2022-12-01 00:00:04', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3250', '2022-12-01 00:00:04', 'Cron Job: 0 Expired Credit Cards Deleted', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3251', '2022-12-01 00:00:04', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3252', '2022-12-01 00:00:04', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3253', '2022-12-01 00:00:04', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3254', '2022-12-01 00:00:04', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3255', '2022-12-01 00:00:04', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3256', '2022-12-01 00:00:04', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3257', '2022-12-01 00:00:04', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3258', '2022-12-01 00:00:04', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3259', '2022-12-01 00:00:04', 'Automated Task: Starting Affiliate Reports', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3260', '2022-12-01 00:00:06', 'Email Sent to Winter Fe (Affiliate Monthly Referrals Report) - Client ID: 1', 'System', '1', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3261', '2022-12-01 00:00:08', 'Email Sent to Adrian Oviatt (Affiliate Monthly Referrals Report) - Client ID: 2', 'System', '2', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3262', '2022-12-01 00:00:08', 'Email Sent to Noah Bryfogle (Affiliate Monthly Referrals Report) - Client ID: 4', 'System', '4', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3263', '2022-12-01 00:00:09', 'Email Sent to Motzumoto Lunar (Affiliate Monthly Referrals Report) - Client ID: 5', 'System', '5', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3264', '2022-12-01 00:00:10', 'Email Sent to Astrid Isgay (Affiliate Monthly Referrals Report) - Client ID: 8', 'System', '8', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3265', '2022-12-01 00:00:10', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3266', '2022-12-01 00:00:10', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3267', '2022-12-01 00:00:11', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3268', '2022-12-01 00:00:11', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3269', '2022-12-01 00:00:11', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3270', '2022-12-01 00:00:11', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3271', '2022-12-01 00:00:11', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3272', '2022-12-01 00:00:11', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3273', '2022-12-01 00:00:15', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3274', '2022-12-01 00:00:16', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3275', '2022-12-01 00:00:16', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3276', '2022-12-01 00:00:21', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3277', '2022-12-01 00:00:21', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3278', '2022-12-01 00:00:22', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3279', '2022-12-01 00:00:23', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3280', '2022-12-01 00:00:23', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3281', '2022-12-01 00:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3282', '2022-12-01 00:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3283', '2022-12-01 00:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3284', '2022-12-01 00:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3285', '2022-12-01 04:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3286', '2022-12-01 04:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3287', '2022-12-01 04:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3288', '2022-12-01 08:00:02', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3289', '2022-12-01 08:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3290', '2022-12-01 08:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3291', '2022-12-01 08:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3292', '2022-12-01 12:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3293', '2022-12-01 12:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3294', '2022-12-01 12:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3295', '2022-12-01 12:40:03', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3296', '2022-12-01 16:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3297', '2022-12-01 16:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3298', '2022-12-01 16:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3299', '2022-12-01 16:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3300', '2022-12-01 20:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3301', '2022-12-01 20:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3302', '2022-12-01 20:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3303', '2022-12-02 00:00:03', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3304', '2022-12-02 00:00:03', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3305', '2022-12-02 00:00:04', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3306', '2022-12-02 00:00:04', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3307', '2022-12-02 00:00:04', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3308', '2022-12-02 00:00:04', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3309', '2022-12-02 00:00:04', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3310', '2022-12-02 00:00:04', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3311', '2022-12-02 00:00:04', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3312', '2022-12-02 00:00:04', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3313', '2022-12-02 00:00:04', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3314', '2022-12-02 00:00:04', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3315', '2022-12-02 00:00:04', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3316', '2022-12-02 00:00:04', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3317', '2022-12-02 00:00:04', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3318', '2022-12-02 00:00:04', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3319', '2022-12-02 00:00:04', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3320', '2022-12-02 00:00:04', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3321', '2022-12-02 00:00:04', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3322', '2022-12-02 00:00:04', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3323', '2022-12-02 00:00:04', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3324', '2022-12-02 00:00:04', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3325', '2022-12-02 00:00:04', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3326', '2022-12-02 00:00:09', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3327', '2022-12-02 00:00:11', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3328', '2022-12-02 00:00:11', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3329', '2022-12-02 00:00:16', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3330', '2022-12-02 00:00:16', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3331', '2022-12-02 00:00:17', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3332', '2022-12-02 00:00:18', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3333', '2022-12-02 00:00:18', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3334', '2022-12-02 00:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3335', '2022-12-02 00:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3336', '2022-12-02 00:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3337', '2022-12-02 00:40:03', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3338', '2022-12-02 04:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3339', '2022-12-02 04:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3340', '2022-12-02 04:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3341', '2022-12-02 08:00:02', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3342', '2022-12-02 08:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3343', '2022-12-02 08:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3344', '2022-12-02 08:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3345', '2022-12-02 12:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3346', '2022-12-02 12:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3347', '2022-12-02 12:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3348', '2022-12-02 12:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3349', '2022-12-02 16:00:02', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3350', '2022-12-02 16:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3351', '2022-12-02 16:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3352', '2022-12-02 16:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3353', '2022-12-02 20:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3354', '2022-12-02 20:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3355', '2022-12-02 20:30:03', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3356', '2022-12-02 21:30:39', 'General Settings Modified. Changes made: Display Errors Enabled. Log Errors Enabled.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3357', '2022-12-02 23:55:02', 'Error: Whoops\\Exception\\ErrorException: The file /var/www/whmcs/modules/servers/proxmoxVPS/proxmoxVPS.php encoded as type [1/71] cannot be decoded by this version of the ionCube Loader. in Unknown:0 Stack trace: #0 /var/www/whmcs/vendor/whmcs/whmcs-foundation/lib/Utility/Error/Run.php(0): WHMCS\\Utility\\Error\\Run->handleError() #1 [internal function]: WHMCS\\Utility\\Error\\Run->handleShutdown() #2 {main}', '', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3358', '2022-12-03 00:00:02', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3359', '2022-12-03 00:00:02', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3360', '2022-12-03 00:00:03', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3361', '2022-12-03 00:00:03', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3362', '2022-12-03 00:00:03', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3363', '2022-12-03 00:00:03', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3364', '2022-12-03 00:00:03', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3365', '2022-12-03 00:00:03', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3366', '2022-12-03 00:00:03', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3367', '2022-12-03 00:00:03', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3368', '2022-12-03 00:00:03', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3369', '2022-12-03 00:00:03', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3370', '2022-12-03 00:00:03', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3371', '2022-12-03 00:00:03', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3372', '2022-12-03 00:00:03', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3373', '2022-12-03 00:00:03', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3374', '2022-12-03 00:00:03', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3375', '2022-12-03 00:00:03', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3376', '2022-12-03 00:00:03', 'Error: Whoops\\Exception\\ErrorException: The file /var/www/whmcs/modules/servers/proxmoxVPS/proxmoxVPS.php encoded as type [1/71] cannot be decoded by this version of the ionCube Loader. in Unknown:0 Stack trace: #0 /var/www/whmcs/vendor/whmcs/whmcs-foundation/lib/Utility/Error/Run.php(0): WHMCS\\Utility\\Error\\Run->handleError() #1 [internal function]: WHMCS\\Utility\\Error\\Run->handleShutdown() #2 {main}', '', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3377', '2022-12-03 00:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3378', '2022-12-03 00:30:02', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3379', '2022-12-03 00:30:02', 'Domain Sync Cron: Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3380', '2022-12-03 00:40:01', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3381', '2022-12-03 00:40:01', 'Error: Whoops\\Exception\\ErrorException: The file /var/www/whmcs/modules/servers/proxmoxVPS/proxmoxVPS.php encoded as type [1/71] cannot be decoded by this version of the ionCube Loader. in Unknown:0 Stack trace: #0 /var/www/whmcs/vendor/whmcs/whmcs-foundation/lib/Utility/Error/Run.php(0): WHMCS\\Utility\\Error\\Run->handleError() #1 [internal function]: WHMCS\\Utility\\Error\\Run->handleShutdown() #2 {main}', '', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3382', '2022-12-03 03:54:02', 'General Settings Modified. Changes made: Display Errors Disabled. Log Errors Disabled.', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3383', '2022-12-03 03:56:02', 'Automation Settings Changed. Changes made: Domain Sync Enabled changed from \'on\' to \'off\'. Module Log Pruning Enabled changed from \'\' to \'1\'. Module Log Retention Days changed from \'30\' to \'60\'', 'winter', '0', '0', '1', '97.89.6.129');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3384', '2022-12-03 04:02:13', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3385', '2022-12-03 04:02:13', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3386', '2022-12-03 04:02:14', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3387', '2022-12-03 04:02:14', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3388', '2022-12-03 04:02:14', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3389', '2022-12-03 04:02:14', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3390', '2022-12-03 04:02:14', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3391', '2022-12-03 04:02:14', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3392', '2022-12-03 04:02:14', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3393', '2022-12-03 04:02:14', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3394', '2022-12-03 04:02:14', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3395', '2022-12-03 04:02:14', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3396', '2022-12-03 04:02:14', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3397', '2022-12-03 04:02:14', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3398', '2022-12-03 04:02:14', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3399', '2022-12-03 04:02:14', 'Automated Task: Starting Prune Ticket Attachments', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3400', '2022-12-03 04:02:14', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3401', '2022-12-03 04:02:14', 'Automated Task: Starting Affiliate Reports', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3402', '2022-12-03 04:02:14', 'Automated Task: Starting Process Email Queue', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3403', '2022-12-03 04:02:14', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3404', '2022-12-03 04:02:14', 'Automated Task: Starting Process Email Campaigns', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3405', '2022-12-03 04:02:14', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3406', '2022-12-03 04:02:14', 'Automated Task: Starting Credit Card Expiry Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3407', '2022-12-03 04:02:14', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3408', '2022-12-03 04:02:14', 'Automated Task: Starting Overage Billing Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3409', '2022-12-03 04:02:14', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3410', '2022-12-03 04:02:14', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3411', '2022-12-03 04:02:14', 'Automated Task: Starting Ticket Escalation Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3412', '2022-12-03 04:02:14', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3413', '2022-12-03 04:02:14', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3414', '2022-12-03 04:02:14', 'Automated Task: Starting Update Server Usage', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3415', '2022-12-03 04:02:14', 'Automated Task: Starting Update Server Meta Data', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3416', '2022-12-03 04:02:14', 'Automated Task: Starting Run Jobs Queue', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3417', '2022-12-03 04:02:14', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3418', '2022-12-03 04:02:20', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3419', '2022-12-03 04:02:20', 'Domain Transfer Status Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3420', '2022-12-03 04:02:20', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3421', '2022-12-03 04:02:20', 'Domain Sync Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3422', '2022-12-03 04:02:20', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3423', '2022-12-03 04:02:22', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3424', '2022-12-03 04:02:22', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3425', '2022-12-03 04:02:28', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3426', '2022-12-03 04:02:28', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3427', '2022-12-03 04:02:29', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3428', '2022-12-03 04:02:30', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3429', '2022-12-03 04:02:30', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3430', '2022-12-03 04:02:52', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3431', '2022-12-03 04:02:52', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3432', '2022-12-03 04:02:52', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3433', '2022-12-03 04:02:52', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3434', '2022-12-03 04:02:52', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3435', '2022-12-03 04:02:52', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3436', '2022-12-03 04:02:52', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3437', '2022-12-03 04:02:52', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3438', '2022-12-03 04:02:52', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3439', '2022-12-03 04:02:52', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3440', '2022-12-03 04:02:52', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3441', '2022-12-03 04:02:52', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3442', '2022-12-03 04:02:52', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3443', '2022-12-03 04:02:52', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3444', '2022-12-03 04:02:52', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3445', '2022-12-03 04:02:53', 'Automated Task: Starting Prune Ticket Attachments', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3446', '2022-12-03 04:02:53', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3447', '2022-12-03 04:02:53', 'Automated Task: Starting Affiliate Reports', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3448', '2022-12-03 04:02:53', 'Automated Task: Starting Process Email Queue', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3449', '2022-12-03 04:02:53', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3450', '2022-12-03 04:02:53', 'Automated Task: Starting Process Email Campaigns', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3451', '2022-12-03 04:02:53', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3452', '2022-12-03 04:02:53', 'Automated Task: Starting Credit Card Expiry Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3453', '2022-12-03 04:02:53', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3454', '2022-12-03 04:02:53', 'Automated Task: Starting Overage Billing Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3455', '2022-12-03 04:02:53', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3456', '2022-12-03 04:02:53', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3457', '2022-12-03 04:02:53', 'Automated Task: Starting Ticket Escalation Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3458', '2022-12-03 04:02:53', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3459', '2022-12-03 04:02:53', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3460', '2022-12-03 04:02:53', 'Automated Task: Starting Update Server Usage', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3461', '2022-12-03 04:02:53', 'Automated Task: Starting Update Server Meta Data', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3462', '2022-12-03 04:02:53', 'Automated Task: Starting Run Jobs Queue', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3463', '2022-12-03 04:02:53', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3464', '2022-12-03 04:02:58', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3465', '2022-12-03 04:02:58', 'Domain Transfer Status Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3466', '2022-12-03 04:02:58', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3467', '2022-12-03 04:02:58', 'Domain Sync Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3468', '2022-12-03 04:02:58', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3469', '2022-12-03 04:02:59', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3470', '2022-12-03 04:02:59', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3471', '2022-12-03 04:03:05', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3472', '2022-12-03 04:03:05', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3473', '2022-12-03 04:03:05', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3474', '2022-12-03 04:03:06', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3475', '2022-12-03 04:03:06', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3476', '2022-12-03 04:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3477', '2022-12-03 04:30:03', 'Domain Transfer Status Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3478', '2022-12-03 04:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3479', '2022-12-03 04:30:03', 'Domain Sync Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3480', '2022-12-03 08:00:04', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3481', '2022-12-03 08:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3482', '2022-12-03 08:30:03', 'Domain Transfer Status Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3483', '2022-12-03 08:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3484', '2022-12-03 08:30:03', 'Domain Sync Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3485', '2022-12-03 12:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3486', '2022-12-03 12:30:03', 'Domain Transfer Status Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3487', '2022-12-03 12:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3488', '2022-12-03 12:30:03', 'Domain Sync Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3489', '2022-12-03 12:40:04', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3490', '2022-12-03 16:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3491', '2022-12-03 16:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3492', '2022-12-03 16:30:03', 'Domain Transfer Status Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3493', '2022-12-03 16:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3494', '2022-12-03 16:30:03', 'Domain Sync Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3495', '2022-12-03 20:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3496', '2022-12-03 20:30:03', 'Domain Transfer Status Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3497', '2022-12-03 20:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3498', '2022-12-03 20:30:03', 'Domain Sync Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3499', '2022-12-04 00:00:03', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3500', '2022-12-04 00:00:03', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3501', '2022-12-04 00:00:04', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3502', '2022-12-04 00:00:04', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3503', '2022-12-04 00:00:04', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3504', '2022-12-04 00:00:04', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3505', '2022-12-04 00:00:04', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3506', '2022-12-04 00:00:04', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3507', '2022-12-04 00:00:04', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3508', '2022-12-04 00:00:04', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3509', '2022-12-04 00:00:04', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3510', '2022-12-04 00:00:04', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3511', '2022-12-04 00:00:04', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3512', '2022-12-04 00:00:04', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3513', '2022-12-04 00:00:04', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3514', '2022-12-04 00:00:04', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3515', '2022-12-04 00:00:04', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3516', '2022-12-04 00:00:05', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3517', '2022-12-04 00:00:05', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3518', '2022-12-04 00:00:05', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3519', '2022-12-04 00:00:05', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3520', '2022-12-04 00:00:05', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3521', '2022-12-04 00:00:05', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3522', '2022-12-04 00:00:10', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3523', '2022-12-04 00:00:12', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3524', '2022-12-04 00:00:12', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3525', '2022-12-04 00:00:17', 'Cron Job: Backup Database Dump Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3526', '2022-12-04 00:00:17', 'Cron Job: Starting Backup Zip Creation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3527', '2022-12-04 00:00:17', 'Cron Job: Backup Generation Completed', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3528', '2022-12-04 00:00:18', 'Cron Job: FTP Backup - Completed Successfully', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3529', '2022-12-04 00:00:18', 'Cron Job: Backup Complete', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3530', '2022-12-04 00:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3531', '2022-12-04 00:30:03', 'Domain Transfer Status Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3532', '2022-12-04 00:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3533', '2022-12-04 00:30:03', 'Domain Sync Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3534', '2022-12-04 00:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3535', '2022-12-04 04:30:02', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3536', '2022-12-04 04:30:02', 'Domain Transfer Status Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3537', '2022-12-04 04:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3538', '2022-12-04 04:30:03', 'Domain Sync Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3539', '2022-12-04 08:00:03', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3540', '2022-12-04 08:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3541', '2022-12-04 08:30:03', 'Domain Transfer Status Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3542', '2022-12-04 08:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3543', '2022-12-04 08:30:03', 'Domain Sync Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3544', '2022-12-04 12:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3545', '2022-12-04 12:30:03', 'Domain Transfer Status Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3546', '2022-12-04 12:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3547', '2022-12-04 12:30:03', 'Domain Sync Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3548', '2022-12-04 12:40:02', 'Automated Task: Starting Tenant Usage Metrics', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3549', '2022-12-04 16:00:02', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3550', '2022-12-04 16:30:03', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3551', '2022-12-04 16:30:03', 'Domain Transfer Status Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3552', '2022-12-04 16:30:03', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3553', '2022-12-04 16:30:03', 'Domain Sync Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3554', '2022-12-04 20:30:04', 'Automated Task: Starting Domain Transfer Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3555', '2022-12-04 20:30:04', 'Domain Transfer Status Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3556', '2022-12-04 20:30:04', 'Automated Task: Starting Domain Status Synchronisation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3557', '2022-12-04 20:30:04', 'Domain Sync Cron: Disabled. Run Aborted.', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3558', '2022-12-05 00:00:03', 'Cron Job: Starting Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3559', '2022-12-05 00:00:05', 'Automated Task: Starting Currency Exchange Rates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3560', '2022-12-05 00:00:05', 'Automated Task: Starting Product Pricing Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3561', '2022-12-05 00:00:05', 'Automated Task: Starting Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3562', '2022-12-05 00:00:05', 'Automated Task: Starting Late Fees', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3563', '2022-12-05 00:00:05', 'Cron Job: Late Invoice Fees added to 0 Invoices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3564', '2022-12-05 00:00:05', 'Automated Task: Starting Credit Card Charges', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3565', '2022-12-05 00:00:05', 'Automated Task: Starting Invoice & Overdue Reminders', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3566', '2022-12-05 00:00:05', 'Automated Task: Starting Domain Renewal Notices', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3567', '2022-12-05 00:00:05', 'Automated Task: Starting Cancellation Requests', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3568', '2022-12-05 00:00:05', 'Automated Task: Starting Overdue Suspensions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3569', '2022-12-05 00:00:05', 'Automated Task: Starting Overdue Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3570', '2022-12-05 00:00:05', 'Automated Task: Starting Fixed Term Terminations', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3571', '2022-12-05 00:00:05', 'Automated Task: Starting Inactive Tickets', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3572', '2022-12-05 00:00:05', 'Automated Task: Starting Delayed Affiliate Commissions', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3573', '2022-12-05 00:00:05', 'Automated Task: Starting Email Marketer Rules', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3574', '2022-12-05 00:00:05', 'Automated Task: Starting SSL Sync', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3575', '2022-12-05 00:00:06', 'Automated Task: Starting Server Usage Stats', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3576', '2022-12-05 00:00:06', 'Automated Task: Starting Client Status Update', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3577', '2022-12-05 00:00:06', 'Automated Task: Starting Domain Expiry', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3578', '2022-12-05 00:00:06', 'Automated Task: Starting Data Retention Pruning', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3579', '2022-12-05 00:00:06', 'Automated Task: Starting SSL Certificate Reissues', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3580', '2022-12-05 00:00:06', 'Automated Task: Starting WHMCS Updates', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3581', '2022-12-05 00:00:11', 'Cron Job: Completed Daily Automation Tasks', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3582', '2022-12-05 00:00:15', 'Cron Job: Starting Backup Generation', 'System', '0', '0', '0', '');INSERT INTO `tblactivitylog` (`id`, `date`, `description`, `user`, `userid`, `user_id`, `admin_id`, `ipaddr`) VALUES ('3583', '2022-12-05 00:00:15', 'Cron Job: Starting Backup Database Dump', 'System', '0', '0', '0', '');/*!40000 ALTER TABLE `tblactivitylog` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tbladdonmodules`--DROP TABLE IF EXISTS `tbladdonmodules`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tbladdonmodules` ( `id` int(11) NOT NULL AUTO_INCREMENT, `module` text NOT NULL, `setting` text NOT NULL, `value` text NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=103 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tbladdonmodules`--LOCK TABLES `tbladdonmodules` WRITE;/*!40000 ALTER TABLE `tbladdonmodules` DISABLE KEYS */;INSERT INTO `tbladdonmodules` (`id`, `module`, `setting`, `value`) VALUES ('1', 'staffboard', 'version', '1.1');INSERT INTO `tbladdonmodules` (`id`, `module`, `setting`, `value`) VALUES ('3', 'staffboard', 'masteradmin1', 'on');INSERT INTO `tbladdonmodules` (`id`, `module`, `setting`, `value`) VALUES ('4', 'staffboard', 'masteradmin2', '');INSERT INTO `tbladdonmodules` (`id`, `module`, `setting`, `value`) VALUES ('5', 'staffboard', 'masteradmin3', '');INSERT INTO `tbladdonmodules` (`id`, `module`, `setting`, `value`) VALUES ('6', 'cloudflare_ip_sync', 'version', '1.0');INSERT INTO `tbladdonmodules` (`id`, `module`, `setting`, `value`) VALUES ('70', 'bulkpricingupdater', 'version', '3.0');INSERT INTO `tbladdonmodules` (`id`, `module`, `setting`, `value`) VALUES ('77', 'staffboard', 'lastviewed', 'a:2:{i:1;i:1668353633;i:3;i:1668357628;}');INSERT INTO `tbladdonmodules` (`id`, `module`, `setting`, `value`) VALUES ('86', 'paypal_addon', 'version', '2.0.1');INSERT INTO `tbladdonmodules` (`id`, `module`, `setting`, `value`) VALUES ('91', 'paypal_addon', 'username', 'contact_api1.lunardev.group');INSERT INTO `tbladdonmodules` (`id`, `module`, `setting`, `value`) VALUES ('92', 'paypal_addon', 'password', 'DVX9FTYDLFBDK2KN');INSERT INTO `tbladdonmodules` (`id`, `module`, `setting`, `value`) VALUES ('93', 'paypal_addon', 'signature', 'A3ipusvtBAuH-hM4FfLm7KZeINGoAjzSDvc2DWacO8X.VAUSFJ3xHHzQ');INSERT INTO `tbladdonmodules` (`id`, `module`, `setting`, `value`) VALUES ('94', 'paypal_addon', 'showbalance1', 'on');INSERT INTO `tbladdonmodules` (`id`, `module`, `setting`, `value`) VALUES ('95', 'paypal_addon', 'showbalance2', '');INSERT INTO `tbladdonmodules` (`id`, `module`, `setting`, `value`) VALUES ('96', 'paypal_addon', 'showbalance3', '');INSERT INTO `tbladdonmodules` (`id`, `module`, `setting`, `value`) VALUES ('97', 'proxmoxAddon', 'version', '3.5.0');INSERT INTO `tbladdonmodules` (`id`, `module`, `setting`, `value`) VALUES ('98', 'bulkpricingupdater', 'access', '1,2');INSERT INTO `tbladdonmodules` (`id`, `module`, `setting`, `value`) VALUES ('99', 'cloudflare_ip_sync', 'access', '');INSERT INTO `tbladdonmodules` (`id`, `module`, `setting`, `value`) VALUES ('100', 'paypal_addon', 'access', '1');INSERT INTO `tbladdonmodules` (`id`, `module`, `setting`, `value`) VALUES ('101', 'proxmoxAddon', 'access', '1,2');INSERT INTO `tbladdonmodules` (`id`, `module`, `setting`, `value`) VALUES ('102', 'staffboard', 'access', '1,2,3');/*!40000 ALTER TABLE `tbladdonmodules` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tbladdons`--DROP TABLE IF EXISTS `tbladdons`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tbladdons` ( `id` int(10) NOT NULL AUTO_INCREMENT, `packages` text NOT NULL, `name` text NOT NULL, `description` text NOT NULL, `billingcycle` text NOT NULL, `allowqty` tinyint(3) unsigned NOT NULL DEFAULT 0, `tax` tinyint(1) NOT NULL, `showorder` tinyint(1) NOT NULL, `hidden` tinyint(1) NOT NULL DEFAULT 0, `retired` tinyint(1) NOT NULL DEFAULT 0, `downloads` text NOT NULL, `autoactivate` text NOT NULL, `suspendproduct` tinyint(1) NOT NULL, `welcomeemail` int(10) NOT NULL, `type` varchar(16) NOT NULL DEFAULT '', `module` varchar(32) NOT NULL DEFAULT '', `server_group_id` int(10) NOT NULL DEFAULT 0, `prorate` tinyint(1) NOT NULL DEFAULT 0, `weight` int(2) NOT NULL DEFAULT 0, `autolinkby` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `name` (`name`(32))) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tbladdons`--LOCK TABLES `tbladdons` WRITE;/*!40000 ALTER TABLE `tbladdons` DISABLE KEYS */;/*!40000 ALTER TABLE `tbladdons` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tbladminlog`--DROP TABLE IF EXISTS `tbladminlog`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tbladminlog` ( `id` int(10) NOT NULL AUTO_INCREMENT, `adminusername` text NOT NULL, `logintime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `logouttime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `ipaddress` text NOT NULL, `sessionid` text NOT NULL, `lastvisit` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `logouttime` (`logouttime`)) ENGINE=InnoDB AUTO_INCREMENT=108 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tbladminlog`--LOCK TABLES `tbladminlog` WRITE;/*!40000 ALTER TABLE `tbladminlog` DISABLE KEYS */;INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('1', 'winter', '2022-11-05 23:48:04', '2022-11-05 23:48:23', '108.162.237.68', 'a8akv1jnallf66ukjdvk4iubtn', '2022-11-05 23:48:20');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('2', 'winter', '2022-11-05 23:48:57', '2022-11-05 23:52:08', '108.162.237.129', 'iajrvatvdinc287mrfjqepqou9', '2022-11-05 23:52:08');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('3', 'winter', '2022-11-05 23:53:08', '2022-11-05 23:53:25', '172.71.82.140', '4806hrj0sbisf61aemjdje1nt9', '2022-11-05 23:53:25');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('4', 'winter', '2022-11-05 23:56:00', '2022-11-05 23:56:17', '172.71.30.128', '8obprb0ca6qe8dbcn7etupkc55', '2022-11-05 23:56:17');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('5', 'winter', '2022-11-06 00:10:10', '2022-11-06 00:11:08', '172.71.30.40', 'g4uc5lghuc2anuevd2q9q97s87', '2022-11-06 00:11:08');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('6', 'winter', '2022-11-06 00:14:18', '2022-11-06 00:15:15', '172.71.22.100', '5asfnpm6clj3urv5fqaosmctr1', '2022-11-06 00:15:15');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('7', 'winter', '2022-11-06 00:16:12', '2022-11-06 00:16:12', '172.71.22.142', 'pg2g4p437uljckl3q25i79g5rk', '2022-11-06 00:16:12');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('8', 'winter', '2022-11-06 04:17:05', '2022-11-06 04:17:05', '108.162.237.97', 'apk0ofcfu5pfkjamv23dsrq967', '2022-11-06 04:17:05');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('9', 'winter', '2022-11-06 04:18:26', '2022-11-06 04:21:03', '172.71.22.142', '0e0t37e78k4ofa7aebobsr4gsk', '2022-11-06 04:21:03');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('10', 'winter', '2022-11-06 04:25:36', '2022-11-06 04:27:45', '172.71.82.47', 'nanns5tt5lbleu1iqa4bivt20h', '2022-11-06 04:27:45');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('11', 'winter', '2022-11-06 04:32:14', '2022-11-06 04:35:46', '172.71.30.41', '8t0n4qtlslvpjcua6l8ev2j4jv', '2022-11-06 04:35:46');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('12', 'winter', '2022-11-06 04:37:50', '2022-11-06 04:38:57', '172.71.26.109', 'ti2gtvsd3rlk80l52le4aou76v', '2022-11-06 04:38:57');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('13', 'winter', '2022-11-06 04:39:36', '2022-11-06 04:40:09', '172.71.30.82', '6l4kl9880crboi9q5qlqccm7h1', '2022-11-06 04:40:09');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('14', 'winter', '2022-11-06 04:40:48', '2022-11-06 04:41:53', '172.71.26.124', '67af8hnor71ed484kcv63jiuln', '2022-11-06 04:41:53');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('15', 'winter', '2022-11-06 04:42:03', '2022-11-06 05:32:48', '97.89.6.129', '7c8k8lajmaisvre08k4qbpr6pr', '2022-11-06 05:32:48');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('16', 'winter', '2022-11-06 05:37:25', '2022-11-06 08:04:01', '97.89.6.129', 'j3ars8nsfk15iqmb7qc78q74ka', '2022-11-06 08:04:01');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('17', 'winter', '2022-11-06 08:18:28', '2022-11-06 08:53:30', '97.89.6.129', 'dpa6p58ak6kp0l41cqtgikil73', '2022-11-06 08:53:30');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('18', 'winter', '2022-11-06 09:12:57', '2022-11-06 09:32:44', '97.89.6.129', 'dpa6p58ak6kp0l41cqtgikil73', '2022-11-06 09:32:44');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('19', 'winter', '2022-11-06 09:33:56', '2022-11-06 09:40:54', '97.89.6.129', '6c7tj5ho47amqmndr06tu6n5qp', '2022-11-06 09:38:22');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('20', 'winter', '2022-11-06 09:41:27', '2022-11-06 10:17:07', '97.89.6.129', 'aqjjhtrq82nbrsmov6en1qmr64', '2022-11-06 10:17:07');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('21', 'Motzumoto', '2022-11-06 10:00:01', '2022-11-06 10:00:31', '97.89.6.129', 'palom5qm453l52nfi7plrnrtnu', '2022-11-06 10:00:01');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('22', 'Motzumoto', '2022-11-06 10:00:41', '2022-11-06 10:02:04', '173.94.240.217', 's4fbbq9sldsst4efcjfjcv5ife', '2022-11-06 10:02:04');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('23', 'winter', '2022-11-06 10:18:37', '2022-11-06 10:22:28', '97.89.6.129', 'g17o92n0f1rik9ujk04m598vrq', '2022-11-06 10:22:28');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('24', 'winter', '2022-11-06 10:41:13', '2022-11-06 11:03:07', '97.89.6.129', 'g17o92n0f1rik9ujk04m598vrq', '2022-11-06 11:03:07');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('25', 'winter', '2022-11-06 11:19:32', '2022-11-06 11:41:51', '97.89.6.129', 'g17o92n0f1rik9ujk04m598vrq', '2022-11-06 11:41:51');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('26', 'winter', '2022-11-06 11:42:29', '2022-11-06 11:44:21', '97.89.6.129', 'qei37cqk6ef8g9jf5v9udsjct5', '2022-11-06 11:44:21');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('27', 'winter', '2022-11-06 11:45:55', '2022-11-06 11:46:18', '97.89.6.129', 'tb8fqnnrs98sqh6jbrujioi1ac', '2022-11-06 11:46:18');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('28', 'winter', '2022-11-06 12:02:37', '2022-11-06 12:02:37', '97.89.6.129', 'mvmjpjk7oehsgc4o78i97iia6t', '2022-11-06 12:02:37');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('29', 'winter', '2022-11-06 18:06:08', '2022-11-06 18:06:13', '97.89.6.129', 'uht9om7853nhumjt98b02gnbl6', '2022-11-06 18:06:13');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('30', 'winter', '2022-11-06 18:50:43', '2022-11-06 18:51:52', '97.89.6.129', 'r7bgarn19bhfd5u6ii2le8lsps', '2022-11-06 18:51:52');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('31', 'winter', '2022-11-06 19:12:11', '2022-11-06 19:14:34', '97.89.6.129', 'gj8codr5048ct4c96glmfms1tt', '2022-11-06 19:14:34');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('32', 'winter', '2022-11-06 19:23:30', '2022-11-06 19:27:44', '97.89.6.129', 'a6gi825eof05qm6ns4072fmo6h', '2022-11-06 19:27:44');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('33', 'winter', '2022-11-06 19:31:59', '2022-11-06 19:43:17', '97.89.6.129', 'bncmfghmeh91sna1vd7tg0c0v6', '2022-11-06 19:43:17');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('34', 'winter', '2022-11-06 22:16:48', '2022-11-06 22:16:49', '97.89.6.129', 'l8eo3sjbdhkibk0rq4o5prlu7b', '2022-11-06 22:16:49');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('35', 'winter', '2022-11-07 04:08:02', '2022-11-07 04:08:07', '97.89.6.129', 'a6gi825eof05qm6ns4072fmo6h', '2022-11-07 04:08:07');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('36', 'winter', '2022-11-07 20:07:58', '2022-11-07 20:07:58', '97.89.6.129', 'a6gi825eof05qm6ns4072fmo6h', '2022-11-07 20:07:58');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('37', 'winter', '2022-11-07 21:02:33', '2022-11-07 21:13:57', '97.89.6.129', 'dh046tilg8n11s90llif3vr59e', '2022-11-07 21:13:57');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('38', 'winter', '2022-11-07 21:53:28', '2022-11-07 22:35:31', '97.89.6.129', 'mfdq9b0iarisibn7gni4uqsg4g', '2022-11-07 22:35:31');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('39', 'winter', '2022-11-08 00:41:41', '2022-11-08 01:01:18', '97.89.6.129', '88ckrk44tlbeaagptfpvijbg67', '2022-11-08 01:01:18');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('40', 'winter', '2022-11-08 01:18:14', '2022-11-08 01:18:50', '97.89.6.129', '88ckrk44tlbeaagptfpvijbg67', '2022-11-08 01:18:50');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('41', 'winter', '2022-11-08 02:53:36', '2022-11-08 02:53:49', '97.89.6.129', 'v54evvl7g7vho46i4p0occ5ttn', '2022-11-08 02:53:49');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('42', 'winter', '2022-11-08 11:39:41', '2022-11-08 11:39:48', '2600:387:2:811::45', 'moc5r9a6fne46ra334qigqej2c', '2022-11-08 11:39:48');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('43', 'winter', '2022-11-08 12:28:46', '2022-11-08 12:28:46', '2600:387:2:811::45', 'uh98lv7gr1suh4gct0b7af6vdu', '2022-11-08 12:28:46');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('44', 'winter', '2022-11-08 13:46:03', '2022-11-08 13:46:03', '2600:387:2:811::45', 'uh98lv7gr1suh4gct0b7af6vdu', '2022-11-08 13:46:03');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('45', 'winter', '2022-11-08 14:03:22', '2022-11-08 17:45:30', '97.89.6.129', 'tpnkvbhlqbvsrb1pdao8hs6jc3', '2022-11-08 17:45:30');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('46', 'Motzumoto', '2022-11-08 15:35:10', '2022-11-08 15:35:29', '173.94.240.217', 'o4r96jcupnrvtk679q3g73jbfc', '2022-11-08 15:35:29');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('47', 'Motzumoto', '2022-11-08 17:46:10', '0000-00-00 00:00:00', '173.94.240.217', 'o4r96jcupnrvtk679q3g73jbfc', '2022-11-08 17:47:18');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('48', 'winter', '2022-11-08 17:46:37', '2022-11-08 17:49:56', '97.89.6.129', 'tp806vsp1q80e424phuv31ebgc', '2022-11-08 17:49:56');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('49', 'winter', '2022-11-08 18:31:59', '2022-11-08 18:31:59', '97.89.6.129', 'tp806vsp1q80e424phuv31ebgc', '2022-11-08 18:31:59');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('50', 'winter', '2022-11-09 08:01:28', '2022-11-09 08:01:29', '97.89.6.129', 'dmunm50je5s4b6j9h9jv95nd3a', '2022-11-09 08:01:29');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('51', 'winter', '2022-11-09 11:51:49', '2022-11-09 11:54:34', '2600:387:2:811::45', '0t26p8t51qbl9k3749b0p9r6ih', '2022-11-09 11:54:34');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('52', 'winter', '2022-11-10 04:05:56', '2022-11-10 04:19:12', '2600:1700:4174:ea00:652c:7db4:4ce1:ed91', 'd4po4egbibj074hj0t7mtrqi1u', '2022-11-10 04:19:12');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('53', 'winter', '2022-11-11 21:23:46', '2022-11-11 21:51:33', '97.89.6.129', 'ukguc5dfdlpkqj6bcq6u7drgeu', '2022-11-11 21:51:33');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('54', 'winter', '2022-11-12 05:31:04', '2022-11-12 05:31:53', '97.89.6.129', 'p8pnduaed92igclgoc5o0i1q3k', '2022-11-12 05:31:53');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('55', 'dylan', '2022-11-12 05:44:53', '2022-11-12 05:46:13', '68.205.153.222', '4kqodbujo0e6mufha5iuug9h2s', '2022-11-12 05:46:13');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('56', 'dylan', '2022-11-12 05:47:47', '2022-11-12 05:48:49', '97.89.6.129', '0rr61spideaprm8l4tvb7a3qs5', '2022-11-12 05:48:44');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('57', 'dylan', '2022-11-12 05:48:05', '2022-11-12 06:25:17', '68.205.153.222', '5suqekjeujala9tk53t1djqqps', '2022-11-12 06:25:17');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('58', 'winter', '2022-11-12 06:16:22', '2022-11-12 06:34:15', '97.89.6.129', '8iohekvbb90534vpcs50qeugqs', '2022-11-12 06:34:15');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('59', 'winter', '2022-11-12 07:33:51', '2022-11-12 07:46:45', '97.89.6.129', 'd6luv0hbv9f5utn1lvu5fbm4ep', '2022-11-12 07:46:45');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('60', 'winter', '2022-11-12 09:32:20', '2022-11-12 09:36:26', '97.89.6.129', '6l7gpl2qggj4emltrskui9o7oh', '2022-11-12 09:36:26');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('61', 'winter', '2022-11-12 18:36:29', '2022-11-12 18:37:02', '97.89.6.129', '9uc8q31n23vrplcg9hkjqdh1bq', '2022-11-12 18:37:02');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('62', 'winter', '2022-11-13 03:12:57', '2022-11-13 04:21:43', '97.89.6.129', '28qg51npo1pgbfvd0aspiij6ps', '2022-11-13 04:21:43');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('63', 'winter', '2022-11-13 07:07:00', '2022-11-13 08:18:36', '97.89.6.129', 'lol1eim78ruvav6cguff8o4gbk', '2022-11-13 08:18:36');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('64', 'winter', '2022-11-13 09:10:36', '2022-11-13 09:35:55', '97.89.6.129', 'lol1eim78ruvav6cguff8o4gbk', '2022-11-13 09:35:55');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('65', 'winter', '2022-11-13 09:53:36', '2022-11-13 09:59:45', '97.89.6.129', '1bp2ioismf2mnbcsv9mceqifip', '2022-11-13 09:59:45');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('66', 'winter', '2022-11-13 10:17:00', '2022-11-13 12:41:45', '97.89.6.129', '1bp2ioismf2mnbcsv9mceqifip', '2022-11-13 12:41:45');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('67', 'dylan', '2022-11-13 10:29:32', '2022-11-13 10:50:04', '68.205.153.222', 'altvjuttnfmdmd6okjkfkpomnr', '2022-11-13 10:50:04');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('68', 'dylan', '2022-11-13 11:05:27', '2022-11-13 11:21:40', '68.205.153.222', 'altvjuttnfmdmd6okjkfkpomnr', '2022-11-13 11:21:40');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('69', 'dylan', '2022-11-13 11:39:40', '0000-00-00 00:00:00', '68.205.153.222', 'altvjuttnfmdmd6okjkfkpomnr', '2022-11-13 12:01:20');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('70', 'dylan', '2022-11-13 13:37:24', '0000-00-00 00:00:00', '68.205.153.222', 'aq0grp36turt8i5d7n6ockti04', '2022-11-13 13:38:01');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('71', 'winter', '2022-11-13 21:59:45', '2022-11-13 22:00:10', '97.89.6.129', '1bp2ioismf2mnbcsv9mceqifip', '2022-11-13 22:00:10');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('72', 'winter', '2022-11-13 22:45:26', '2022-11-13 22:45:26', '97.89.6.129', '1bp2ioismf2mnbcsv9mceqifip', '2022-11-13 22:45:26');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('73', 'winter', '2022-11-14 07:10:35', '2022-11-14 07:13:36', '97.89.6.129', '8dgivsvchtvs8tn4p07btev2q6', '2022-11-14 07:13:36');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('74', 'winter', '2022-11-14 17:45:42', '2022-11-14 17:46:14', '97.89.6.129', '1bp2ioismf2mnbcsv9mceqifip', '2022-11-14 17:46:14');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('75', 'winter', '2022-11-14 19:48:31', '2022-11-14 19:48:31', '97.89.6.129', '1bp2ioismf2mnbcsv9mceqifip', '2022-11-14 19:48:31');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('76', 'winter', '2022-11-15 00:08:47', '2022-11-15 00:08:47', '97.89.6.129', '1bp2ioismf2mnbcsv9mceqifip', '2022-11-15 00:08:47');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('77', 'winter', '2022-11-15 08:21:02', '2022-11-15 08:21:03', '97.89.6.129', '1bp2ioismf2mnbcsv9mceqifip', '2022-11-15 08:21:03');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('78', 'winter', '2022-11-15 18:11:36', '2022-11-15 18:12:30', '97.89.6.129', 'm1164oh7km5t2egut2ovurf480', '2022-11-15 18:12:30');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('79', 'winter', '2022-11-15 19:29:38', '2022-11-15 19:30:20', '97.89.6.129', '1bp2ioismf2mnbcsv9mceqifip', '2022-11-15 19:30:20');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('80', 'winter', '2022-11-15 20:21:15', '2022-11-15 20:27:43', '97.89.6.129', '1bp2ioismf2mnbcsv9mceqifip', '2022-11-15 20:27:43');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('81', 'winter', '2022-11-15 21:27:54', '2022-11-15 21:29:13', '97.89.6.129', '1bp2ioismf2mnbcsv9mceqifip', '2022-11-15 21:29:13');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('82', 'winter', '2022-11-16 08:40:44', '2022-11-16 08:44:14', '97.89.6.129', 'kumdmnm791rt3ae23777pqou49', '2022-11-16 08:44:14');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('83', 'winter', '2022-11-16 09:35:18', '2022-11-16 09:35:41', '97.89.6.129', '1bp2ioismf2mnbcsv9mceqifip', '2022-11-16 09:35:41');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('84', 'winter', '2022-11-17 03:30:18', '2022-11-17 03:31:14', '97.89.6.129', '1bp2ioismf2mnbcsv9mceqifip', '2022-11-17 03:31:14');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('85', 'dylan', '2022-11-17 07:38:08', '2022-11-17 07:38:22', '68.205.153.222', 'q6q8s3d412to0ak8ggrrgottun', '2022-11-17 07:38:08');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('86', 'dylan', '2022-11-17 07:38:29', '0000-00-00 00:00:00', '68.205.153.222', 'tu8ai230smpcobmd4todrc8boa', '2022-11-17 07:38:29');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('87', 'dylan', '2022-11-17 08:00:18', '0000-00-00 00:00:00', '91.192.166.30', '40rpmg6aqmh9245g6e9e77daff', '2022-11-17 08:02:21');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('88', 'winter', '2022-11-18 20:29:52', '2022-11-18 20:29:53', '97.89.6.129', 'b9vhvq4i2pdl7qh7u956op1s9k', '2022-11-18 20:29:53');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('89', 'winter', '2022-11-18 20:29:57', '2022-11-18 20:31:21', '97.89.6.129', 'irb2e2dpr26ke49cr8diutcbmq', '2022-11-18 20:31:21');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('90', 'winter', '2022-11-20 17:00:06', '2022-11-20 17:00:06', '97.89.6.129', '04p7m683ufsoll40t3n18krn9q', '2022-11-20 17:00:06');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('91', 'winter', '2022-11-20 17:00:10', '2022-11-20 17:03:46', '97.89.6.129', 'mo2q3pijdj0mscrqden7pbgl2i', '2022-11-20 17:03:46');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('92', 'winter', '2022-11-20 17:54:25', '2022-11-20 17:56:08', '97.89.6.129', 'tg6o2a6c21dc469orue8fa4udr', '2022-11-20 17:56:08');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('93', 'dylan', '2022-11-23 04:14:07', '0000-00-00 00:00:00', '91.192.166.30', 'dc1kjfa9kuiqesi3kf669ban9p', '2022-11-23 04:38:27');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('94', 'winter', '2022-11-23 07:33:21', '2022-11-23 07:39:44', '97.89.6.129', 'mmsimhbj9talaj544d7nf3c4s4', '2022-11-23 07:39:44');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('95', 'winter', '2022-11-24 11:25:55', '2022-11-24 11:25:55', '2600:1700:2f80:38e0:b141:1c3a:1a86:7ee9', 'mbeqgakj1r577e3k5ujr4u7eh2', '2022-11-24 11:25:55');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('96', 'winter', '2022-11-24 11:25:59', '2022-11-24 11:28:49', '2600:1700:2f80:38e0:b141:1c3a:1a86:7ee9', 'f2n6picmevqo3ffstbu5n3r3oh', '2022-11-24 11:28:49');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('97', 'winter', '2022-11-24 20:56:28', '2022-11-24 20:56:29', '45.26.237.59', 'sovs2vee2b2u2cq3addehdsa26', '2022-11-24 20:56:29');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('98', 'winter', '2022-11-28 16:57:24', '2022-11-28 16:58:33', '97.89.6.129', 'tar2s12l9n9tj9mt1np5vk7u3l', '2022-11-28 16:58:33');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('99', 'winter', '2022-11-28 17:31:40', '2022-11-28 17:31:40', '97.89.6.129', 'tar2s12l9n9tj9mt1np5vk7u3l', '2022-11-28 17:31:40');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('100', 'winter', '2022-11-28 17:57:48', '2022-11-28 17:58:26', '97.89.6.129', 'tar2s12l9n9tj9mt1np5vk7u3l', '2022-11-28 17:58:26');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('101', 'winter', '2022-11-29 02:30:48', '2022-11-29 02:38:27', '97.89.6.129', 's69gqgnokv9to0c2o3d6v27njo', '2022-11-29 02:38:27');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('102', 'winter', '2022-12-02 21:05:10', '2022-12-02 21:06:39', '97.89.6.129', 'r67gj2iipl5bkh8d9b7162bg5i', '2022-12-02 21:06:39');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('103', 'winter', '2022-12-02 21:10:36', '2022-12-02 21:14:12', '97.89.6.129', 's6ue1hbhiacf89njghq7upvm4k', '2022-12-02 21:14:12');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('104', 'winter', '2022-12-02 21:14:47', '2022-12-02 21:33:13', '97.89.6.129', '60qj0sli5uvimgh1bioj4324pd', '2022-12-02 21:33:13');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('105', 'winter', '2022-12-02 21:25:42', '2022-12-02 21:58:05', '97.89.6.129', 'r67gj2iipl5bkh8d9b7162bg5i', '2022-12-02 21:58:05');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('106', 'winter', '2022-12-02 21:59:58', '2022-12-02 22:00:06', '97.89.6.129', '60qj0sli5uvimgh1bioj4324pd', '2022-12-02 22:00:06');INSERT INTO `tbladminlog` (`id`, `adminusername`, `logintime`, `logouttime`, `ipaddress`, `sessionid`, `lastvisit`) VALUES ('107', 'winter', '2022-12-03 03:47:18', '0000-00-00 00:00:00', '97.89.6.129', 'r67gj2iipl5bkh8d9b7162bg5i', '2022-12-03 04:10:51');/*!40000 ALTER TABLE `tbladminlog` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tbladminperms`--DROP TABLE IF EXISTS `tbladminperms`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tbladminperms` ( `id` int(10) NOT NULL AUTO_INCREMENT, `roleid` int(1) NOT NULL, `permid` int(1) NOT NULL, PRIMARY KEY (`id`), KEY `roleid_permid` (`roleid`,`permid`)) ENGINE=InnoDB AUTO_INCREMENT=477 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tbladminperms`--LOCK TABLES `tbladminperms` WRITE;/*!40000 ALTER TABLE `tbladminperms` DISABLE KEYS */;INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('1', '1', '1');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('2', '1', '2');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('3', '1', '3');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('4', '1', '4');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('5', '1', '5');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('6', '1', '6');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('7', '1', '7');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('8', '1', '8');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('9', '1', '9');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('10', '1', '10');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('11', '1', '11');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('12', '1', '12');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('13', '1', '13');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('14', '1', '14');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('15', '1', '15');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('16', '1', '16');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('17', '1', '17');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('18', '1', '18');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('19', '1', '19');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('20', '1', '20');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('21', '1', '21');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('22', '1', '22');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('23', '1', '23');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('24', '1', '24');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('25', '1', '25');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('26', '1', '26');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('27', '1', '27');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('28', '1', '28');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('29', '1', '29');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('30', '1', '30');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('31', '1', '31');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('32', '1', '32');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('33', '1', '33');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('34', '1', '34');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('35', '1', '35');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('36', '1', '36');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('37', '1', '37');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('38', '1', '38');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('39', '1', '39');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('40', '1', '40');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('41', '1', '41');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('42', '1', '42');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('43', '1', '43');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('44', '1', '44');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('45', '1', '45');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('46', '1', '46');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('47', '1', '47');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('48', '1', '49');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('49', '1', '50');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('50', '1', '51');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('51', '1', '52');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('52', '1', '53');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('53', '1', '54');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('54', '1', '55');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('55', '1', '56');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('56', '1', '57');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('57', '1', '58');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('58', '1', '59');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('59', '1', '60');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('60', '1', '61');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('61', '1', '62');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('62', '1', '63');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('63', '1', '64');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('64', '1', '65');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('65', '1', '66');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('66', '1', '67');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('67', '1', '68');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('68', '1', '69');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('69', '1', '70');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('70', '1', '71');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('71', '1', '72');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('72', '1', '73');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('73', '1', '74');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('74', '1', '75');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('75', '1', '76');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('76', '1', '77');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('77', '1', '78');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('78', '1', '79');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('79', '1', '80');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('80', '1', '81');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('81', '1', '82');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('82', '1', '83');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('83', '1', '84');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('84', '1', '85');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('85', '1', '86');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('86', '1', '87');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('87', '1', '88');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('88', '1', '89');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('89', '1', '90');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('90', '1', '91');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('91', '1', '92');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('92', '1', '93');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('93', '1', '94');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('94', '1', '95');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('95', '1', '96');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('96', '1', '97');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('97', '1', '98');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('98', '1', '99');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('99', '1', '100');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('100', '1', '101');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('101', '1', '102');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('102', '1', '103');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('103', '1', '104');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('104', '1', '105');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('105', '1', '106');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('106', '1', '107');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('107', '1', '108');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('108', '1', '109');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('109', '1', '110');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('110', '1', '111');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('111', '1', '112');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('112', '1', '113');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('113', '1', '114');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('114', '1', '115');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('115', '1', '116');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('116', '1', '117');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('117', '1', '118');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('118', '1', '119');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('119', '1', '120');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('120', '1', '122');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('121', '1', '123');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('122', '1', '124');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('123', '1', '125');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('124', '1', '125');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('125', '1', '126');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('126', '1', '126');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('127', '1', '127');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('128', '1', '128');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('129', '1', '129');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('130', '1', '131');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('131', '1', '132');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('132', '1', '133');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('133', '1', '134');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('134', '1', '135');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('135', '1', '136');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('136', '1', '137');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('137', '1', '138');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('138', '1', '139');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('139', '1', '139');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('140', '1', '140');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('141', '1', '141');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('142', '1', '142');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('143', '1', '143');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('144', '1', '144');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('145', '1', '145');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('146', '1', '146');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('231', '1', '147');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('232', '1', '148');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('233', '1', '149');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('245', '1', '150');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('246', '1', '151');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('247', '1', '152');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('248', '1', '153');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('249', '1', '154');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('250', '1', '155');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('251', '1', '156');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('252', '1', '157');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('397', '2', '1');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('398', '2', '3');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('399', '2', '4');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('400', '2', '5');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('401', '2', '6');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('402', '2', '7');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('403', '2', '8');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('406', '2', '9');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('409', '2', '10');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('411', '2', '11');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('412', '2', '12');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('414', '2', '13');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('415', '2', '14');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('416', '2', '15');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('417', '2', '16');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('418', '2', '17');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('420', '2', '18');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('421', '2', '19');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('422', '2', '21');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('423', '2', '22');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('424', '2', '23');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('425', '2', '24');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('426', '2', '25');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('427', '2', '26');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('428', '2', '27');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('429', '2', '28');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('430', '2', '29');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('431', '2', '30');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('432', '2', '31');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('443', '2', '32');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('433', '2', '33');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('434', '2', '34');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('437', '2', '35');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('438', '2', '36');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('442', '2', '37');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('445', '2', '38');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('446', '2', '39');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('447', '2', '40');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('448', '2', '41');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('449', '2', '42');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('451', '2', '43');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('453', '2', '45');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('454', '2', '46');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('456', '2', '47');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('457', '2', '49');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('458', '2', '50');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('459', '2', '51');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('460', '2', '52');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('461', '2', '58');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('462', '2', '59');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('464', '2', '66');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('465', '2', '71');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('470', '2', '72');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('472', '2', '73');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('473', '2', '74');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('474', '2', '75');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('476', '2', '81');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('444', '2', '85');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('440', '2', '89');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('441', '2', '90');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('439', '2', '92');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('419', '2', '98');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('413', '2', '99');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('455', '2', '101');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('471', '2', '102');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('404', '2', '104');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('450', '2', '105');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('475', '2', '110');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('467', '2', '116');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('468', '2', '117');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('469', '2', '118');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('466', '2', '119');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('405', '2', '120');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('410', '2', '123');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('436', '2', '124');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('452', '2', '125');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('407', '2', '128');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('408', '2', '129');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('463', '2', '142');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('435', '2', '149');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('217', '3', '3');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('218', '3', '38');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('219', '3', '39');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('220', '3', '40');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('221', '3', '41');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('222', '3', '42');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('223', '3', '43');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('224', '3', '44');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('225', '3', '50');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('226', '3', '105');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('227', '3', '125');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('228', '3', '125');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('229', '3', '126');INSERT INTO `tbladminperms` (`id`, `roleid`, `permid`) VALUES ('230', '3', '128');/*!40000 ALTER TABLE `tbladminperms` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tbladminroles`--DROP TABLE IF EXISTS `tbladminroles`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tbladminroles` ( `id` int(1) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `widgets` text NOT NULL, `reports` text NOT NULL, `systememails` int(1) NOT NULL, `accountemails` int(1) NOT NULL, `supportemails` int(1) NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tbladminroles`--LOCK TABLES `tbladminroles` WRITE;/*!40000 ALTER TABLE `tbladminroles` DISABLE KEYS */;INSERT INTO `tbladminroles` (`id`, `name`, `widgets`, `reports`, `systememails`, `accountemails`, `supportemails`) VALUES ('1', 'Full Administrator', 'activity_log,getting_started,income_forecast,income_overview,my_notes,network_status,open_invoices,orders_overview,paypal_addon,admin_activity,client_activity,system_overview,todo_list,whmcs_news,supporttickets_overview,calendar', '', '1', '1', '1');INSERT INTO `tbladminroles` (`id`, `name`, `widgets`, `reports`, `systememails`, `accountemails`, `supportemails`) VALUES ('2', 'Sales Operator', 'paypal_addon,staffboard_overview', '', '0', '0', '1');INSERT INTO `tbladminroles` (`id`, `name`, `widgets`, `reports`, `systememails`, `accountemails`, `supportemails`) VALUES ('3', 'Support Operator', 'activity_log,getting_started,my_notes,todo_list,whmcs_news,supporttickets_overview,calendar', '', '0', '0', '1');/*!40000 ALTER TABLE `tbladminroles` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tbladmins`--DROP TABLE IF EXISTS `tbladmins`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tbladmins` ( `id` int(10) NOT NULL AUTO_INCREMENT, `uuid` varchar(255) NOT NULL DEFAULT '', `roleid` int(1) NOT NULL, `username` text NOT NULL, `password` varchar(255) NOT NULL DEFAULT '', `passwordhash` varchar(255) NOT NULL DEFAULT '', `authmodule` text NOT NULL, `authdata` text NOT NULL, `firstname` text NOT NULL, `lastname` text NOT NULL, `email` text NOT NULL, `signature` text NOT NULL, `notes` text NOT NULL, `template` text NOT NULL, `language` text NOT NULL, `disabled` int(1) NOT NULL, `loginattempts` int(1) NOT NULL, `supportdepts` text NOT NULL, `ticketnotifications` text NOT NULL, `homewidgets` text NOT NULL, `password_reset_key` varchar(255) NOT NULL DEFAULT '', `password_reset_data` text NOT NULL, `password_reset_expiry` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `hidden_widgets` text NOT NULL, `widget_order` text NOT NULL, `user_preferences` mediumtext DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `username` (`username`(32))) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tbladmins`--LOCK TABLES `tbladmins` WRITE;/*!40000 ALTER TABLE `tbladmins` DISABLE KEYS */;INSERT INTO `tbladmins` (`id`, `uuid`, `roleid`, `username`, `password`, `passwordhash`, `authmodule`, `authdata`, `firstname`, `lastname`, `email`, `signature`, `notes`, `template`, `language`, `disabled`, `loginattempts`, `supportdepts`, `ticketnotifications`, `homewidgets`, `password_reset_key`, `password_reset_data`, `password_reset_expiry`, `hidden_widgets`, `widget_order`, `user_preferences`, `created_at`, `updated_at`) VALUES ('1', 'e73e5f32-347c-4dc4-b5a7-91e9d6433b1c', '1', 'winter', '$2y$10$4OJ2XLFZRHOPi6WNOHatI.lVQM7vepGS9T/oQfSUYQn/AYklfdOLS', '$2y$10$sBmfu7lqSL5Ef58Yai4gUuMdjng6Nc/SVxks8VpPOOdKPRdE/tqb6', 'totp', '{\"secret\":\"P2LJZR5QMF3VUZED\",\"backupcode\":\"8844886e0302b28071a445a97f27dd90694b965b\"}', 'Winter', 'Fe', 'winter@lunardev.group', '', '', 'blend', 'english', '0', '0', ',1,2,', '', 'getting_started:true,orders_overview:true,supporttickets_overview:true,my_notes:true,client_activity:true,open_invoices:true,activity_log:true|income_overview:true,system_overview:true,whmcs_news:true,sysinfo:true,admin_activity:true,todo_list:true,network_status:true,income_forecast:true|', '', '', '0000-00-00 00:00:00', ',MarketConnect,', ',Overview,Automation,Activity,Billing,Stripe,paypaloverview,ToDo,ClientActivity,MarketConnect,NetworkStatus,Staff,Support,Health,', '{\"tableLengths\":{\"default\":10,\"summaryServices\":\"1000\"}}', '0000-00-00 00:00:00', '2022-11-29 02:30:25');INSERT INTO `tbladmins` (`id`, `uuid`, `roleid`, `username`, `password`, `passwordhash`, `authmodule`, `authdata`, `firstname`, `lastname`, `email`, `signature`, `notes`, `template`, `language`, `disabled`, `loginattempts`, `supportdepts`, `ticketnotifications`, `homewidgets`, `password_reset_key`, `password_reset_data`, `password_reset_expiry`, `hidden_widgets`, `widget_order`, `user_preferences`, `created_at`, `updated_at`) VALUES ('2', 'd37f039b-ea40-4f7d-bb71-fe1fbba8ca78', '1', 'Motzumoto', '$2y$10$iAzhb2Exw.XgaDt/tSgf7e1/xF9OCM6r5gkTE99povQ8R3cul1sHe', '$2y$10$qBvv3ZlM.j/5J0Qg5x7S6um4sp4ldy7aLfxKvbFgMaZos79G484HC', '', '', 'Motzumoto', 'Lunar', 'cuztopher1e@gmail.com', '---\r\nMotzumoto#9773\r\n(Sales Administrator)', '', 'blend', 'english', '0', '0', ',1,2,', '1', '', '', '', '0000-00-00 00:00:00', '', ',Overview,Activity,Automation,ToDo,Billing,Stripe,Staff,MarketConnect,ClientActivity,NetworkStatus,Health,Support,', NULL, '2022-11-06 09:58:55', '2022-11-08 17:47:17');INSERT INTO `tbladmins` (`id`, `uuid`, `roleid`, `username`, `password`, `passwordhash`, `authmodule`, `authdata`, `firstname`, `lastname`, `email`, `signature`, `notes`, `template`, `language`, `disabled`, `loginattempts`, `supportdepts`, `ticketnotifications`, `homewidgets`, `password_reset_key`, `password_reset_data`, `password_reset_expiry`, `hidden_widgets`, `widget_order`, `user_preferences`, `created_at`, `updated_at`) VALUES ('3', '768f1f75-0b5c-4ca0-a007-f8f8329ed0f1', '1', 'dylan', '$2y$10$FlBWIJawEs5F7FRfT4EgveK95uewjYBcadWdT4pcaMFytES.sqjlG', '$2y$10$6ok2U6sAc2W.Eyo2o39qY.IBBcu53o8V80oXQfh2EUWmlPnx0U8xS', '', '', 'Dylan', 'James', 'dylan@tritan.dev', 'Dylan James\r\nTritan Development\r\ndylan@tritan.dev | 325-420-6669 x101\r\ntritan.gg', '', 'blend', 'english', '0', '0', '1,2', '1,2', '', '', '', '0000-00-00 00:00:00', '', '', NULL, '2022-11-11 21:41:03', '2022-11-13 11:41:01');/*!40000 ALTER TABLE `tbladmins` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tbladminsecurityquestions`--DROP TABLE IF EXISTS `tbladminsecurityquestions`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tbladminsecurityquestions` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `question` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tbladminsecurityquestions`--LOCK TABLES `tbladminsecurityquestions` WRITE;/*!40000 ALTER TABLE `tbladminsecurityquestions` DISABLE KEYS */;/*!40000 ALTER TABLE `tbladminsecurityquestions` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblaffiliates`--DROP TABLE IF EXISTS `tblaffiliates`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblaffiliates` ( `id` int(10) NOT NULL AUTO_INCREMENT, `date` date DEFAULT NULL, `clientid` int(10) NOT NULL, `visitors` int(1) NOT NULL, `paytype` text NOT NULL, `payamount` decimal(16,2) NOT NULL, `onetime` int(1) NOT NULL, `balance` decimal(16,2) NOT NULL DEFAULT 0.00, `withdrawn` decimal(16,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `clientid` (`clientid`)) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblaffiliates`--LOCK TABLES `tblaffiliates` WRITE;/*!40000 ALTER TABLE `tblaffiliates` DISABLE KEYS */;INSERT INTO `tblaffiliates` (`id`, `date`, `clientid`, `visitors`, `paytype`, `payamount`, `onetime`, `balance`, `withdrawn`, `created_at`, `updated_at`) VALUES ('1', '2022-11-06', '1', '1', '', '0.00', '0', '0.00', '0.00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliates` (`id`, `date`, `clientid`, `visitors`, `paytype`, `payamount`, `onetime`, `balance`, `withdrawn`, `created_at`, `updated_at`) VALUES ('2', '2022-11-06', '2', '10', '', '0.00', '0', '0.50', '0.00', '0000-00-00 00:00:00', '2022-12-02 00:00:04');INSERT INTO `tblaffiliates` (`id`, `date`, `clientid`, `visitors`, `paytype`, `payamount`, `onetime`, `balance`, `withdrawn`, `created_at`, `updated_at`) VALUES ('3', '2022-11-06', '4', '4', '', '0.00', '0', '0.00', '0.00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliates` (`id`, `date`, `clientid`, `visitors`, `paytype`, `payamount`, `onetime`, `balance`, `withdrawn`, `created_at`, `updated_at`) VALUES ('4', '2022-11-06', '5', '1', '', '0.00', '0', '0.00', '0.00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliates` (`id`, `date`, `clientid`, `visitors`, `paytype`, `payamount`, `onetime`, `balance`, `withdrawn`, `created_at`, `updated_at`) VALUES ('5', '2022-11-13', '8', '0', '', '0.00', '0', '0.00', '0.00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');/*!40000 ALTER TABLE `tblaffiliates` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblaffiliates_hits`--DROP TABLE IF EXISTS `tblaffiliates_hits`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblaffiliates_hits` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `affiliate_id` int(10) unsigned NOT NULL DEFAULT 0, `referrer_id` int(10) unsigned NOT NULL DEFAULT 0, `created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `affiliate_id` (`affiliate_id`,`referrer_id`)) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblaffiliates_hits`--LOCK TABLES `tblaffiliates_hits` WRITE;/*!40000 ALTER TABLE `tblaffiliates_hits` DISABLE KEYS */;INSERT INTO `tblaffiliates_hits` (`id`, `affiliate_id`, `referrer_id`, `created_at`) VALUES ('1', '2', '1', '2022-11-06 06:02:02');INSERT INTO `tblaffiliates_hits` (`id`, `affiliate_id`, `referrer_id`, `created_at`) VALUES ('2', '2', '2', '2022-11-06 06:03:11');INSERT INTO `tblaffiliates_hits` (`id`, `affiliate_id`, `referrer_id`, `created_at`) VALUES ('3', '2', '2', '2022-11-06 06:03:17');INSERT INTO `tblaffiliates_hits` (`id`, `affiliate_id`, `referrer_id`, `created_at`) VALUES ('4', '2', '1', '2022-11-06 06:03:18');INSERT INTO `tblaffiliates_hits` (`id`, `affiliate_id`, `referrer_id`, `created_at`) VALUES ('5', '2', '1', '2022-11-06 06:03:24');INSERT INTO `tblaffiliates_hits` (`id`, `affiliate_id`, `referrer_id`, `created_at`) VALUES ('6', '1', '3', '2022-11-06 06:03:25');INSERT INTO `tblaffiliates_hits` (`id`, `affiliate_id`, `referrer_id`, `created_at`) VALUES ('7', '2', '1', '2022-11-06 06:03:44');INSERT INTO `tblaffiliates_hits` (`id`, `affiliate_id`, `referrer_id`, `created_at`) VALUES ('8', '2', '1', '2022-11-06 06:04:38');INSERT INTO `tblaffiliates_hits` (`id`, `affiliate_id`, `referrer_id`, `created_at`) VALUES ('9', '2', '2', '2022-11-06 10:15:01');INSERT INTO `tblaffiliates_hits` (`id`, `affiliate_id`, `referrer_id`, `created_at`) VALUES ('10', '3', '4', '2022-11-06 10:15:16');INSERT INTO `tblaffiliates_hits` (`id`, `affiliate_id`, `referrer_id`, `created_at`) VALUES ('11', '3', '4', '2022-11-06 10:15:41');INSERT INTO `tblaffiliates_hits` (`id`, `affiliate_id`, `referrer_id`, `created_at`) VALUES ('12', '3', '4', '2022-11-06 10:15:48');INSERT INTO `tblaffiliates_hits` (`id`, `affiliate_id`, `referrer_id`, `created_at`) VALUES ('13', '3', '4', '2022-11-06 10:15:58');INSERT INTO `tblaffiliates_hits` (`id`, `affiliate_id`, `referrer_id`, `created_at`) VALUES ('14', '2', '2', '2022-11-06 10:19:26');INSERT INTO `tblaffiliates_hits` (`id`, `affiliate_id`, `referrer_id`, `created_at`) VALUES ('15', '4', '5', '2022-11-06 10:19:37');INSERT INTO `tblaffiliates_hits` (`id`, `affiliate_id`, `referrer_id`, `created_at`) VALUES ('16', '2', '2', '2022-11-13 03:19:21');/*!40000 ALTER TABLE `tblaffiliates_hits` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblaffiliates_referrers`--DROP TABLE IF EXISTS `tblaffiliates_referrers`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblaffiliates_referrers` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `affiliate_id` int(10) unsigned NOT NULL DEFAULT 0, `referrer` varchar(500) NOT NULL DEFAULT '', `created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `affiliate_id` (`affiliate_id`)) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblaffiliates_referrers`--LOCK TABLES `tblaffiliates_referrers` WRITE;/*!40000 ALTER TABLE `tblaffiliates_referrers` DISABLE KEYS */;INSERT INTO `tblaffiliates_referrers` (`id`, `affiliate_id`, `referrer`, `created_at`, `updated_at`) VALUES ('1', '2', '', '2022-11-06 06:02:02', '2022-11-06 06:02:02');INSERT INTO `tblaffiliates_referrers` (`id`, `affiliate_id`, `referrer`, `created_at`, `updated_at`) VALUES ('2', '2', 'https://user.lunardev.group/affiliates.php', '2022-11-06 06:03:11', '2022-11-06 06:03:11');INSERT INTO `tblaffiliates_referrers` (`id`, `affiliate_id`, `referrer`, `created_at`, `updated_at`) VALUES ('3', '1', '', '2022-11-06 06:03:25', '2022-11-06 06:03:25');INSERT INTO `tblaffiliates_referrers` (`id`, `affiliate_id`, `referrer`, `created_at`, `updated_at`) VALUES ('4', '3', '', '2022-11-06 10:15:16', '2022-11-06 10:15:16');INSERT INTO `tblaffiliates_referrers` (`id`, `affiliate_id`, `referrer`, `created_at`, `updated_at`) VALUES ('5', '4', '', '2022-11-06 10:19:37', '2022-11-06 10:19:37');/*!40000 ALTER TABLE `tblaffiliates_referrers` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblaffiliatesaccounts`--DROP TABLE IF EXISTS `tblaffiliatesaccounts`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblaffiliatesaccounts` ( `id` int(10) NOT NULL AUTO_INCREMENT, `affiliateid` int(10) NOT NULL, `relid` int(10) NOT NULL, `lastpaid` date NOT NULL DEFAULT '0000-00-00', `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `affiliateid` (`affiliateid`)) ENGINE=InnoDB AUTO_INCREMENT=508 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblaffiliatesaccounts`--LOCK TABLES `tblaffiliatesaccounts` WRITE;/*!40000 ALTER TABLE `tblaffiliatesaccounts` DISABLE KEYS */;INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('1', '2', '14', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 03:20:14');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('2', '2', '15', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:01');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('3', '2', '16', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:04');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('4', '2', '17', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:06');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('5', '2', '18', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:07');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('6', '2', '19', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:08');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('7', '2', '20', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:11');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('8', '2', '21', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:13');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('9', '2', '22', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:15');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('10', '2', '23', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:17');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('11', '2', '24', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:20');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('12', '2', '25', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:22');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('13', '2', '26', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:24');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('14', '2', '27', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:25');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('15', '2', '28', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:27');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('16', '2', '29', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:28');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('17', '2', '30', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:30');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('18', '2', '31', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:32');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('19', '2', '32', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:34');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('20', '2', '33', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:36');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('21', '2', '34', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:38');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('22', '2', '35', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:40');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('23', '2', '36', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:42');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('24', '2', '37', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:43');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('25', '2', '38', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:45');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('26', '2', '39', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:46');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('27', '2', '40', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:48');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('28', '2', '41', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:50');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('29', '2', '42', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:52');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('30', '2', '43', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:53');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('31', '2', '44', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:55');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('32', '2', '45', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:57');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('33', '2', '46', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:30:59');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('34', '2', '47', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('35', '2', '48', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:02');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('36', '2', '49', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:04');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('37', '2', '50', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:05');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('38', '2', '51', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:07');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('39', '2', '52', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:09');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('40', '2', '53', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:11');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('41', '2', '54', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:12');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('42', '2', '55', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:16');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('43', '2', '56', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:18');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('44', '2', '57', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:19');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('45', '2', '58', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:21');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('46', '2', '59', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:23');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('47', '2', '60', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:24');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('48', '2', '61', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:26');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('49', '2', '62', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:28');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('50', '2', '63', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:30');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('51', '2', '64', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:32');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('52', '2', '65', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:34');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('53', '2', '66', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:35');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('54', '2', '67', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:37');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('55', '2', '68', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:39');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('56', '2', '69', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:40');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('57', '2', '70', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:42');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('58', '2', '71', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:44');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('59', '2', '72', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:46');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('60', '2', '73', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:48');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('61', '2', '74', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:50');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('62', '2', '75', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:51');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('63', '2', '76', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:52');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('64', '2', '77', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:53');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('65', '2', '78', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:55');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('66', '2', '79', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:56');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('67', '2', '80', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:57');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('68', '2', '81', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:31:58');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('69', '2', '82', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('70', '2', '83', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:01');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('71', '2', '84', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:02');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('72', '2', '85', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:03');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('73', '2', '86', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:04');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('74', '2', '87', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:06');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('75', '2', '88', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:07');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('76', '2', '89', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:09');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('77', '2', '90', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:11');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('78', '2', '91', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:12');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('79', '2', '92', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:13');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('80', '2', '93', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:14');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('81', '2', '94', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:16');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('82', '2', '95', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:17');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('83', '2', '96', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:18');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('84', '2', '97', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:19');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('85', '2', '98', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:20');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('86', '2', '99', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:21');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('87', '2', '100', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:23');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('88', '2', '101', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:24');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('89', '2', '102', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:25');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('90', '2', '103', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:26');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('91', '2', '104', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:28');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('92', '2', '105', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:29');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('93', '2', '106', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:30');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('94', '2', '107', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:41');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('95', '2', '108', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:32:52');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('96', '2', '109', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:33:02');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('97', '2', '110', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:33:13');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('98', '2', '111', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:33:24');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('99', '2', '112', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:33:35');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('100', '2', '113', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:33:45');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('101', '2', '114', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:33:56');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('102', '2', '115', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:34:07');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('103', '2', '116', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:34:18');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('104', '2', '117', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:34:28');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('105', '2', '118', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:34:39');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('106', '2', '119', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:34:50');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('107', '2', '120', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:35:01');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('108', '2', '121', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:35:12');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('109', '2', '122', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:35:22');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('110', '2', '123', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:35:33');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('111', '2', '124', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:35:44');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('112', '2', '125', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:35:54');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('113', '2', '126', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:36:05');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('114', '2', '127', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:36:17');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('115', '2', '128', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:36:28');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('116', '2', '129', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:36:39');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('117', '2', '130', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:36:50');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('118', '2', '131', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:37:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('119', '2', '132', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:37:11');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('120', '2', '133', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:37:22');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('121', '2', '134', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:37:33');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('122', '2', '135', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:37:43');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('123', '2', '136', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:37:54');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('124', '2', '137', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:38:05');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('125', '2', '138', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:38:17');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('126', '2', '139', '2022-11-13', '0000-00-00 00:00:00', '2022-11-13 07:38:28');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('127', '2', '140', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('128', '2', '141', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('129', '2', '142', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('130', '2', '143', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('131', '2', '144', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('132', '2', '145', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('133', '2', '146', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('134', '2', '147', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('135', '2', '148', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('136', '2', '149', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('137', '2', '150', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('138', '2', '151', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('139', '2', '152', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('140', '2', '153', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('141', '2', '154', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('142', '2', '155', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('143', '2', '156', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('144', '2', '157', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('145', '2', '158', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('146', '2', '159', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('147', '2', '160', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('148', '2', '161', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('149', '2', '162', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('150', '2', '163', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('151', '2', '164', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('152', '2', '165', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('153', '2', '166', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('154', '2', '167', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('155', '2', '168', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('156', '2', '169', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('157', '2', '170', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('158', '2', '171', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('159', '2', '172', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('160', '2', '173', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('161', '2', '174', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('162', '2', '175', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('163', '2', '176', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('164', '2', '177', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('165', '2', '178', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('166', '2', '179', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('167', '2', '180', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('168', '2', '181', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('169', '2', '182', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('170', '2', '183', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('171', '2', '184', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('172', '2', '185', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('173', '2', '186', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('174', '2', '187', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('175', '2', '188', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('176', '2', '189', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('177', '2', '190', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('178', '2', '191', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('179', '2', '192', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('180', '2', '193', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('181', '2', '194', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('182', '2', '195', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('183', '2', '196', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('184', '2', '197', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('185', '2', '198', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('186', '2', '199', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('187', '2', '200', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('188', '2', '201', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('189', '2', '202', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('190', '2', '203', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('191', '2', '204', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('192', '2', '205', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('193', '2', '206', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('194', '2', '207', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('195', '2', '208', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('196', '2', '209', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('197', '2', '210', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('198', '2', '211', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('199', '2', '212', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('200', '2', '213', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('201', '2', '214', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('202', '2', '215', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('203', '2', '216', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('204', '2', '217', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('205', '2', '218', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('206', '2', '219', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('207', '2', '220', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('208', '2', '221', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('209', '2', '222', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('210', '2', '223', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('211', '2', '224', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('212', '2', '225', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('213', '2', '226', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('214', '2', '227', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('215', '2', '228', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('216', '2', '229', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('217', '2', '230', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('218', '2', '231', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('219', '2', '232', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('220', '2', '233', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('221', '2', '234', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('222', '2', '235', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('223', '2', '236', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('224', '2', '237', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('225', '2', '238', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('226', '2', '239', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('227', '2', '240', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('228', '2', '241', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('229', '2', '242', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('230', '2', '243', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('231', '2', '244', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('232', '2', '245', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('233', '2', '246', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('234', '2', '247', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('235', '2', '248', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('236', '2', '249', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('237', '2', '250', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('238', '2', '251', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('239', '2', '252', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('240', '2', '253', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('241', '2', '254', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('242', '2', '255', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('243', '2', '256', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('244', '2', '257', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('245', '2', '258', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('246', '2', '259', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('247', '2', '260', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('248', '2', '261', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('249', '2', '262', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('250', '2', '263', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('251', '2', '264', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('252', '2', '265', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('253', '2', '266', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('254', '2', '267', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('255', '2', '268', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('256', '2', '269', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('257', '2', '270', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('258', '2', '271', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('259', '2', '272', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('260', '2', '273', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('261', '2', '274', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('262', '2', '275', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('263', '2', '276', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('264', '2', '277', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('265', '2', '278', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('266', '2', '279', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('267', '2', '280', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('268', '2', '281', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('269', '2', '282', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('270', '2', '283', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('271', '2', '284', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('272', '2', '285', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('273', '2', '286', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('274', '2', '287', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('275', '2', '288', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('276', '2', '289', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('277', '2', '290', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('278', '2', '291', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('279', '2', '292', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('280', '2', '293', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('281', '2', '294', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('282', '2', '295', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('283', '2', '296', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('284', '2', '297', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('285', '2', '298', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('286', '2', '299', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('287', '2', '300', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('288', '2', '301', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('289', '2', '302', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('290', '2', '303', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('291', '2', '304', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('292', '2', '305', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('293', '2', '306', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('294', '2', '307', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('295', '2', '308', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('296', '2', '309', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('297', '2', '310', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('298', '2', '311', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('299', '2', '312', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('300', '2', '313', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('301', '2', '314', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('302', '2', '315', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('303', '2', '316', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('304', '2', '317', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('305', '2', '318', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('306', '2', '319', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('307', '2', '320', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('308', '2', '321', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('309', '2', '322', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('310', '2', '323', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('311', '2', '324', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('312', '2', '325', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('313', '2', '326', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('314', '2', '327', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('315', '2', '328', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('316', '2', '329', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('317', '2', '330', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('318', '2', '331', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('319', '2', '332', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('320', '2', '333', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('321', '2', '334', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('322', '2', '335', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('323', '2', '336', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('324', '2', '337', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('325', '2', '338', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('326', '2', '339', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('327', '2', '340', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('328', '2', '341', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('329', '2', '342', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('330', '2', '343', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('331', '2', '344', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('332', '2', '345', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('333', '2', '346', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('334', '2', '347', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('335', '2', '348', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('336', '2', '349', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('337', '2', '350', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('338', '2', '351', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('339', '2', '352', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('340', '2', '353', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('341', '2', '354', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('342', '2', '355', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('343', '2', '356', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('344', '2', '357', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('345', '2', '358', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('346', '2', '359', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('347', '2', '360', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('348', '2', '361', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('349', '2', '362', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('350', '2', '363', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('351', '2', '364', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('352', '2', '365', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('353', '2', '366', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('354', '2', '367', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('355', '2', '368', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('356', '2', '369', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('357', '2', '370', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('358', '2', '371', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('359', '2', '372', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('360', '2', '373', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('361', '2', '374', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('362', '2', '375', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('363', '2', '376', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('364', '2', '377', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('365', '2', '378', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('366', '2', '379', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('367', '2', '380', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('368', '2', '381', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('369', '2', '382', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('370', '2', '383', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('371', '2', '384', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('372', '2', '385', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('373', '2', '386', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('374', '2', '387', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('375', '2', '388', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('376', '2', '389', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('377', '2', '390', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('378', '2', '391', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('379', '2', '392', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('380', '2', '393', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('381', '2', '394', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('382', '2', '395', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('383', '2', '396', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('384', '2', '397', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('385', '2', '398', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('386', '2', '399', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('387', '2', '400', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('388', '2', '401', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('389', '2', '402', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('390', '2', '403', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('391', '2', '404', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('392', '2', '405', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('393', '2', '406', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('394', '2', '407', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('395', '2', '408', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('396', '2', '409', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('397', '2', '410', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('398', '2', '411', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('399', '2', '412', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('400', '2', '413', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('401', '2', '414', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('402', '2', '415', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('403', '2', '416', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('404', '2', '417', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('405', '2', '418', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('406', '2', '419', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('407', '2', '420', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('408', '2', '421', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('409', '2', '422', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('410', '2', '423', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('411', '2', '424', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('412', '2', '425', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('413', '2', '426', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('414', '2', '427', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('415', '2', '428', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('416', '2', '429', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('417', '2', '430', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('418', '2', '431', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('419', '2', '432', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('420', '2', '433', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('421', '2', '434', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('422', '2', '435', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('423', '2', '436', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('424', '2', '437', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('425', '2', '438', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('426', '2', '439', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('427', '2', '440', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('428', '2', '441', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('429', '2', '442', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('430', '2', '443', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('431', '2', '444', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('432', '2', '445', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('433', '2', '446', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('434', '2', '447', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('435', '2', '448', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('436', '2', '449', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('437', '2', '450', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('438', '2', '451', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('439', '2', '452', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('440', '2', '453', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('441', '2', '454', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('442', '2', '455', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('443', '2', '456', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('444', '2', '457', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('445', '2', '458', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('446', '2', '459', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('447', '2', '460', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('448', '2', '461', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('449', '2', '462', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('450', '2', '463', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('451', '2', '464', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('452', '2', '465', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('453', '2', '466', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('454', '2', '467', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('455', '2', '468', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('456', '2', '469', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('457', '2', '470', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('458', '2', '471', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('459', '2', '472', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('460', '2', '473', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('461', '2', '474', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('462', '2', '475', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('463', '2', '476', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('464', '2', '477', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('465', '2', '478', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('466', '2', '479', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('467', '2', '480', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('468', '2', '481', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('469', '2', '482', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('470', '2', '483', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('471', '2', '484', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('472', '2', '485', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('473', '2', '486', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('474', '2', '487', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('475', '2', '488', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('476', '2', '489', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('477', '2', '490', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('478', '2', '491', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('479', '2', '492', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('480', '2', '493', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('481', '2', '494', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('482', '2', '495', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('483', '2', '496', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('484', '2', '497', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('485', '2', '498', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('486', '2', '499', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('487', '2', '500', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('488', '2', '501', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('489', '2', '502', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('490', '2', '503', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('491', '2', '504', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('492', '2', '505', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('493', '2', '506', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('494', '2', '507', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('495', '2', '508', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('496', '2', '509', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('497', '2', '510', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('498', '2', '511', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('499', '2', '512', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('500', '2', '513', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('501', '2', '514', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('502', '2', '515', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('503', '2', '516', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('504', '2', '517', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('505', '2', '518', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('506', '2', '519', '0000-00-00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblaffiliatesaccounts` (`id`, `affiliateid`, `relid`, `lastpaid`, `created_at`, `updated_at`) VALUES ('507', '2', '520', '2022-12-02', '0000-00-00 00:00:00', '2022-12-02 00:00:04');/*!40000 ALTER TABLE `tblaffiliatesaccounts` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblaffiliateshistory`--DROP TABLE IF EXISTS `tblaffiliateshistory`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblaffiliateshistory` ( `id` int(10) NOT NULL AUTO_INCREMENT, `affiliateid` int(10) NOT NULL, `date` date NOT NULL, `affaccid` int(10) NOT NULL, `invoice_id` int(10) unsigned NOT NULL DEFAULT 0, `description` text NOT NULL, `amount` decimal(16,2) NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `affiliateid` (`affiliateid`)) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblaffiliateshistory`--LOCK TABLES `tblaffiliateshistory` WRITE;/*!40000 ALTER TABLE `tblaffiliateshistory` DISABLE KEYS */;INSERT INTO `tblaffiliateshistory` (`id`, `affiliateid`, `date`, `affaccid`, `invoice_id`, `description`, `amount`, `created_at`, `updated_at`) VALUES ('1', '2', '2022-11-16', '507', '18', '', '0.25', '2022-11-16 00:00:04', '2022-11-16 00:00:04');INSERT INTO `tblaffiliateshistory` (`id`, `affiliateid`, `date`, `affaccid`, `invoice_id`, `description`, `amount`, `created_at`, `updated_at`) VALUES ('2', '2', '2022-12-02', '507', '20', '', '0.25', '2022-12-02 00:00:04', '2022-12-02 00:00:04');/*!40000 ALTER TABLE `tblaffiliateshistory` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblaffiliatespending`--DROP TABLE IF EXISTS `tblaffiliatespending`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblaffiliatespending` ( `id` int(10) NOT NULL AUTO_INCREMENT, `affaccid` int(10) NOT NULL DEFAULT 0, `invoice_id` int(10) unsigned NOT NULL DEFAULT 0, `amount` decimal(16,2) NOT NULL, `clearingdate` date NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `clearingdate` (`clearingdate`)) ENGINE=InnoDB AUTO_INCREMENT=129 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblaffiliatespending`--LOCK TABLES `tblaffiliatespending` WRITE;/*!40000 ALTER TABLE `tblaffiliatespending` DISABLE KEYS */;/*!40000 ALTER TABLE `tblaffiliatespending` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblaffiliateswithdrawals`--DROP TABLE IF EXISTS `tblaffiliateswithdrawals`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblaffiliateswithdrawals` ( `id` int(10) NOT NULL AUTO_INCREMENT, `affiliateid` int(10) NOT NULL, `date` date NOT NULL, `amount` decimal(16,2) NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `affiliateid` (`affiliateid`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblaffiliateswithdrawals`--LOCK TABLES `tblaffiliateswithdrawals` WRITE;/*!40000 ALTER TABLE `tblaffiliateswithdrawals` DISABLE KEYS */;/*!40000 ALTER TABLE `tblaffiliateswithdrawals` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblannouncements`--DROP TABLE IF EXISTS `tblannouncements`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblannouncements` ( `id` int(10) NOT NULL AUTO_INCREMENT, `date` datetime DEFAULT NULL, `title` text NOT NULL, `announcement` text NOT NULL, `published` tinyint(1) NOT NULL, `parentid` int(10) NOT NULL, `language` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `date` (`date`)) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblannouncements`--LOCK TABLES `tblannouncements` WRITE;/*!40000 ALTER TABLE `tblannouncements` DISABLE KEYS */;INSERT INTO `tblannouncements` (`id`, `date`, `title`, `announcement`, `published`, `parentid`, `language`, `created_at`, `updated_at`) VALUES ('2', '2022-11-06 11:23:00', 'Opening Promotional Code', '<p>As we\'ve just launched this today, I decided to open a promotional code lasting until <strong>December 6th </strong></p>\r\n<p><span style=\"text-decoration: underline;\">Eligibility requirements: </span></p>\r\n<ul>\r\n<li>New customers only</li>\r\n<li>Applicable once per client globally</li>\r\n</ul>\r\n<p><br />Promo code: <strong>welcome</strong> <br />- <strong>20% off all orders!</strong></p>', '1', '0', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');/*!40000 ALTER TABLE `tblannouncements` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblapi_roles`--DROP TABLE IF EXISTS `tblapi_roles`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblapi_roles` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `role` varchar(255) NOT NULL DEFAULT '', `description` varchar(255) NOT NULL DEFAULT '', `permissions` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblapi_roles`--LOCK TABLES `tblapi_roles` WRITE;/*!40000 ALTER TABLE `tblapi_roles` DISABLE KEYS */;INSERT INTO `tblapi_roles` (`id`, `role`, `description`, `permissions`, `created_at`, `updated_at`) VALUES ('1', 'Admin', '', '{\"acceptorder\":1,\"acceptquote\":1,\"activatemodule\":1,\"addannouncement\":1,\"addbannedip\":1,\"addbillableitem\":1,\"addcancelrequest\":1,\"addclient\":1,\"addclientnote\":1,\"addcontact\":1,\"addcredit\":1,\"addinvoicepayment\":1,\"addorder\":1,\"addpaymethod\":1,\"addproduct\":1,\"addprojectmessage\":1,\"addprojecttask\":1,\"addticketnote\":1,\"addticketreply\":1,\"addtransaction\":1,\"adduser\":1,\"affiliateactivate\":1,\"blockticketsender\":1,\"applycredit\":1,\"cancelorder\":1,\"capturepayment\":1,\"closeclient\":1,\"createclientinvite\":1,\"createssotoken\":1,\"createinvoice\":1,\"createoauthcredential\":1,\"createorupdatetld\":1,\"createproject\":1,\"createquote\":1,\"deactivatemodule\":1,\"decryptpassword\":1,\"deleteannouncement\":1,\"deleteclient\":1,\"deletecontact\":1,\"deleteoauthcredential\":1,\"deleteorder\":1,\"deletepaymethod\":1,\"deleteprojecttask\":1,\"deletequote\":1,\"deleteticket\":1,\"deleteticketnote\":1,\"deleteticketreply\":1,\"deleteuserclient\":1,\"domaingetlockingstatus\":1,\"domaingetnameservers\":1,\"domaingetwhoisinfo\":1,\"domainregister\":1,\"domainrelease\":1,\"domainrenew\":1,\"domainrequestepp\":1,\"domaintoggleidprotect\":1,\"domaintransfer\":1,\"domainupdatelockingstatus\":1,\"domainupdatenameservers\":1,\"domainupdatewhoisinfo\":1,\"domainwhois\":1,\"encryptpassword\":1,\"endtasktimer\":1,\"fraudorder\":1,\"geninvoices\":1,\"getactivitylog\":1,\"getadmindetails\":1,\"getadminusers\":1,\"getaffiliates\":1,\"getannouncements\":1,\"getautomationlog\":1,\"getcancelledpackages\":1,\"getclientgroups\":1,\"getclientpassword\":1,\"getclients\":1,\"getclientsaddons\":1,\"getclientsdetails\":1,\"getclientsdomains\":1,\"getclientsproducts\":1,\"getconfigurationvalue\":1,\"getcontacts\":1,\"getcredits\":1,\"getcurrencies\":1,\"getemails\":1,\"getemailtemplates\":1,\"gethealthstatus\":1,\"getinvoice\":1,\"getinvoices\":1,\"getmoduleconfigurationparameters\":1,\"getmodulequeue\":1,\"getorders\":1,\"getorderstatuses\":1,\"getpaymentmethods\":1,\"getpaymethods\":1,\"getpermissionslist\":1,\"getproducts\":1,\"getproject\":1,\"getprojects\":1,\"getpromotions\":1,\"getquotes\":1,\"getregistrars\":1,\"getservers\":1,\"getstaffonline\":1,\"getstats\":1,\"getsupportdepartments\":1,\"getsupportstatuses\":1,\"getticket\":1,\"getticketattachment\":1,\"getticketcounts\":1,\"getticketnotes\":1,\"getticketpredefinedcats\":1,\"getticketpredefinedreplies\":1,\"gettickets\":1,\"gettldpricing\":1,\"gettodoitems\":1,\"gettodoitemstatuses\":1,\"gettransactions\":1,\"getuserpermissions\":1,\"listoauthcredentials\":1,\"logactivity\":1,\"mergeticket\":1,\"modulechangepackage\":1,\"modulechangepw\":1,\"modulecreate\":1,\"modulecustom\":1,\"modulesuspend\":1,\"moduleterminate\":1,\"moduleunsuspend\":1,\"openticket\":1,\"orderfraudcheck\":1,\"pendingorder\":1,\"resetpassword\":1,\"sendadminemail\":1,\"sendemail\":1,\"sendquote\":1,\"starttasktimer\":1,\"triggernotificationevent\":1,\"updateadminnotes\":1,\"updateannouncement\":1,\"updateclient\":1,\"updateclientaddon\":1,\"updateclientdomain\":1,\"updateclientproduct\":1,\"updatecontact\":1,\"updateinvoice\":1,\"updatemoduleconfiguration\":1,\"updateoauthcredential\":1,\"updatepaymethod\":1,\"updateproject\":1,\"updateprojecttask\":1,\"updatequote\":1,\"updateticket\":1,\"updateticketreply\":1,\"updatetodoitem\":1,\"updatetransaction\":1,\"updateuser\":1,\"updateuserpermissions\":1,\"upgradeproduct\":1,\"validatelogin\":1,\"whmcsdetails\":1,\"getusers\":1}', '2022-11-06 09:19:28', '2022-11-06 09:19:28');/*!40000 ALTER TABLE `tblapi_roles` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblapilog`--DROP TABLE IF EXISTS `tblapilog`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblapilog` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `action` varchar(255) NOT NULL DEFAULT '', `endpoint` varchar(255) DEFAULT NULL, `method` enum('GET','POST','PUT','PATCH','DELETE') DEFAULT NULL, `request` text NOT NULL, `request_headers` text DEFAULT NULL, `response` text NOT NULL, `response_status` int(11) NOT NULL DEFAULT 0, `response_headers` text NOT NULL, `level` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblapilog`--LOCK TABLES `tblapilog` WRITE;/*!40000 ALTER TABLE `tblapilog` DISABLE KEYS */;/*!40000 ALTER TABLE `tblapilog` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblapplinks`--DROP TABLE IF EXISTS `tblapplinks`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblapplinks` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `module_type` varchar(20) NOT NULL DEFAULT '', `module_name` varchar(50) NOT NULL DEFAULT '', `is_enabled` tinyint(4) NOT NULL DEFAULT 0, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblapplinks`--LOCK TABLES `tblapplinks` WRITE;/*!40000 ALTER TABLE `tblapplinks` DISABLE KEYS */;/*!40000 ALTER TABLE `tblapplinks` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblapplinks_links`--DROP TABLE IF EXISTS `tblapplinks_links`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblapplinks_links` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `applink_id` int(10) unsigned NOT NULL DEFAULT 0, `scope` varchar(80) NOT NULL DEFAULT '', `display_label` varchar(256) NOT NULL DEFAULT '', `is_enabled` tinyint(4) NOT NULL DEFAULT 0, `order` tinyint(4) NOT NULL DEFAULT 0, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblapplinks_links`--LOCK TABLES `tblapplinks_links` WRITE;/*!40000 ALTER TABLE `tblapplinks_links` DISABLE KEYS */;/*!40000 ALTER TABLE `tblapplinks_links` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblapplinks_log`--DROP TABLE IF EXISTS `tblapplinks_log`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblapplinks_log` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `applink_id` int(10) unsigned NOT NULL DEFAULT 0, `message` varchar(2000) NOT NULL DEFAULT '', `level` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblapplinks_log`--LOCK TABLES `tblapplinks_log` WRITE;/*!40000 ALTER TABLE `tblapplinks_log` DISABLE KEYS */;/*!40000 ALTER TABLE `tblapplinks_log` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblauthn_account_links`--DROP TABLE IF EXISTS `tblauthn_account_links`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblauthn_account_links` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `provider` char(32) NOT NULL, `remote_user_id` char(255) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `client_id` int(11) DEFAULT NULL, `contact_id` int(11) DEFAULT NULL, `metadata` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `tblauthn_account_links_provider_remote_user_id_unique` (`provider`,`remote_user_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblauthn_account_links`--LOCK TABLES `tblauthn_account_links` WRITE;/*!40000 ALTER TABLE `tblauthn_account_links` DISABLE KEYS */;/*!40000 ALTER TABLE `tblauthn_account_links` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblauthn_config`--DROP TABLE IF EXISTS `tblauthn_config`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblauthn_config` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `provider` char(64) NOT NULL, `setting` char(128) NOT NULL, `value` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `tblauthn_config_provider_setting_unique` (`provider`,`setting`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblauthn_config`--LOCK TABLES `tblauthn_config` WRITE;/*!40000 ALTER TABLE `tblauthn_config` DISABLE KEYS */;/*!40000 ALTER TABLE `tblauthn_config` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblbankaccts`--DROP TABLE IF EXISTS `tblbankaccts`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblbankaccts` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `pay_method_id` int(11) NOT NULL DEFAULT 0, `bank_name` varchar(255) NOT NULL DEFAULT '', `acct_type` varchar(255) NOT NULL DEFAULT '', `bank_data` blob NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `tblbankaccts_pay_method_id` (`pay_method_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblbankaccts`--LOCK TABLES `tblbankaccts` WRITE;/*!40000 ALTER TABLE `tblbankaccts` DISABLE KEYS */;/*!40000 ALTER TABLE `tblbankaccts` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblbannedemails`--DROP TABLE IF EXISTS `tblbannedemails`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblbannedemails` ( `id` int(10) NOT NULL AUTO_INCREMENT, `domain` text NOT NULL, `count` int(10) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `domain` (`domain`(64))) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblbannedemails`--LOCK TABLES `tblbannedemails` WRITE;/*!40000 ALTER TABLE `tblbannedemails` DISABLE KEYS */;/*!40000 ALTER TABLE `tblbannedemails` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblbannedips`--DROP TABLE IF EXISTS `tblbannedips`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblbannedips` ( `id` int(10) NOT NULL AUTO_INCREMENT, `ip` text NOT NULL, `reason` text NOT NULL, `expires` datetime NOT NULL, PRIMARY KEY (`id`), KEY `ip` (`ip`(32))) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblbannedips`--LOCK TABLES `tblbannedips` WRITE;/*!40000 ALTER TABLE `tblbannedips` DISABLE KEYS */;/*!40000 ALTER TABLE `tblbannedips` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblbillableitems`--DROP TABLE IF EXISTS `tblbillableitems`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblbillableitems` ( `id` int(10) NOT NULL AUTO_INCREMENT, `userid` int(10) NOT NULL, `description` text NOT NULL, `hours` decimal(5,1) NOT NULL, `amount` decimal(16,2) NOT NULL, `recur` int(5) NOT NULL DEFAULT 0, `recurcycle` text NOT NULL, `recurfor` int(5) NOT NULL DEFAULT 0, `invoiceaction` int(1) NOT NULL, `unit` tinyint(1) NOT NULL DEFAULT 0, `duedate` date NOT NULL, `invoicecount` int(5) NOT NULL DEFAULT 0, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblbillableitems`--LOCK TABLES `tblbillableitems` WRITE;/*!40000 ALTER TABLE `tblbillableitems` DISABLE KEYS */;/*!40000 ALTER TABLE `tblbillableitems` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblbundles`--DROP TABLE IF EXISTS `tblbundles`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblbundles` ( `id` int(10) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `validfrom` date NOT NULL, `validuntil` date NOT NULL, `uses` int(4) NOT NULL, `maxuses` int(4) NOT NULL, `itemdata` text NOT NULL, `allowpromo` int(1) NOT NULL, `showgroup` int(1) NOT NULL, `gid` int(10) NOT NULL, `description` text NOT NULL, `displayprice` decimal(16,2) NOT NULL, `sortorder` int(3) NOT NULL, `is_featured` tinyint(1) NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblbundles`--LOCK TABLES `tblbundles` WRITE;/*!40000 ALTER TABLE `tblbundles` DISABLE KEYS */;/*!40000 ALTER TABLE `tblbundles` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblcalendar`--DROP TABLE IF EXISTS `tblcalendar`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblcalendar` ( `id` int(10) NOT NULL AUTO_INCREMENT, `title` text NOT NULL, `desc` text NOT NULL, `start` int(10) NOT NULL, `end` int(10) NOT NULL, `allday` int(1) NOT NULL, `adminid` int(10) NOT NULL, `recurid` int(10) NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblcalendar`--LOCK TABLES `tblcalendar` WRITE;/*!40000 ALTER TABLE `tblcalendar` DISABLE KEYS */;/*!40000 ALTER TABLE `tblcalendar` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblcampaigns`--DROP TABLE IF EXISTS `tblcampaigns`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblcampaigns` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `admin_id` int(10) unsigned NOT NULL DEFAULT 0, `name` varchar(250) NOT NULL DEFAULT '', `configuration` text DEFAULT NULL, `message_data` mediumtext DEFAULT NULL, `sending_start_at` datetime DEFAULT NULL, `draft` tinyint(1) NOT NULL DEFAULT 0, `started` tinyint(1) NOT NULL DEFAULT 0, `paused` tinyint(1) NOT NULL DEFAULT 0, `position` int(10) unsigned NOT NULL DEFAULT 0, `completed` tinyint(1) NOT NULL DEFAULT 0, `completed_at` timestamp NULL DEFAULT NULL, `queue_completed_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `tblcampaigns_started_index` (`started`), KEY `tblcampaigns_paused_index` (`paused`), KEY `tblcampaigns_completed_index` (`completed`)) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblcampaigns`--LOCK TABLES `tblcampaigns` WRITE;/*!40000 ALTER TABLE `tblcampaigns` DISABLE KEYS */;INSERT INTO `tblcampaigns` (`id`, `admin_id`, `name`, `configuration`, `message_data`, `sending_start_at`, `draft`, `started`, `paused`, `position`, `completed`, `completed_at`, `queue_completed_at`, `created_at`, `updated_at`, `deleted_at`) VALUES ('1', '1', '20% Off', '{\"email_type\":\"product\",\"selected_ids\":[],\"client_status\":[\"Active\"],\"client_group\":[],\"client_country\":[\"CA\",\"US\"],\"client_language\":[\"\",\"english\"],\"custom_fields\":[],\"package_ids\":[\"2\",\"3\",\"5\",\"4\",\"6\",\"9\",\"7\",\"8\"],\"product_statuses\":[],\"servers\":[\"1\"],\"send_for_each\":true,\"addon_ids\":[],\"addon_statuses\":[],\"domain_statuses\":[],\"email_opt_out\":\"on\",\"total_recipients\":2}', '{\"type\":\"product\",\"subject\":\"Promotional Sale | All services 20% off!\",\"message\":\"<p><span style="font-family: arial, helvetica, sans-serif;">Hello\\u00a0<\\/span><span style="font-family: arial, helvetica, sans-serif;">{$client_name}!<\\/span><\\/p>\\r\\n<p><span style="font-family: arial, helvetica, sans-serif;">As we've just launched this today, I decided to open a promotional code lasting until <strong>December 6th<\\/strong><\\/span><\\/p>\\r\\n<p><span style="font-family: arial, helvetica, sans-serif;">Eligibility requirements:<\\/span><\\/p>\\r\\n<ul>\\r\\n<li><span style="font-family: arial, helvetica, sans-serif;">New customers.<\\/span><\\/li>\\r\\n<li><span style="font-family: arial, helvetica, sans-serif;">Applicable once per client, globally.<\\/span><\\/li>\\r\\n<\\/ul>\\r\\n<p><span style="font-family: arial, helvetica, sans-serif;">Promo code: <strong>welcome<\\/strong><\\/span><br \\/><span style="font-family: arial, helvetica, sans-serif;">- <strong>20% of<\\/strong>f all orders!<\\/span><\\/p>\\r\\n<p><span style="font-family: arial, helvetica, sans-serif;"><a href="https:\\/\\/user.lunardev.group">https:\\/\\/user.lunardev.group<\\/a><\\/span><\\/p>\\r\\n<p>\\u00a0<\\/p>\\r\\n<hr \\/>\\r\\n<p style="text-align: center;"><span style="font-family: arial, helvetica, sans-serif;">Click <a href="{$unsubscribe_url}">here<\\/a> to unsubscribe from future marketing emails.<\\/span><\\/p>\",\"fromName\":\"Lunar\",\"fromEmail\":\"contact@lunardev.group\",\"copyTo\":[\"\"],\"blindCopyTo\":[\"\"],\"temporaryAttachments\":[]}', '2022-11-07 23:00:00', '0', '1', '0', '50', '1', '2022-11-07 23:05:05', '2022-11-07 23:00:02', '2022-11-07 22:28:24', '2022-11-07 23:05:05', NULL);INSERT INTO `tblcampaigns` (`id`, `admin_id`, `name`, `configuration`, `message_data`, `sending_start_at`, `draft`, `started`, `paused`, `position`, `completed`, `completed_at`, `queue_completed_at`, `created_at`, `updated_at`, `deleted_at`) VALUES ('2', '3', 'Revamped Hosting, W', '{\"email_type\":\"general\",\"selected_ids\":[],\"client_status\":[\"Active\",\"Inactive\",\"Closed\"],\"client_group\":[],\"client_country\":[\"CA\",\"US\"],\"client_language\":[\"\",\"english\"],\"custom_fields\":[],\"package_ids\":[],\"product_statuses\":[],\"servers\":[],\"send_for_each\":false,\"addon_ids\":[],\"addon_statuses\":[],\"domain_statuses\":[],\"email_opt_out\":\"\",\"total_recipients\":8}', '{\"type\":\"general\",\"subject\":\"revamped hosting, W!!!\",\"message\":\"<p>hey {$client_name},<\\/p>\\r\\n<p>get your hosting panel today, we're cumming over all the deals on our hardware. if you dont' kill yourself.<\\/p>\\r\\n<p>\\u00a0<\\/p>\\r\\n<p>join us soon!<\\/p>\\r\\n<p>\\u00a0<\\/p>\\r\\n<p>thank u!<\\/p>\\r\\n<p><em>hijab.geitguavar@lunardev.group<\\/em><\\/p>\\r\\n<p><em>"Enhancing experience with human interaction."<\\/em><\\/p>\\r\\n<p><em>Lunar Dev<\\/em><\\/p>\",\"fromName\":\"Lunar\",\"fromEmail\":\"contact@lunardev.group\",\"copyTo\":[\"\"],\"blindCopyTo\":[\"\"],\"temporaryAttachments\":[]}', '2022-11-12 06:09:00', '0', '1', '0', '50', '1', '2022-11-12 06:15:07', '2022-11-12 06:10:02', '2022-11-12 06:09:34', '2022-11-12 06:15:07', NULL);/*!40000 ALTER TABLE `tblcampaigns` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblcancelrequests`--DROP TABLE IF EXISTS `tblcancelrequests`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblcancelrequests` ( `id` int(10) NOT NULL AUTO_INCREMENT, `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `relid` int(10) NOT NULL, `reason` text NOT NULL, `type` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `serviceid` (`relid`)) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblcancelrequests`--LOCK TABLES `tblcancelrequests` WRITE;/*!40000 ALTER TABLE `tblcancelrequests` DISABLE KEYS */;INSERT INTO `tblcancelrequests` (`id`, `date`, `relid`, `reason`, `type`, `created_at`, `updated_at`) VALUES ('1', '2022-11-06 06:30:41', '1', 'Test', 'Immediate', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcancelrequests` (`id`, `date`, `relid`, `reason`, `type`, `created_at`, `updated_at`) VALUES ('2', '2022-11-06 10:41:29', '7', 'Test Server', 'Immediate', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcancelrequests` (`id`, `date`, `relid`, `reason`, `type`, `created_at`, `updated_at`) VALUES ('3', '2022-11-07 20:58:15', '8', 'Was just a test', 'Immediate', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcancelrequests` (`id`, `date`, `relid`, `reason`, `type`, `created_at`, `updated_at`) VALUES ('4', '2022-11-08 17:03:29', '12', 'Was a test uwu', 'Immediate', '0000-00-00 00:00:00', '0000-00-00 00:00:00');/*!40000 ALTER TABLE `tblcancelrequests` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblcarts`--DROP TABLE IF EXISTS `tblcarts`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblcarts` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned DEFAULT NULL, `tag` char(64) NOT NULL, `data` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), UNIQUE KEY `tblcarts_tag_unique` (`tag`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblcarts`--LOCK TABLES `tblcarts` WRITE;/*!40000 ALTER TABLE `tblcarts` DISABLE KEYS */;/*!40000 ALTER TABLE `tblcarts` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblclientgroups`--DROP TABLE IF EXISTS `tblclientgroups`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblclientgroups` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `groupname` varchar(45) NOT NULL, `groupcolour` varchar(45) DEFAULT NULL, `discountpercent` decimal(10,2) unsigned DEFAULT 0.00, `susptermexempt` text DEFAULT NULL, `separateinvoices` text NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblclientgroups`--LOCK TABLES `tblclientgroups` WRITE;/*!40000 ALTER TABLE `tblclientgroups` DISABLE KEYS */;INSERT INTO `tblclientgroups` (`id`, `groupname`, `groupcolour`, `discountpercent`, `susptermexempt`, `separateinvoices`) VALUES ('1', 'Staff', '#61BBFF', '35.00', '', 'on');INSERT INTO `tblclientgroups` (`id`, `groupname`, `groupcolour`, `discountpercent`, `susptermexempt`, `separateinvoices`) VALUES ('2', 'Sponsored', '#74F77F', '10.00', '', 'on');/*!40000 ALTER TABLE `tblclientgroups` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblclients`--DROP TABLE IF EXISTS `tblclients`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblclients` ( `id` int(10) NOT NULL AUTO_INCREMENT, `uuid` varchar(255) NOT NULL DEFAULT '', `firstname` text NOT NULL, `lastname` text NOT NULL, `companyname` text NOT NULL, `email` text NOT NULL, `address1` text NOT NULL, `address2` text NOT NULL, `city` text NOT NULL, `state` text NOT NULL, `postcode` text NOT NULL, `country` text NOT NULL, `phonenumber` text NOT NULL, `tax_id` varchar(128) NOT NULL DEFAULT '', `password` text NOT NULL, `authmodule` text NOT NULL, `authdata` text NOT NULL, `currency` int(10) NOT NULL, `defaultgateway` text NOT NULL, `credit` decimal(16,2) NOT NULL, `taxexempt` tinyint(1) NOT NULL, `latefeeoveride` tinyint(1) NOT NULL, `overideduenotices` tinyint(1) NOT NULL, `separateinvoices` tinyint(1) NOT NULL, `disableautocc` tinyint(1) NOT NULL, `datecreated` date NOT NULL, `notes` text NOT NULL, `billingcid` int(10) NOT NULL, `securityqid` int(10) NOT NULL, `securityqans` text NOT NULL, `groupid` int(10) NOT NULL, `cardtype` varchar(255) NOT NULL DEFAULT '', `cardlastfour` text NOT NULL, `cardnum` blob NOT NULL, `startdate` blob NOT NULL, `expdate` blob NOT NULL, `issuenumber` blob NOT NULL, `bankname` text NOT NULL, `banktype` text NOT NULL, `bankcode` blob NOT NULL, `bankacct` blob NOT NULL, `gatewayid` text NOT NULL, `lastlogin` datetime DEFAULT NULL, `ip` text NOT NULL, `host` text NOT NULL, `status` enum('Active','Inactive','Closed') NOT NULL DEFAULT 'Active', `language` text NOT NULL, `pwresetkey` text NOT NULL, `emailoptout` int(1) NOT NULL, `marketing_emails_opt_in` tinyint(1) unsigned NOT NULL DEFAULT 0, `overrideautoclose` int(1) NOT NULL, `allow_sso` tinyint(1) NOT NULL DEFAULT 1, `email_verified` tinyint(1) NOT NULL DEFAULT 0, `email_preferences` text DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `pwresetexpiry` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `firstname_lastname` (`firstname`(32),`lastname`(32)), KEY `email` (`email`(64))) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblclients`--LOCK TABLES `tblclients` WRITE;/*!40000 ALTER TABLE `tblclients` DISABLE KEYS */;INSERT INTO `tblclients` (`id`, `uuid`, `firstname`, `lastname`, `companyname`, `email`, `address1`, `address2`, `city`, `state`, `postcode`, `country`, `phonenumber`, `tax_id`, `password`, `authmodule`, `authdata`, `currency`, `defaultgateway`, `credit`, `taxexempt`, `latefeeoveride`, `overideduenotices`, `separateinvoices`, `disableautocc`, `datecreated`, `notes`, `billingcid`, `securityqid`, `securityqans`, `groupid`, `cardtype`, `cardlastfour`, `cardnum`, `startdate`, `expdate`, `issuenumber`, `bankname`, `banktype`, `bankcode`, `bankacct`, `gatewayid`, `lastlogin`, `ip`, `host`, `status`, `language`, `pwresetkey`, `emailoptout`, `marketing_emails_opt_in`, `overrideautoclose`, `allow_sso`, `email_verified`, `email_preferences`, `created_at`, `updated_at`, `pwresetexpiry`) VALUES ('1', 'e6892167-8eff-49c2-b4df-eeede68aa11d', 'Winter', 'Fe', '', 'winter@lunardev.group', '280 stanebrook ct', '', 'Jackson', 'Georgia', '30233', 'US', '+1.678-818-5810', '', '', '', '', '1', '', '0.00', '0', '0', '0', '0', '0', '2022-11-06', '', '0', '0', '', '1', '', '', '', '', '', '', '', '', '', '', '', '2022-11-28 18:02:46', '97.89.6.129', '097-089-006-129.res.spectrum.com', 'Active', 'english', '', '0', '1', '0', '1', '0', '{\"general\":\"1\",\"invoice\":\"1\",\"support\":\"1\",\"product\":\"1\",\"domain\":\"1\",\"affiliate\":\"1\"}', '2022-11-06 05:19:25', '2022-11-28 18:02:46', '0000-00-00 00:00:00');INSERT INTO `tblclients` (`id`, `uuid`, `firstname`, `lastname`, `companyname`, `email`, `address1`, `address2`, `city`, `state`, `postcode`, `country`, `phonenumber`, `tax_id`, `password`, `authmodule`, `authdata`, `currency`, `defaultgateway`, `credit`, `taxexempt`, `latefeeoveride`, `overideduenotices`, `separateinvoices`, `disableautocc`, `datecreated`, `notes`, `billingcid`, `securityqid`, `securityqans`, `groupid`, `cardtype`, `cardlastfour`, `cardnum`, `startdate`, `expdate`, `issuenumber`, `bankname`, `banktype`, `bankcode`, `bankacct`, `gatewayid`, `lastlogin`, `ip`, `host`, `status`, `language`, `pwresetkey`, `emailoptout`, `marketing_emails_opt_in`, `overrideautoclose`, `allow_sso`, `email_verified`, `email_preferences`, `created_at`, `updated_at`, `pwresetexpiry`) VALUES ('2', '6891f395-7c83-40c2-a7c7-4fcb5a032ac4', 'Adrian', 'Oviatt', '', 'adrianoviatt@outlook.com', '11519 39 ave NW', '', 'Edmonton', 'Alberta', 'T6J0M5', 'CA', '+1.587-920-2210', '', '', '', '', '1', '', '0.00', '0', '0', '0', '0', '0', '2022-11-06', '', '0', '0', '', '0', '', '', '', '', '', '', '', '', '', '', '', '2022-11-06 05:59:57', '162.157.120.232', 'd162-157-120-232.abhsia.telus.net', 'Active', 'english', '', '1', '0', '0', '1', '0', '{\"general\":\"1\",\"invoice\":\"1\",\"support\":\"1\",\"product\":\"1\",\"domain\":\"1\",\"affiliate\":\"1\"}', '2022-11-06 05:59:57', '2022-11-06 06:01:47', '0000-00-00 00:00:00');INSERT INTO `tblclients` (`id`, `uuid`, `firstname`, `lastname`, `companyname`, `email`, `address1`, `address2`, `city`, `state`, `postcode`, `country`, `phonenumber`, `tax_id`, `password`, `authmodule`, `authdata`, `currency`, `defaultgateway`, `credit`, `taxexempt`, `latefeeoveride`, `overideduenotices`, `separateinvoices`, `disableautocc`, `datecreated`, `notes`, `billingcid`, `securityqid`, `securityqans`, `groupid`, `cardtype`, `cardlastfour`, `cardnum`, `startdate`, `expdate`, `issuenumber`, `bankname`, `banktype`, `bankcode`, `bankacct`, `gatewayid`, `lastlogin`, `ip`, `host`, `status`, `language`, `pwresetkey`, `emailoptout`, `marketing_emails_opt_in`, `overrideautoclose`, `allow_sso`, `email_verified`, `email_preferences`, `created_at`, `updated_at`, `pwresetexpiry`) VALUES ('4', '8d689dc1-db5b-4473-88a8-08498dda8b5b', 'Noah ', 'Bryfogle', '', 'unsoughtconch@gmail.com', '308 Negra Arroyo Lane', '', 'Albuquerque ', 'New Mexico', '87104', 'US', '+1.610-714-2662', '', '', '', '', '1', '', '0.00', '0', '0', '0', '0', '0', '2022-11-06', '', '0', '0', '', '0', '', '', '', '', '', '', '', '', '', '', '', '2022-11-06 10:14:16', '24.102.195.35', '24.102.195.35.res-cmts.t132.ptd.net', 'Active', 'english', '', '1', '0', '0', '1', '0', '{\"general\":\"1\",\"invoice\":\"1\",\"support\":\"1\",\"product\":\"1\",\"domain\":\"1\",\"affiliate\":\"1\"}', '2022-11-06 09:44:34', '2022-11-06 10:14:16', '0000-00-00 00:00:00');INSERT INTO `tblclients` (`id`, `uuid`, `firstname`, `lastname`, `companyname`, `email`, `address1`, `address2`, `city`, `state`, `postcode`, `country`, `phonenumber`, `tax_id`, `password`, `authmodule`, `authdata`, `currency`, `defaultgateway`, `credit`, `taxexempt`, `latefeeoveride`, `overideduenotices`, `separateinvoices`, `disableautocc`, `datecreated`, `notes`, `billingcid`, `securityqid`, `securityqans`, `groupid`, `cardtype`, `cardlastfour`, `cardnum`, `startdate`, `expdate`, `issuenumber`, `bankname`, `banktype`, `bankcode`, `bankacct`, `gatewayid`, `lastlogin`, `ip`, `host`, `status`, `language`, `pwresetkey`, `emailoptout`, `marketing_emails_opt_in`, `overrideautoclose`, `allow_sso`, `email_verified`, `email_preferences`, `created_at`, `updated_at`, `pwresetexpiry`) VALUES ('5', '515468ed-3de4-4623-bd83-48325f8f7610', 'Motzumoto', 'Lunar', 'Lunar Development', 'cuztopher1e@gmail.com', '506 Early Ave', '', 'Eden', 'North Carolina', '27288', 'US', '+1.743-444-3399', '', '', '', '', '1', '', '0.00', '0', '0', '0', '0', '0', '2022-11-06', '', '0', '0', '', '1', '', '', '', '', '', '', '', '', '', '', '', '2022-11-07 12:08:03', '173.94.240.217', 'twdp-173-094-240-217.nc.res.rr.com', 'Active', 'english', '', '0', '1', '0', '1', '0', '{\"general\":\"1\",\"invoice\":\"1\",\"support\":\"1\",\"product\":\"1\",\"domain\":\"1\",\"affiliate\":\"1\"}', '2022-11-06 09:54:42', '2022-11-07 12:08:03', '0000-00-00 00:00:00');INSERT INTO `tblclients` (`id`, `uuid`, `firstname`, `lastname`, `companyname`, `email`, `address1`, `address2`, `city`, `state`, `postcode`, `country`, `phonenumber`, `tax_id`, `password`, `authmodule`, `authdata`, `currency`, `defaultgateway`, `credit`, `taxexempt`, `latefeeoveride`, `overideduenotices`, `separateinvoices`, `disableautocc`, `datecreated`, `notes`, `billingcid`, `securityqid`, `securityqans`, `groupid`, `cardtype`, `cardlastfour`, `cardnum`, `startdate`, `expdate`, `issuenumber`, `bankname`, `banktype`, `bankcode`, `bankacct`, `gatewayid`, `lastlogin`, `ip`, `host`, `status`, `language`, `pwresetkey`, `emailoptout`, `marketing_emails_opt_in`, `overrideautoclose`, `allow_sso`, `email_verified`, `email_preferences`, `created_at`, `updated_at`, `pwresetexpiry`) VALUES ('6', '5c399a61-e702-4707-b30e-83b63b71897a', 'Jaden', 'Mayhue', '', 'ileakpics2020@gmail.com', '', '', '', '', '', 'US', '', '', '', '', '', '1', '', '0.00', '0', '0', '0', '0', '0', '2022-11-08', '', '0', '0', '', '1', '', '', '', '', '', '', '', '', '', '', '', '2022-12-03 03:48:45', '185.246.210.23', 'cache.cdn77.com', 'Active', 'english', '', '1', '0', '0', '1', '0', '{\"general\":\"1\",\"invoice\":\"1\",\"support\":\"1\",\"product\":\"1\",\"domain\":\"1\",\"affiliate\":\"1\"}', '2022-11-08 00:41:34', '2022-12-03 03:48:45', '0000-00-00 00:00:00');INSERT INTO `tblclients` (`id`, `uuid`, `firstname`, `lastname`, `companyname`, `email`, `address1`, `address2`, `city`, `state`, `postcode`, `country`, `phonenumber`, `tax_id`, `password`, `authmodule`, `authdata`, `currency`, `defaultgateway`, `credit`, `taxexempt`, `latefeeoveride`, `overideduenotices`, `separateinvoices`, `disableautocc`, `datecreated`, `notes`, `billingcid`, `securityqid`, `securityqans`, `groupid`, `cardtype`, `cardlastfour`, `cardnum`, `startdate`, `expdate`, `issuenumber`, `bankname`, `banktype`, `bankcode`, `bankacct`, `gatewayid`, `lastlogin`, `ip`, `host`, `status`, `language`, `pwresetkey`, `emailoptout`, `marketing_emails_opt_in`, `overrideautoclose`, `allow_sso`, `email_verified`, `email_preferences`, `created_at`, `updated_at`, `pwresetexpiry`) VALUES ('7', '4e5fa31b-7d43-4012-adee-74ddbe4ef43c', 'Dylan', '"Big Cock" James', 'Tritan Development', 'dylan@tritan.dev', '124 succ my cock rn', '', 'ur dad's ass', 'Alabama', 'yeeyee', 'US', '+1.325-420-6669', '', '', '', '', '1', '', '0.00', '0', '0', '0', '0', '0', '2022-11-10', '', '0', '0', '', '1', '', '', '', '', '', '', '', '', '', '', '', '2022-11-10 19:50:53', '2600:1006:b127:e84:e19d:d7f0:f889:c87f', '2600:1006:b127:e84:e19d:d7f0:f889:c87f', 'Active', 'english', '', '0', '1', '0', '1', '0', '{\"general\":\"1\",\"invoice\":\"1\",\"support\":\"1\",\"product\":\"1\",\"domain\":\"1\",\"affiliate\":\"1\"}', '2022-11-10 19:50:53', '2022-11-10 19:50:53', '0000-00-00 00:00:00');INSERT INTO `tblclients` (`id`, `uuid`, `firstname`, `lastname`, `companyname`, `email`, `address1`, `address2`, `city`, `state`, `postcode`, `country`, `phonenumber`, `tax_id`, `password`, `authmodule`, `authdata`, `currency`, `defaultgateway`, `credit`, `taxexempt`, `latefeeoveride`, `overideduenotices`, `separateinvoices`, `disableautocc`, `datecreated`, `notes`, `billingcid`, `securityqid`, `securityqans`, `groupid`, `cardtype`, `cardlastfour`, `cardnum`, `startdate`, `expdate`, `issuenumber`, `bankname`, `banktype`, `bankcode`, `bankacct`, `gatewayid`, `lastlogin`, `ip`, `host`, `status`, `language`, `pwresetkey`, `emailoptout`, `marketing_emails_opt_in`, `overrideautoclose`, `allow_sso`, `email_verified`, `email_preferences`, `created_at`, `updated_at`, `pwresetexpiry`) VALUES ('8', '4e046214-8fad-4ea5-a944-90e4b0145838', 'Astrid', 'Isgay', 'Tritan Development', 'killmeuwu@protonmail.com', '123 applescause street', '', 'San Francisco', 'California', '948292', 'US', '+1.325-420-6669', '', '', '', '', '1', '', '90165599999190.00', '1', '0', '0', '0', '0', '2022-11-12', '', '0', '0', '', '0', '', '', '', '', '', '', '', '', '', '', '', '2022-11-14 00:40:28', '2001:569:7130:7200:d8e7:780:af98:de5b', 'node-1w7jr9qhfw29c2a99cfu1v0pn.ipv6.telus.net', 'Active', 'english', '', '0', '1', '0', '1', '0', '{\"general\":\"1\",\"invoice\":\"1\",\"support\":\"1\",\"product\":\"1\",\"domain\":\"1\",\"affiliate\":\"1\"}', '2022-11-12 06:08:41', '2022-11-29 00:00:04', '0000-00-00 00:00:00');/*!40000 ALTER TABLE `tblclients` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblclientsfiles`--DROP TABLE IF EXISTS `tblclientsfiles`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblclientsfiles` ( `id` int(10) NOT NULL AUTO_INCREMENT, `userid` int(10) NOT NULL, `title` text NOT NULL, `filename` text NOT NULL, `adminonly` int(1) NOT NULL, `dateadded` date NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblclientsfiles`--LOCK TABLES `tblclientsfiles` WRITE;/*!40000 ALTER TABLE `tblclientsfiles` DISABLE KEYS */;INSERT INTO `tblclientsfiles` (`id`, `userid`, `title`, `filename`, `adminonly`, `dateadded`) VALUES ('2', '8', '04d46af90d2ea9f80708dd73aa130e0b.jpg', 'file813937_04d46af90d2ea9f80708dd73aa130e0b.jpg', '0', '2022-11-13');/*!40000 ALTER TABLE `tblclientsfiles` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblconfiguration`--DROP TABLE IF EXISTS `tblconfiguration`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblconfiguration` ( `id` int(10) NOT NULL AUTO_INCREMENT, `setting` varchar(64) NOT NULL, `value` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), UNIQUE KEY `whmcs_setting_unique` (`setting`), KEY `setting` (`setting`)) ENGINE=InnoDB AUTO_INCREMENT=340 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblconfiguration`--LOCK TABLES `tblconfiguration` WRITE;/*!40000 ALTER TABLE `tblconfiguration` DISABLE KEYS */;INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('1', 'Language', 'english', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('2', 'CompanyName', 'Lunar', '0000-00-00 00:00:00', '2022-11-06 05:20:09');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('3', 'Email', 'contact@lunardev.group', '0000-00-00 00:00:00', '2022-11-06 00:49:27');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('4', 'Domain', 'https://user.lunardev.group/', '0000-00-00 00:00:00', '2022-11-13 03:44:41');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('5', 'LogoURL', 'https://dash.lunardev.group/u/6c7QzS.png', '0000-00-00 00:00:00', '2022-11-13 03:44:41');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('6', 'AutoSuspension', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('7', 'AutoSuspensionDays', '5', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('8', 'CreateInvoiceDaysBefore', '14', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('9', 'AffiliateEnabled', 'on', '0000-00-00 00:00:00', '2022-11-06 05:54:04');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('10', 'AffiliateEarningPercent', '5', '0000-00-00 00:00:00', '2022-11-06 19:38:32');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('11', 'AffiliateBonusDeposit', '0.00', '0000-00-00 00:00:00', '2022-11-06 05:58:06');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('12', 'AffiliatePayout', '5.00', '0000-00-00 00:00:00', '2022-11-06 05:54:04');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('13', 'AffiliateLinks', '<a href="https://user.lunardev.group/aff.php?aff=3"><img src="https://cdn.discordapp.com/attachments/843287155895435284/1038821944029614180/connect_banner.gif" width="468" height="60" border="0"></a><br><br>\r\n<a href="https://user.lunardev.group/aff.php?aff=2"><img src="https://cdn.discordapp.com/attachments/891623787789946921/1038769068926316564/banner2.png" width="468" height="60" border="0"></a><br><br>', '0000-00-00 00:00:00', '2022-11-06 10:17:06');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('14', 'ActivityLimit', '10000', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('15', 'DateFormat', 'MM/DD/YYYY', '0000-00-00 00:00:00', '2022-11-06 00:49:27');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('16', 'PreSalesQuestions', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('17', 'Template', 'twenty-one', '0000-00-00 00:00:00', '2022-11-08 14:12:17');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('18', 'AllowRegister', '', '0000-00-00 00:00:00', '2022-11-06 11:03:07');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('19', 'AllowTransfer', '', '0000-00-00 00:00:00', '2022-11-06 11:19:32');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('20', 'AllowOwnDomain', '', '0000-00-00 00:00:00', '2022-11-06 11:19:32');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('21', 'EnableTOSAccept', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('22', 'TermsOfService', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('23', 'AllowLanguageChange', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('24', 'CutUtf8Mb4', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('25', 'AllowCustomerChangeInvoiceGateway', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('26', 'DefaultNameserver1', '', '0000-00-00 00:00:00', '2022-11-06 06:15:15');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('27', 'DefaultNameserver2', '', '0000-00-00 00:00:00', '2022-11-06 06:15:15');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('28', 'SendInvoiceReminderDays', '7', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('29', 'SendReminder', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('30', 'NumRecordstoDisplay', '50', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('31', 'BCCMessages', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('32', 'MailType', 'mail', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('33', 'SMTPHost', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('34', 'SMTPUsername', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('35', 'SMTPPassword', 'zAUN4WdG8mWRlZCQZwk2Z2ippXU=', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('36', 'SMTPPort', '25', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('37', 'ShowCancellationButton', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('38', 'UpdateStatsAuto', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('39', 'InvoicePayTo', 'Lunar Development', '0000-00-00 00:00:00', '2022-11-06 11:21:38');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('40', 'SendAffiliateReportMonthly', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('41', 'InvalidLoginBanLength', '15', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('42', 'Signature', '---\r\nLunar\r\nhttp://user.lunardev.group', '0000-00-00 00:00:00', '2022-11-06 11:03:07');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('43', 'DomainOnlyOrderEnabled', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('44', 'TicketBannedAddresses', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('45', 'SendEmailNotificationonUserDetailsChange', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('46', 'TicketAllowedFileTypes', '.jpg,.gif,.jpeg,.png,.txt,.pdf', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('47', 'CloseInactiveTickets', '168', '0000-00-00 00:00:00', '2022-11-06 10:51:20');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('48', 'InvoiceLateFeeAmount', '5', '0000-00-00 00:00:00', '2022-11-06 05:22:20');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('49', 'AutoTermination', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('50', 'AutoTerminationDays', '30', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('51', 'RegistrarAdminFirstName', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('52', 'RegistrarAdminLastName', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('53', 'RegistrarAdminCompanyName', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('54', 'RegistrarAdminAddress1', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('55', 'RegistrarAdminAddress2', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('56', 'RegistrarAdminCity', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('57', 'RegistrarAdminStateProvince', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('58', 'RegistrarAdminCountry', 'US', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('59', 'RegistrarAdminPostalCode', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('60', 'RegistrarAdminPhone', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('61', 'RegistrarAdminFax', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('62', 'RegistrarAdminEmailAddress', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('63', 'RegistrarAdminUseClientDetails', '', '0000-00-00 00:00:00', '2022-11-06 11:20:08');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('64', 'Charset', 'utf-8', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('65', 'AutoUnsuspend', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('66', 'RunScriptonCheckOut', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('67', 'License', 'YzQ3OWU5OGQ1OWJkOTNmZGViY2YwM2U2NDk2ODIyMjEwNzI5MGNhYzJVbE5uYmxOV2FNSkNMaVVHWmhK\nM1p3VjNMY1IzWWxKWGFrVm1jdndWYnZObUx6Tldib2RuTDNkM2R2dzFMY3B6Y3dSSGRvSmlPaXdtY1ZW\nR1poSjNad1ZGZHAxV2FNUm5ibGxHYkRKQ0xpVW1jdjFXTHVKWFlseDJMY1ZHWmhKM1p3VjNMY1IzWWxK\nWGFrVm1jdndWYnZObUx6Tldib2RuTDNkM2R2dzFMY3B6Y3dSSGRvSmlPaXdtY1ZWbWN2MWtieUZXWk1S\nWGF0bEdUMDVXWnB4MlFpd1NaMUpIZDZJQ1pseG1ZaDVXUmxSV1l5ZEdjVjlHZDFGRWRwMVdhTVJuYmxs\nR2JESkNMd1VqTTZJQ2RwMVdhTVJuYmxsR2JESkNMbFZuYzBwaklrVkdiaUZtYkZOSGRwMVdhTVJuYmxs\nR2JESkNMaUlpT2lJWFpzeFdaelZtY2l3U1oxSkhkNkl5Y3pWMllqRkdkeTlHY3dWM2Npd2lJejR5WXkx\nQ011QWpMNElpT2k0MmJwTm5jbFpYWnpGV1pzVm1jbEpIYzBOWFowRkdiaXdpSXg0U1p6Rldac1ZtY3RJ\nakx3RWpMM0lpT2k0MmJwTm5jbFozWXB4bVkxQkhkelZHZGh4bUlzSWlOdzBpTXgwaU15QWpNaW9qSWxS\nWFlrVldka1JIZWw1bUlzSVNlc2hHZHU5V1Rpb2pJbHgyWTVOMlp1bEdic2xtWWl3aUkyQVRMeEVUTHlJ\nRE15SWlPaVVHZGhSMlpsSm5Jc0l5YzF4R1Vpb2pJbDFXWXVSM1kxUjJieUJuSXNJU1pHQmljbFJuYnBk\nbEk2SVNadEZtYmtWbWNsUjNjcGRXWnlKQ0xsVm5jMHBqSXNGbWR2MVdaU2RtYnBSbWJoSm5RaXdTWDlK\nU1oybEdkakZrSTZJeWMxUlhZME5uSXNJaUk2SVNaMEZHWmxWSFowaFhadUpDTGl3V1kyOVdibEpGSW41\nV2FrNVdZeUprSTZJU1p0Rm1iaXMzVzZJeWN1OUdaa0ZtSXMwbkl6VldXaW9qSVFSMVRVSnllNkl5Y3U5\nV2EwQjNibmxtWnU5Mllpd2lJd0FqTzJBVEx3QWpPd0FqT3dBRFY0SVRMeUVUTHlJRE15SWlPaVVHZGhS\nV2UwbEdac0ZtZGxSWFlrQlhkaXdTWnp4V1ltcGpJelZHZGhSR2MxTlhaeWxXZHhWbWNpd2lJd1FEWmpo\nak1rWkRabEpqTXdVak1oRnpNMk1UTFROVVRJZGxJNklTZWx0bUlzSVNaMmxHZGpGa0k2SXljMVJYWTBO\nbklzSXljajFHYTM5Q1gzZDNkdndsY2haM0xjSmlPaU1uY3BSR1pweFdZMkpDTDlKaUk2SWlidmxHZGhS\nV2FzRm1WZ0FWU2dVbWN2NTJaSkp5ZTZJeWNreFdacFpXYnZSM2MxTm1Jc0lDTnVnak51RXpNdUl6TnhJ\naU9pTUhjcFJXYXNGbWRpd2lJd1YzYnlkbUwyVkdaeUZtYjF4bUx5VjJjMTV5ZDNkSEx3VjNieWRtTDJW\nR1p5Rm1iMXhtTHlWMmMxSmlPaU1uYnBGV2J2UkdacHhXWTJKeWUwN2VkZTMyZWI3NWUxMWQwZTMxOGZm\nZTJiNGZiNDY4ZWJiODc0MTc5PT1RZmlnak10RVRNdElqTXdJakk2SVNaMEZHWnJOV1pvTm1Jc0l5TmlG\nV1poWlRaMmdqWnpRR080VUROekVXWmlOVFp3VTJZeE1tWW1aR08yRVROMVlUTnljRE9pb2pJb05YWW9K\nQ0w5MVhaenhXWW1wakl4SURNeThsZXBKbUk3cGpJdDkyWXU0MmJwUlhZa2xHYmhabkk3cGpJejlXYnZK\nSFVpd1NmOUpDT3drek4yZ0RNMUFETmxOVE8yTVdNeFFHTTJBVFl6RTJZNElET2tWbU5sRldNaEpXTzRJ\nbU0wVUdOemN6TmhaMlkwTVdZd2tETWpSR014SWpNaE4yTnUwRE11bDBkQnBtVDNCVGFOQnpiVTlrZXZS\nVVQzRmxSUGxITVQxRWV3a1dUNUZrYU5sMmJxbEViU2hWV3JwMFFNbFdRWVJtZEtOalcxbEZXYXRtU1ls\nVmRXaGtZMWxFV2FwblZ1eDBNa05EWnA5bWFKeG1UdEpHYVNOelkxeG1NWXBuVFhKMmJrNVdTemwwVWla\nblR0eFVkNWNWWXdZMFJhQkhlWGxsTUtsMlRwVjFWaWhXTnlnbGIxY1ZZMVIyVmhwblM1Vm1JNklTYnZO\nbUx1OVdhMEZHWnB4V1kySnllNklDYzE5bWNuNWlkbFJtY2g1V2RzNWljbE5YZHVjM2QzSkNMOUpTTWtG\nbVl4UVdPaGhqTjVZbU5tVkdaMElqWXpFak1tSldNd0ltWWtSVE5rWlRNNFUyTWtoVE5pZFRPMlltWjFV\nell6TXpOeUFqTmpOalk0RVdaM01ET3UwVFBSWldhQlJVVHlFRVZNbFhVcTlVTk5wMlQzRkVSV1JUU1V4\nRWVGUkZUNWxFUk5sWFNwOVVhVmRFWm9KVmJKTlhTRE5XTTUwMll1VlRha3htVXROR2ExY0ZaelZUYWp4\nbVRZUldhdnBXU3M1VWJpaG1Vek1XZHNKRFc2NTBWaTlHWnVsMGNKTmxZMjVVYk1WWE9YRkdNR2RrV3do\nM1ZaSmpTcDlVYVZkbFlvVmpNWTVXTlhGV2RrZFZZNnBVZWxKaU9pMDJiajVpYnZsR2RoUldhc0ZtZGlz\nbk9pQVhkdkozWnVZWFprSlhZdVZIYnVJWFp6Vm5JN3BqSXo1V1pyOUdWNVJYYWpsR2R1VkdhMFZYUXVs\nV1l0OUdSaXdTZmlFRFpoSldNa2xUWTRZVE9tWmpabFJHTnlJMk14SWpaaUZETWlKR1owVURaMkVET2xO\nRFo0VWpZM2tqTm1aV04xTTJNemNqTXdZell6SUdPaFYyTnpnakw5MFRVbWxXUUUxa01CUkZUNUZsYVBW\nVFRxOTBkQlJrVjBrRVZNaFhSVXhVZUpSVVQ1bFVhUGxXVkhSR2FTMVdTemwwUWpGVE90Tm1iMWtHWnNK\nVmJqaFdOWFIyYzFrMllzNUVXa2wyYnFsRWJPMW1Zb0oxTWpWSGJ5Z2xlT2RsWXZSbWJKTlhTVEptZE8x\nR1QxbHpWaEJqUkhwRmM0ZFZXeW9VYVBsV1ZYSkdhMUlEV3VWelZoVkhaWEZtZUtsWFppb2pJdDkyWXU0\nMmJwUlhZa2xHYmhabkk3cGpJejVXWnI5R1Y1UlhhamxHZHVWR2EwVlhRaXdpSWlvakkwVm1jalYyMjc3\nY2ViYWNmNmY0NWRmNGQ3MTlmNjc3MTIyMzg2YmNjZWI4NjI5', '0000-00-00 00:00:00', '2022-11-28 01:39:42');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('68', 'OrderFormTemplate', 'legacy_modern', '0000-00-00 00:00:00', '2022-11-06 11:21:21');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('69', 'AllowDomainsTwice', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('70', 'AddLateFeeDays', '5', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('71', 'TaxEnabled', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('72', 'DefaultCountry', 'US', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('73', 'AutoRedirectoInvoice', 'gateway', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('74', 'EnablePDFInvoices', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('75', 'CaptchaSetting', 'offloggedin', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('76', 'SupportTicketOrder', 'ASC', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('77', 'SendFirstOverdueInvoiceReminder', '1', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('78', 'TaxType', 'Exclusive', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('79', 'DomainDNSManagement', '5.00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('80', 'DomainEmailForwarding', '5.00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('81', 'InvoiceIncrement', '1', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('82', 'ContinuousInvoiceGeneration', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('83', 'AutoCancellationRequests', '', '0000-00-00 00:00:00', '2022-11-11 21:49:31');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('84', 'SystemEmailsFromName', 'Lunar Hosting', '0000-00-00 00:00:00', '2022-11-07 22:19:02');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('85', 'SystemEmailsFromEmail', 'contact@lunardev.group', '0000-00-00 00:00:00', '2022-11-06 19:36:36');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('86', 'AllowClientRegister', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('87', 'BulkCheckTLDs', '.com,.net', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('88', 'CreditOnDowngrade', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('90', 'TaxDomains', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('91', 'TaxLateFee', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('92', 'MarketingEmailConvert', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('93', 'ProductMonthlyPricingBreakdown', 'on', '0000-00-00 00:00:00', '2022-11-06 11:21:21');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('94', 'LateFeeType', 'Fixed Amount', '0000-00-00 00:00:00', '2022-11-06 05:22:20');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('95', 'SendSecondOverdueInvoiceReminder', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('96', 'SendThirdOverdueInvoiceReminder', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('97', 'DomainIDProtection', '5.00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('98', 'DomainRenewalNotices', '30,7,-3,0,0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('99', 'SequentialInvoiceNumbering', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('100', 'SequentialInvoiceNumberFormat', '{NUMBER}', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('101', 'SequentialInvoiceNumberValue', '1', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('102', 'DefaultNameserver3', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('103', 'DefaultNameserver4', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('104', 'AffiliatesDelayCommission', '3', '0000-00-00 00:00:00', '2022-11-06 05:54:04');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('105', 'SupportModule', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('106', 'AddFundsEnabled', 'on', '0000-00-00 00:00:00', '2022-11-06 06:15:46');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('107', 'AddFundsMinimum', '1.00', '0000-00-00 00:00:00', '2022-11-06 06:15:46');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('108', 'AddFundsMaximum', '200.00', '0000-00-00 00:00:00', '2022-11-06 19:38:06');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('109', 'AddFundsMaximumBalance', '400.00', '0000-00-00 00:00:00', '2022-11-06 19:38:06');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('110', 'CCProcessDaysBefore', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('111', 'CCAttemptOnlyOnce', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('112', 'CCDaySendExpiryNotices', '25', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('113', 'BulkDomainSearchEnabled', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('114', 'AutoRenewDomainsonPayment', '', '0000-00-00 00:00:00', '2022-11-06 11:19:52');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('115', 'DomainAutoRenewDefault', '', '0000-00-00 00:00:00', '2022-11-06 11:19:52');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('116', 'CCRetryEveryWeekFor', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('117', 'SupportTicketKBSuggestions', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('118', 'DailyEmailBackup', 'contact@lunardev.group', '0000-00-00 00:00:00', '2022-11-06 09:44:25');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('119', 'FTPBackupHostname', 'cloud.hep.gg', '0000-00-00 00:00:00', '2022-11-15 20:26:54');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('120', 'FTPBackupUsername', 'winter', '0000-00-00 00:00:00', '2022-11-15 20:26:54');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('121', 'FTPBackupPassword', 'fxvqNkmW4xgaKADMRc4d28RSmWx2e9E5eISdo7+oecWW', '0000-00-00 00:00:00', '2022-11-15 20:26:54');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('122', 'FTPBackupDestination', '/Dying USB Drive 1/Fifi/backups/whmcs/', '0000-00-00 00:00:00', '2022-11-17 03:31:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('123', 'TaxL2Compound', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('124', 'SEOFriendlyUrls', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('125', 'ShowCCIssueStart', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('126', 'TicketRatingEnabled', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('127', 'NetworkIssuesRequireLogin', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('128', 'ShowNotesFieldOnCheckout', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('129', 'RequireLoginforClientTickets', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('130', 'EmailCSS', '.ExternalClass,.ExternalClass div,.ExternalClass font,.ExternalClass p,.ExternalClass span,.ExternalClass td,h1,img{line-height:100%}h1,h2{display:block;font-family:Helvetica;font-style:normal;font-weight:700}#outlook a{padding:0}.ExternalClass,.ReadMsgBody{width:100%}a,blockquote,body,li,p,table,td{-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}table,td{mso-table-lspace:0;mso-table-rspace:0}img{-ms-interpolation-mode:bicubic;border:0;height:auto;outline:0;text-decoration:none}table{border-collapse:collapse!important}#bodyCell,#bodyTable,body{height:100%!important;margin:0;padding:0;width:100%!important}#bodyCell{padding:20px;}#templateContainer{width:600px;border:1px solid #ddd;background-color:#fff}#bodyTable,body{background-color:#FAFAFA}h1{color:#202020!important;font-size:26px;letter-spacing:normal;text-align:left;margin:0 0 10px}h2{color:#404040!important;font-size:20px;line-height:100%;letter-spacing:normal;text-align:left;margin:0 0 10px}h3,h4{display:block;font-style:italic;font-weight:400;letter-spacing:normal;text-align:left;margin:0 0 10px;font-family:Helvetica;line-height:100%}h3{color:#606060!important;font-size:16px}h4{color:grey!important;font-size:14px}.headerContent{background-color:#f8f8f8;border-bottom:1px solid #ddd;color:#505050;font-family:Helvetica;font-size:20px;font-weight:700;line-height:100%;text-align:left;vertical-align:middle;padding:0}.bodyContent,.footerContent{font-family:Helvetica;line-height:150%;text-align:left;}.footerContent{text-align:center}.bodyContent pre{padding:15px;background-color:#444;color:#f8f8f8;border:0}.bodyContent pre code{white-space:pre;word-break:normal;word-wrap:normal}.bodyContent table{margin:10px 0;background-color:#fff;border:1px solid #ddd}.bodyContent table th{padding:4px 10px;background-color:#f8f8f8;border:1px solid #ddd;font-weight:700;text-align:center}.bodyContent table td{padding:3px 8px;border:1px solid #ddd}.table-responsive{border:0}.bodyContent a{word-break:break-all}.headerContent a .yshortcuts,.headerContent a:link,.headerContent a:visited{color:#1f5d8c;font-weight:400;text-decoration:underline}#headerImage{height:auto;max-width:600px;padding:20px}#templateBody{background-color:#fff}.bodyContent{color:#505050;font-size:14px;padding:20px}.bodyContent a .yshortcuts,.bodyContent a:link,.bodyContent a:visited{color:#1f5d8c;font-weight:400;text-decoration:underline}.bodyContent a:hover{text-decoration:none}.bodyContent img{display:inline;height:auto;max-width:560px}.footerContent{color:grey;font-size:12px;padding:20px}.footerContent a .yshortcuts,.footerContent a span,.footerContent a:link,.footerContent a:visited{color:#606060;font-weight:400;text-decoration:underline}@media only screen and (max-width:640px){h1,h2,h3,h4{line-height:100%!important}#templateContainer{max-width:600px!important;width:100%!important}#templateContainer,body{width:100%!important}a,blockquote,body,li,p,table,td{-webkit-text-size-adjust:none!important}body{min-width:100%!important}#bodyCell{padding:10px!important}h1{font-size:24px!important}h2{font-size:20px!important}h3{font-size:18px!important}h4{font-size:16px!important}#templatePreheader{display:none!important}.headerContent{font-size:20px!important;line-height:125%!important}.footerContent{font-size:14px!important;line-height:115%!important}.footerContent a{display:block!important}.hide-mobile{display:none;}}', '0000-00-00 00:00:00', '2018-04-18 11:21:38');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('131', 'CurrencyAutoUpdateExchangeRates', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('132', 'CurrencyAutoUpdateProductPrices', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('133', 'RequiredPWStrength', '50', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('134', 'MaintenanceMode', '', '0000-00-00 00:00:00', '2022-11-13 03:41:03');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('135', 'MaintenanceModeMessage', 'We are currently performing maintenance and will be back shortly.', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('136', 'SkipFraudForExisting', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('137', 'SMTPSSL', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('138', 'ContactFormDept', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('139', 'ContactFormTo', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('140', 'TicketEscalationLastRun', '2022-12-05 00:00:06', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('141', 'APIAllowedIPs', 'a:1:{i:0;a:2:{s:2:\"ip\";s:0:\"\";s:4:\"note\";s:0:\"\";}}', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('142', 'NOMD5', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('143', 'DisableSessionIPCheck', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('144', 'DisableSupportTicketReplyEmailsLogging', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('145', 'OverageBillingMethod', '1', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('147', 'CCAllowCustomerDelete', 'on', '0000-00-00 00:00:00', '2022-11-06 19:39:17');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('148', 'CreateDomainInvoiceDaysBefore', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('149', 'NoInvoiceEmailOnOrder', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('150', 'TaxInclusiveDeduct', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('151', 'LateFeeMinimum', '0.00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('152', 'AutoProvisionExistingOnly', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('153', 'EnableDomainRenewalOrders', '', '0000-00-00 00:00:00', '2022-11-06 11:19:52');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('154', 'EnableMassPay', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('155', 'NoAutoApplyCredit', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('156', 'CreateInvoiceDaysBeforeMonthly', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('157', 'CreateInvoiceDaysBeforeQuarterly', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('158', 'CreateInvoiceDaysBeforeSemiAnnually', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('159', 'CreateInvoiceDaysBeforeAnnually', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('160', 'CreateInvoiceDaysBeforeBiennially', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('161', 'CreateInvoiceDaysBeforeTriennially', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('162', 'ClientsProfileUneditableFields', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('163', 'ClientDisplayFormat', '1', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('164', 'CCDoNotRemoveOnExpiry', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('165', 'GenerateRandomUsername', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('166', 'AddFundsRequireOrder', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('167', 'GroupSimilarLineItems', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('168', 'ProrataClientsAnniversaryDate', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('169', 'TCPDFFont', 'helvetica', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('170', 'CancelInvoiceOnCancellation', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('171', 'AttachmentThumbnails', 'on', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('172', 'EmailGlobalHeader', '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r\n<html xmlns="http://www.w3.org/1999/xhtml">\r\n <head>\r\n <meta http-equiv="Content-Type" content="text/html; charset={$charset}" />\r\n <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">\r\n <style type="text/css">\r\n [EmailCSS]\r\n </style>\r\n </head>\r\n <body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" offset="0">\r\n <center>\r\n <table align="center" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="bodyTable">\r\n <tr>\r\n <td align="center" valign="top" id="bodyCell">\r\n <table border="0" cellpadding="0" cellspacing="0" id="templateContainer">\r\n <tr>\r\n <td align="center" valign="top">\r\n <table border="0" cellpadding="0" cellspacing="0" width="100%" id="templateHeader">\r\n <tr>\r\n <td valign="top" class="headerContent">\r\n <a href="{$company_domain}">\r\n {if $company_logo_url}\r\n <img src="{$company_logo_url}" style="max-width:35%;padding:20px 20px 20px 20px" id="headerImage" alt="{$company_name}" />\r\n {else}\r\n {$company_name}\r\n {/if}\r\n </a>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align="center" valign="top">\r\n <table border="0" cellpadding="0" cellspacing="0" width="100%" id="templateBody">\r\n <tr>\r\n <td valign="top" class="bodyContent">', '0000-00-00 00:00:00', '2022-11-07 22:20:32');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('173', 'EmailGlobalFooter', '</td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align="center" valign="top">\r\n <table border="0" cellpadding="0" cellspacing="0" width="100%" id="templateFooter">\r\n <tr>\r\n <td valign="top" class="footerContent">\r\n <a href="{$company_domain}">visit our website</a>\r\n <span class="hide-mobile"> | </span>\r\n <a href="{$whmcs_url}">log in to your account</a>\r\n <span class="hide-mobile"> | </span>\r\n <a href="{$whmcs_url}submitticket.php">get support</a> <br />\r\n Copyright © {$company_name}, All rights reserved.\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </center>\r\n </body>\r\n</html>', '0000-00-00 00:00:00', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('174', 'DomainSyncEnabled', '', '0000-00-00 00:00:00', '2022-12-03 03:56:02');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('175', 'DomainSyncNextDueDate', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('176', 'DomainSyncNextDueDateDays', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('177', 'TicketMask', '%A%A%A-%n%n%n%n%n%n', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('178', 'AutoClientStatusChange', '3', '0000-00-00 00:00:00', '2022-11-11 21:49:44');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('179', 'AllowClientsEmailOptOut', '1', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('180', 'BannedSubdomainPrefixes', 'mail,mx,gapps,gmail,webmail,cpanel,whm,ftp,clients,billing,members,login,accounts,access', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('181', 'FreeDomainAutoRenewRequiresProduct', '', '0000-00-00 00:00:00', '2022-11-06 11:19:52');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('182', 'DomainToDoListEntries', '', '0000-00-00 00:00:00', '2022-11-06 11:19:52');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('183', 'Version', '8.6.0-release.1', '0000-00-00 00:00:00', '2021-01-07 10:30:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('184', 'OrderDaysGrace', '4', '0000-00-00 00:00:00', '2022-11-06 05:20:47');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('185', 'OrderFormSidebarToggle', '1', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('187', 'UpdaterLatestVersion', '8.6.1-release.1', '2018-04-18 11:21:38', '2022-11-30 16:00:08');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('188', 'UpdaterLatestBetaVersion', '8.6.1-release.1', '2018-04-18 11:21:38', '2022-12-02 21:06:40');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('189', 'UpdaterLatestStableVersion', '8.6.1-release.1', '2018-04-18 11:21:38', '2022-12-02 21:06:40');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('190', 'UpdaterLatestSupportAndUpdatesVersion', '8.6.1-release.1', '2018-04-18 11:21:39', '2022-12-01 00:00:15');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('191', 'DailyCronExecutionHour', '00', '2018-04-18 11:21:39', '2022-11-11 21:50:10');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('192', 'PremiumDomains', '0', '2018-04-18 16:21:39', '2018-04-18 16:21:39');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('193', 'UriRewriteAutoManage', '1', '2018-04-18 11:21:40', '2022-11-06 06:07:54');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('194', 'InstanceID', 'mDVWmjJdaTLg', '2018-04-18 11:21:41', '2022-11-06 00:42:10');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('195', 'token_namespaces', 'a:3:{s:13:\"WHMCS.default\";b:1;s:19:\"WHMCS.admin.default\";b:1;s:19:\"WHMCS.domainchecker\";b:0;}', '2018-04-18 11:21:41', '2018-04-18 11:21:41');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('196', 'RouteUriPathMode', 'rewrite', '2018-04-18 11:21:42', '2022-11-06 06:06:51');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('197', 'ReversalChangeInvoiceStatus', '1', '2018-04-18 11:21:42', '2018-04-18 11:21:42');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('198', 'ReversalChangeDueDates', '1', '2018-04-18 11:21:42', '2018-04-18 11:21:42');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('199', 'ActiveBackupSystems', 'ftp', '2018-04-18 11:21:42', '2022-11-15 20:26:54');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('200', 'PhoneNumberDropdown', '1', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('201', 'EmailMarketingOptInMessage', 'We would like to send you occasional news, information and special offers by email. Choose below whether you want to join our mailing list. You can unsubscribe at any time.', '2018-04-18 16:21:43', '2018-04-18 16:21:43');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('202', 'DomainExpirationFeeHandling', 'existing', '2018-04-18 16:21:43', '2018-04-18 16:21:43');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('203', 'TaxPerLineItem', '1', '2018-04-18 16:21:43', '2018-04-18 16:21:43');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('204', 'AdminUserNamesWithSpaces', '', '2018-04-18 11:21:43', '2022-11-06 04:55:40');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('205', 'EnableSafeInclude', '1', '2018-04-18 16:21:43', '2018-04-18 16:21:43');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('206', 'ModuleHooks', 'proxmoxVPS', '2018-04-18 11:21:43', '2022-11-13 11:49:12');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('207', 'AddonModulesHooks', 'paypal_addon,proxmoxAddon,staffboard', '2018-04-18 11:21:43', '2022-11-13 11:39:34');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('208', 'WHMCSUpdatePinVersion', 'stable', '2018-04-18 11:21:43', '2022-11-08 14:46:45');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('209', 'MemberPubKey', 'E4zcbjoW52frP921vBEGgGUjh4Rnu7J7Ug2p0DGevadIW2VZZm7tUrhvj1HImsa+wNIYzdtsFjnRCz7BUsZqfHgSQvAFku6t5yHrFh1g4bhaqGMACMmZxSMuASswiE71OfBWHGxfLEi7RmC9DOudMb1F8gbsc0Lx0Hiaarz2A7aYX54BuxalQKcYPkJ9ET948JDvtDcJ3I3LvW6c38PfNCXeXhwfdqUsNPbkVDKTOOLed/I8BVLmWnd0rVgbjLd4fhrdO2FB6+lfxL0UuoYhYpsqT7qgUjgLs656XDYjzQ6l0Z8AYf6mV84KqvOJjIA0Q8NI97sQm6i1D5JMVH7yQ+m++xkRTbxvz9R9UnGrvALpeLrnuJy+64EqQcQ7gPTsvpKTwjkbsJISNoL96tYo70GhBtYrK2bhswg8wdpGUnARnhGizloys9ojjzefgJIgpdjlCjjZmqbxP7Uy2z5LZo7kldnegNQkAqGU8QAVxFcoeiY4y6iwalYTfECBn5YF2P4CH8j/dNVWvkN6thrlPh1kXJtx4CKrap28vNeo9nMXxOH8KcEyc2M1QehrGdrg+jDdB4By8k4c1vEs7CSvlEa8cVssgQaZFnTGReJT1qCtcnsxVFIvwkyFRtZmI0V4nstIrl7/ue09ULFYk+z7g9UT5uJVAuFIWNk6z2KZ/5tt8x9ppfqXpALlyePKtANmQW37HmjTg/BE6MciKs9//zD0sjhqsGmxIOKP0S1Syg4QHfVMbIXutCcy0sHsVCvSiQmMU1J1Iu1hqLel2RvIiWKzLVxCWqQmyFCgqmic7KKugZMzJGr0fbMnLFbs+Dfb3mfhgXfSLLcbWyfuJqcatGqwxKCPcj/48kc2N7CzvXez2DbKruyLIFYMmOmXegQjV+v4l/eS1FAPhHIDUkDC/HtTL09Z1G9W2U3mmgD+9f6A6HAb5cmGiPWcmtIATuS1RxFQ8yrEmpo0wOqDYfTDMUTtmbMlCDrOw6XRSZw+hLTkXjMewgqkU575wmpCBAHQngKirJSgoMOMOKfG7QbeRldG38y87jtfR99J5V/4Y845UU+KDPU=', '2018-04-23 18:19:29', '2022-11-06 01:10:06');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('210', 'domainLookupProvider', 'WhmcsDomains', '2018-06-19 17:29:29', '2018-06-19 17:29:29');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('211', 'ReCAPTCHAForms', '{\"checkoutCompletion\":false}', '2018-07-26 13:10:09', '2018-07-26 13:10:09');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('212', 'TaxEUTaxValidation', '0', '2018-08-09 10:00:00', '2018-08-09 10:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('213', 'TaxVatCustomFieldId', '0', '2018-08-09 10:00:00', '2018-08-09 10:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('214', 'TaxEUHomeCountry', '', '2018-08-09 10:00:00', '2018-08-09 10:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('215', 'TaxEUTaxExempt', '0', '2018-08-09 10:00:00', '2018-08-09 10:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('216', 'TaxEUHomeCountryNoExempt', '0', '2018-08-09 10:00:00', '2018-08-09 10:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('217', 'TaxCustomInvoiceNumbering', '0', '2018-08-09 10:00:00', '2018-08-09 10:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('218', 'TaxNextCustomInvoiceNumber', '1', '2018-08-09 10:00:00', '2018-08-09 10:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('219', 'TaxSetInvoiceDateOnPayment', '0', '2018-08-09 10:00:00', '2018-08-09 10:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('220', 'TaxAutoResetNumbering', 'never', '2018-08-09 10:00:00', '2018-08-09 10:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('221', 'TaxAutoResetPaidNumbering', 'never', '2018-08-09 10:00:00', '2018-08-09 10:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('222', 'TaxCustomInvoiceNumberFormat', '{NUMBER}', '2018-08-09 10:00:00', '2018-08-09 10:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('223', 'PruneTicketAttachmentsMonths', '3', '2019-04-01 10:00:00', '2022-11-06 10:51:20');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('224', '2fasettings', 'a:3:{s:7:\"modules\";a:1:{s:4:\"totp\";a:2:{s:13:\"clientenabled\";i:1;s:12:\"adminenabled\";i:1;}}s:11:\"forceclient\";i:0;s:10:\"forceadmin\";i:0;}', '2019-07-10 12:46:00', '2022-11-13 10:34:58');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('225', 'TicketAddCarbonCopyRecipients', '1', '2018-08-02 12:00:00', '2018-08-02 12:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('228', 'AcceptedCardTypes', 'Visa,MasterCard,Discover,American Express,JCB,Diners Club', '2019-08-08 18:00:00', '2019-08-08 18:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('229', 'TaxNextCustomInvoiceNumberResetTimestamp', '2022-11', '2019-10-03 13:00:00', '2022-11-06 06:28:02');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('230', 'SequentialInvoiceNumberValueResetTimestamp', '2022-11', '2019-10-03 13:00:00', '2022-11-06 06:28:02');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('231', 'MetricUsageCollection', '1', '2019-11-13 12:00:00', '2019-11-13 12:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('232', 'MetricUsageInvoicing', 'on', '2019-11-13 12:00:00', '2019-11-13 12:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('233', 'DisableClientEmailPreferences', '', '2020-03-18 10:00:00', '2020-03-18 10:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('235', 'AllowIDNDomains', '', '2020-03-18 13:00:00', '2022-11-06 11:19:52');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('236', 'TaxBillableItems', 'on', '2020-09-09 13:00:00', '2020-09-09 13:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('237', 'TaxCustomInvoices', 'on', '2020-09-09 13:00:00', '2020-09-09 13:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('238', 'ClientDateFormat', 'fullday', '2021-02-02 12:00:00', '2022-11-06 00:49:27');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('239', 'HooksDebugMode', '', '2021-02-02 12:00:00', '2021-02-02 12:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('240', 'FreeDomainReminders', '1', '2020-12-21 15:00:00', '2020-12-21 15:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('241', 'SupportReopenTicketOnFailedImport', 'on', '2021-09-24 01:00:00', '2021-09-24 01:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('242', 'ProductRecommendationEnable', '0', '2022-01-05 00:00:00', '2022-01-05 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('243', 'ProductRecommendationLocationAfterAdd', '0', '2022-01-05 00:00:00', '2022-01-05 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('244', 'ProductRecommendationLocationViewCart', '0', '2022-01-05 00:00:00', '2022-01-05 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('245', 'ProductRecommendationLocationCheckout', '0', '2022-01-05 00:00:00', '2022-01-05 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('246', 'ProductRecommendationLocationOrderComplete', '0', '2022-01-05 00:00:00', '2022-01-05 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('247', 'ProductRecommendationCount', '10', '2022-01-05 00:00:00', '2022-01-05 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('248', 'ProductRecommendationExisting', '0', '2022-01-05 00:00:00', '2022-01-05 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('249', 'ProductRecommendationStyle', '0', '2022-01-05 00:00:00', '2022-01-05 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('250', 'SystemURL', 'https://user.lunardev.group/', '2022-11-06 00:41:52', '2022-11-13 03:44:41');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('251', 'MDEFromTime', '2022-11-05 23:42:10', '2022-11-06 00:42:10', '2022-11-06 00:42:10');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('252', 'InstallationTimestamp', '1667724130', '2022-11-06 00:42:10', '2022-11-06 00:42:10');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('253', 'EulaAgreementAccepted', '{\"hash\":\"c0ac9edca53ea8940bc7d9f26034acf9\",\"date\":\"2022-11-05\",\"admin\":\"1:winter\"}', '2022-11-06 00:42:10', '2022-11-06 00:42:10');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('254', 'lastCronInvocationTime', '2022-12-05 00:00:03', '2022-11-06 00:43:15', '2022-12-05 00:00:03');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('255', 'cronTimeZone', 'America/New_York', '2022-11-06 00:43:15', '2022-11-08 14:40:01');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('256', 'UpdatesLastChecked', '2022-12-05 00:00:11', '2022-11-06 00:43:21', '2022-12-05 00:00:11');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('257', 'LandingPages', '{\"wptk\":{\"landing\":{\"2022-11-05\":0,\"2022-11-06\":0,\"2022-11-07\":0,\"2022-11-08\":0,\"2022-11-11\":0,\"2022-11-12\":0,\"2022-11-13\":0,\"2022-11-14\":0,\"2022-11-15\":0,\"2022-11-16\":0,\"2022-11-17\":0,\"2022-11-18\":0,\"2022-11-19\":0,\"2022-11-20\":0,\"2022-11-21\":0,\"2022-11-22\":0,\"2022-11-23\":0,\"2022-11-24\":0,\"2022-11-25\":0,\"2022-11-26\":0,\"2022-11-27\":0,\"2022-11-28\":0,\"2022-11-29\":0,\"2022-11-30\":0,\"2022-12-01\":0,\"2022-12-02\":0,\"2022-12-03\":0,\"2022-12-04\":0,\"2022-12-05\":0,\"lifetime\":0},\"cart\":{\"2022-11-05\":0,\"2022-11-06\":0,\"2022-11-07\":0,\"2022-11-08\":0,\"2022-11-11\":0,\"2022-11-12\":0,\"2022-11-13\":0,\"2022-11-14\":0,\"2022-11-15\":0,\"2022-11-16\":0,\"2022-11-17\":0,\"2022-11-18\":0,\"2022-11-19\":0,\"2022-11-20\":0,\"2022-11-21\":0,\"2022-11-22\":0,\"2022-11-23\":0,\"2022-11-24\":0,\"2022-11-25\":0,\"2022-11-26\":0,\"2022-11-27\":0,\"2022-11-28\":0,\"2022-11-29\":0,\"2022-11-30\":0,\"2022-12-01\":0,\"2022-12-02\":0,\"2022-12-03\":0,\"2022-12-04\":0,\"2022-12-05\":0,\"lifetime\":0}}}', '2022-11-06 00:46:32', '2022-12-05 00:00:15');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('258', 'DisableSetupWizard', '1', '2022-11-06 00:51:16', '2022-11-06 00:51:16');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('259', 'lastDailyCronInvocationTime', '2022-12-05 00:00:03', '2022-11-06 00:53:54', '2022-12-05 00:00:03');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('260', 'lastDailyCronEndTime', '2022-12-05 00:00:11', '2022-11-06 00:54:58', '2022-12-05 00:00:11');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('261', 'CronPHPVersion', '7.4.33', '2022-11-06 00:55:59', '2022-11-14 00:00:13');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('262', 'SystemStatsCache', '{\"clientStatus\":{\"Active\":7},\"productModules\":{\"pterodactyl\":2},\"productModules30\":{\"pterodactyl\":2},\"productModules90\":{\"pterodactyl\":2},\"productAddonModules\":[],\"productAddonModules30\":[],\"productAddonModules90\":[],\"domainModules\":[],\"domainModules30\":[],\"domainModules90\":[],\"invoiceModules\":{\"paypalcheckout\":4,\"stripe\":2},\"invoicePaidLast30d\":{\"paypalcheckout\":4,\"stripe\":2},\"addonModules\":{\"bulkpricingupdater\":\"3.0\",\"cloudflare_ip_sync\":\"1.0\",\"paypal_addon\":\"2.0.1\",\"proxmoxAddon\":\"3.5.0\",\"staffboard\":\"1.1\"},\"enabledFraudModule\":{\"NONE\":1},\"fraudModuleOfOrders\":{\"NONE\":10},\"notificationModules\":[],\"domainLookupProvider\":{\"WhmcsDomains\":1},\"servers\":{\"proxmoxVPS\":3,\"pterodactyl\":1},\"appLinks\":[],\"authProviders\":[],\"defaultOrderform\":{\"CUSTOM\":1},\"orderforms\":{\"CUSTOM\":1},\"clientTheme\":{\"CUSTOM\":1},\"adminThemes\":{\"blend\":1},\"backups\":{\"ftp\":true,\"cpanel\":false,\"email\":false},\"twoFactorAuth\":{\"duo\":false,\"totp\":true,\"yubikey\":false},\"featureShowcase\":null,\"autoUpdate\":{\"count\":5,\"success\":0},\"languages\":{\"systemDefault\":\"english\",\"clientUsage\":{\"english\":7},\"adminUsage\":{\"english\":3}},\"dbCollationStats\":{\"synced\":false,\"collations\":[\"utf8mb3_unicode_ci\",\"utf8mb3_general_ci\",\"utf8mb4_general_ci\"],\"stats\":{\"utf8mb3_unicode_ci\":713,\"utf8mb3_general_ci\":8,\"utf8mb4_general_ci\":5}},\"hasSslAvailable\":true,\"captcha\":{\"setting\":\"offloggedin\",\"type\":\"invisible\",\"invisible\":\"\"},\"domainFeatures\":{\"isEnabled\":1,\"gracePeriods\":5,\"redemptionPeriods\":0},\"domainSyncSettings\":{\"isEnabled\":false,\"dueDateSyncEnabled\":false,\"dueDateSyncDays\":0,\"notifyOnlyEnabled\":false,\"statusSyncHours\":0,\"transferPendingSyncHours\":0},\"wptk\":{\"cPanelAddOn\":0,\"pleskAddOn\":0,\"cPanelLandingPage.hits.30Days\":0,\"cPanelLandingPage.hits.Lifetime\":0,\"cPanelLandingPage.cart.30Days\":0,\"cPanelLandingPage.cart.Lifetime\":0,\"activeBilledAddon\":0},\"wordpressInstallations\":{\"total\":0,\"total.adminInstallAllowed\":0,\"total.clientInstallAllowed\":0,\"total.automationInstallation\":0,\"total.services\":0,\"total.services_wp\":0,\"instances\":0},\"additionalModuleInfo\":[]}', '2022-11-06 00:55:59', '2022-12-03 04:02:22');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('263', 'systemUUID', 'ef26d4bb-20f5-5a38-b5d5-6ffc45fa96e2', '2022-11-06 00:55:59', '2022-11-06 00:55:59');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('264', 'ComponentStatsCache', '{\"info\":{\"type\":1,\"systemId\":\"ef26d4bb-20f5-5a38-b5d5-6ffc45fa96e2\",\"version\":\"1.0.0\"},\"data\":[{\"name\":\"UsageBilling\",\"topics\":[{\"name\":\"MetricSettings\",\"data\":[{\"key\":\"MetricUsageCollection\",\"value\":true},{\"key\":\"MetricUsageInvoicing\",\"value\":true}]},{\"name\":\"ProductMetrics\",\"data\":[]}]}],\"api\":\"1.0.0\"}', '2022-11-06 00:55:59', '2022-11-06 00:55:59');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('265', 'FeatureHighlightsByAdmin', '{\"1\":\"8.6.0-rc.1\",\"2\":\"8.6.0-rc.1\",\"3\":\"8.6.0-rc.1\"}', '2022-11-06 00:56:10', '2022-11-11 21:41:03');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('266', 'GatewayModuleHooks', 'stripe', '2022-11-06 04:21:03', '2022-11-06 10:19:03');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('267', 'MaintenanceModeURL', '', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('268', 'EnableTranslations', '1', '2022-11-06 04:33:14', '2022-11-06 19:34:11');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('269', 'DisableDomainGraceAndRedemptionFees', '0', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('270', 'DefaultNameserver5', '', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('271', 'DisableEmailSending', '', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('272', 'DisableRFC3834', '', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('273', 'TicketEmailLimit', '10', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('274', 'ShowClientOnlyDepts', '', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('275', 'PreventEmailReopening', '0', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('276', 'UpdateLastReplyTimestamp', 'always', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('277', 'DownloadsIncludeProductLinked', '', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('278', 'SupportAllowInsecureImport', '', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('279', 'PDFPaperSize', 'A4', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('280', 'StoreClientDataSnapshotOnInvoiceCreation', '', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('281', 'AutoCancelSubscriptions', '', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('282', 'EnableProformaInvoicing', '0', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('283', 'AffiliateDepartment', '1', '2022-11-06 04:33:14', '2022-11-06 05:54:04');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('284', 'CaptchaType', 'invisible', '2022-11-06 04:33:14', '2022-11-06 04:33:53');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('285', 'ReCAPTCHAPublicKey', '6LcUNuMiAAAAAEa95TBWmJT--r_mus4rUbXz6BuB', '2022-11-06 04:33:14', '2022-11-06 05:17:02');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('286', 'ReCAPTCHAPrivateKey', '6LcUNuMiAAAAAP2Te_SLUYOV2mf4mbOJ8nBNyIhg', '2022-11-06 04:33:14', '2022-11-06 05:17:02');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('287', 'CaptchaForms', '{\"checkoutCompletion\":false,\"domainChecker\":true,\"registration\":true,\"contactUs\":true,\"submitTicket\":true,\"login\":true}', '2022-11-06 04:33:14', '2022-11-06 19:39:17');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('288', 'EnableEmailVerification', '1', '2022-11-06 04:33:14', '2022-11-06 04:33:53');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('289', 'AutoGeneratedPasswordFormat', '', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('290', 'sendFailedLoginWhitelist', '0', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('291', 'DisableAdminPWReset', '', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('292', 'AllowSmartyPhpTags', '0', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('293', 'proxyHeader', '', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('294', 'ApplyCartApi', '0', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('295', 'LogAPIAuthentication', '0', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('296', 'AnnouncementsTweet', 'on', '2022-11-06 04:33:14', '2022-11-06 06:18:37');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('297', 'AnnouncementsFBRecommend', '', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('298', 'AnnouncementsFBComments', '', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('299', 'EmailMarketingRequireOptIn', '0', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('300', 'DefaultToClientArea', '', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('301', 'DisableClientAreaUserMgmt', '', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('302', 'ClientsProfileOptionalFields', 'address1,city,state,postcode,phonenumber', '2022-11-06 04:33:14', '2022-11-06 11:22:42');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('303', 'ModuleEventHandlingMode', '0', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('304', 'DisplayErrors', '', '2022-11-06 04:33:14', '2022-12-03 03:54:02');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('305', 'LogErrors', '', '2022-11-06 04:33:14', '2022-12-03 03:54:02');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('306', 'SQLErrorReporting', '', '2022-11-06 04:33:14', '2022-11-06 04:33:14');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('307', 'SocialAccounts', '{\"discord\":\"cNRNeaX\",\"github\":\"LunarsDev\"}', '2022-11-06 04:33:14', '2022-11-13 03:32:40');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('308', 'trustedProxyIps', '[{\"ip\":\"103.21.244.0\\/22\",\"note\":\"CF\"},{\"ip\":\"103.22.200.0\\/22\",\"note\":\"CF\"},{\"ip\":\"103.31.4.0\\/22\",\"note\":\"CF\"},{\"ip\":\"104.16.0.0\\/13\",\"note\":\"CF\"},{\"ip\":\"104.24.0.0\\/14\",\"note\":\"CF\"},{\"ip\":\"108.162.192.0\\/18\",\"note\":\"CF\"},{\"ip\":\"131.0.72.0\\/22\",\"note\":\"CF\"},{\"ip\":\"141.101.64.0\\/18\",\"note\":\"CF\"},{\"ip\":\"162.158.0.0\\/15\",\"note\":\"CF\"},{\"ip\":\"172.64.0.0\\/13\",\"note\":\"CF\"},{\"ip\":\"173.245.48.0\\/20\",\"note\":\"CF\"},{\"ip\":\"188.114.96.0\\/20\",\"note\":\"CF\"},{\"ip\":\"190.93.240.0\\/20\",\"note\":\"CF\"},{\"ip\":\"197.234.240.0\\/22\",\"note\":\"CF\"},{\"ip\":\"198.41.128.0\\/17\",\"note\":\"CF\"}]', '2022-11-06 04:41:06', '2022-11-06 04:42:42');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('309', 'ActiveAddonModules', 'bulkpricingupdater,cloudflare_ip_sync,paypal_addon,proxmoxAddon,staffboard', '2022-11-06 04:44:08', '2022-11-13 11:39:33');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('310', 'AddonModulesPerms', 'a:3:{i:1;a:4:{s:18:\"bulkpricingupdater\";s:20:\"Bulk Pricing Updater\";s:12:\"paypal_addon\";s:25:\"PayPal Transaction Lookup\";s:12:\"proxmoxAddon\";s:13:\"Proxmox Addon\";s:10:\"staffboard\";s:17:\"Staff Noticeboard\";}i:2;a:3:{s:18:\"bulkpricingupdater\";s:20:\"Bulk Pricing Updater\";s:12:\"proxmoxAddon\";s:13:\"Proxmox Addon\";s:10:\"staffboard\";s:17:\"Staff Noticeboard\";}i:3;a:1:{s:10:\"staffboard\";s:17:\"Staff Noticeboard\";}}', '2022-11-06 04:44:08', '2022-11-13 11:39:46');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('311', 'PayPalCheckoutWebhookId', '', '2022-11-06 05:28:28', '2022-11-06 05:28:28');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('312', 'PayPalCheckoutSandboxWebhookId', '95N72740HC780142V', '2022-11-06 05:32:22', '2022-11-06 05:32:22');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('313', 'MailConfig', 'UJza3RHfam+N1AfXk0czu/jh9l9ypPSKMPMN+jwBZcZfO2xm2eW77qhqku5qU6RtqJRkvE/B1Me3oVHQmVB0VibxxTKIcneZcQ2i8ASIKVFpKUeoPUMh8xMJa2xe5LmU03oxmZ6qc0EwSfXK9j7IE+FRcSbXLoi2xkwgLhBrgf4LrCLPQsbArXZxoIsHl8/1NHsgeuSp0c+N5vxDHh6rzFTqJhESBReVCHstZAqeH45Fj/Ixf/Z30PfiRPxTkPnFLRRZewa1N6uEWSxMTKJ7Y6RJ3DnUMMG32pQzoC7r6XQAzNB8dNytfWhEVtq7mO0o8+cE2KK9SAq31oPpFCju91AFdWfE5M46Rk8woHQgttAyjIETTmyAnw+ynleW9qn3ST/YuIk7j3HR7kcZr4eBWeyE9U3eXwYPVftYyQXLun8TWX4dhvG+qmX4oLHzRASQlHw1jlAmzTv9T59g0YYoXCAzbFos+aSRG/dV49I/G3HbpeXgpSiL0R2no1UHAbUT7tbXoVhvVwu7IRMjabyzKoAFQTNGxT8qOXDx49cuaNlByerYGqqciadrPJLKw0gDinBa', '2022-11-06 05:49:39', '2022-11-06 05:49:39');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('314', 'UriModeOverride', '0', '2022-11-06 06:06:43', '2022-11-06 06:06:51');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('315', 'RegistrarModuleHooks', '', '2022-11-06 06:35:35', '2022-11-06 06:35:35');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('316', 'FTPBackupPort', '21', '2022-11-06 09:43:01', '2022-11-06 09:43:01');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('317', 'DRAutoDeleteInactiveClients', '0', '2022-11-06 10:51:20', '2022-11-06 10:51:20');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('318', 'DRAutoDeleteInactiveClientsUsers', '0', '2022-11-06 10:51:20', '2022-11-06 10:51:20');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('319', 'DRAutoDeleteInactiveClientsMonths', '0', '2022-11-06 10:51:20', '2022-11-06 10:51:20');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('320', 'DomainSyncNotifyOnly', '', '2022-11-06 10:51:20', '2022-11-06 10:51:20');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('321', 'DomainStatusSyncFrequency', '0', '2022-11-06 10:51:20', '2022-11-06 10:51:20');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('322', 'DomainTransferStatusCheckFrequency', '0', '2022-11-06 10:51:20', '2022-11-06 10:51:20');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('323', 'ModuleLogPruningEnabled', '1', '2022-11-06 10:51:20', '2022-12-03 03:56:02');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('324', 'ModuleLogRetentionDays', '60', '2022-11-06 10:51:20', '2022-12-03 03:56:02');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('325', 'MarketConnectDismissedPromos', '{\"1\":\"8.6.0-release.1\"}', '2022-11-06 10:56:13', '2022-11-06 10:56:13');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('326', 'PhpCompatLastScanTime', '{\"timestamp\":1667752038,\"loader\":\"12.0.2-release.1\",\"php\":80112,\"app\":\"8.6.0-release.1\"}', '2022-11-06 11:27:18', '2022-11-06 11:27:18');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('327', 'LoginFailures', 'a:3:{s:11:\"97.89.6.129\";a:2:{s:5:\"count\";i:1;s:7:\"expires\";i:1668983408;}s:18:\"2600:387:2:811::45\";a:2:{s:5:\"count\";i:1;s:7:\"expires\";i:1667927367;}s:39:\"2600:1700:2f80:38e0:b141:1c3a:1a86:7ee9\";a:2:{s:5:\"count\";i:1;s:7:\"expires\";i:1669308956;}}', '2022-11-06 11:45:07', '2022-11-24 11:25:56');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('328', 'UpdateMaintenanceMessage', 'We're currently down for maintenance! We'll be back shortly.', '2022-11-08 14:44:38', '2022-11-08 14:44:38');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('329', 'UpdateTempPath', '/var/www/whmcs-tmp/', '2022-11-08 14:46:21', '2022-11-08 14:46:21');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('330', 'UpdaterLTS', '{\"Active\":[\"8.6\"],\"LTS\":[\"8.5\",\"8.4\"]}', '2022-11-08 14:46:29', '2022-11-08 14:46:29');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('331', 'TOTPUsedOTPs', 'a:2:{s:32:\"be7b53954982d74cf79e9304438914ee\";i:1670033436;s:32:\"fda225f85b79fcc79af21713750ebe54\";i:1670033686;}', '2022-11-13 03:38:40', '2022-12-02 21:14:46');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('332', 'proxmox_vps_localkey', '=03OiYDN2IDNzEjYiVzN3IGMhdzNwEGN1UGZxIDNxIzYhljN4MTM0MDMwcjNxIiOyQjOztjIuV2avR3a\njVGajJiOwEjOztjIyAjMxIjMwIjI6gjOztjIlRXYkt2Ylh2YioTO6M3OiEjI6EjOztjIlNWayBVesxWY\n15mbBxGb1Z0ZulWehB1cpJiO1IjOztjI9ADSNZTSTple1clWqx2RUdWWYpVRKlXZioDNyozc7Iycu9Wa\n0B3blxmYhJXdnlmZu92YioTOxozc7ISMhNmNiRTZyATZkBTNmJ2NiVDOlFDM0MGMmhzYxYGN3IiOyMjO\nztjIoNXYoVDZtJiO3ozc7ISPlNnblNWaMBidlRkI6ITM6M3OiMnbvlGdw92ZpZmbvNmI6MTM6M3OiMFU\nWh3bth3byB3LzJXZ2JXZz9yclxWdk9WbvM3Yth2dvc3d39ichZ3LioTM0ozc7ISey9GdjVmcpRGZpxWY\n2JiO0EjOztjI04CO24SMz4iM3EDLzQjL5ITMugzMy4yMioDNyozc7ICcpRWasFmdiozN6M3OiAXdvJ3Z\nuYXZkJXYuVHbuIXZzVnL3d3dsAXdvJ3ZuYXZkJXYuVHbuIXZzVnI6MDN6M3Oi4Wah12bkRWasFmdioTM\nxozc7ISesxWY15mbBJiO4ozc7ISZsNWejdmbpxGbpJmI6ITM6M3OiMTMtETMtMjMwIjI6ATM6M3OiUGd\nhRWZ1RGd4VmbioTMxozc7IyMx0SMx0iMyAjMioDMxozc7ISZ0FGZnVmciozN6M3OiM1QNh0VgI3bGByU\nQZFIFZFI49Wb49mcQJiO0IjOztjIl1WYuR3Y1R2byBnI6ETM6M3OigDNiojM6M3OiQWa0NWdk9mcwJiO\n5ozc7IyM0IjNxEjI6YjOztjIklWZjlmdyV2cioTO6M3Oi82YuQGMwQGa1NHQuFGb5RmI6YTM6M3OiwWa\nh1WZioTN6M3OiU2ayVnQg4WYslHRioTMxozc7ISZtFmbkVmclR3cpdWZyJiO0EjOztjIlZXa0NWQiojN\n6M3OiMXd0FGdzJiO2ozc7pDOxoTYe5a59f910bfa41c69e25815ba0b0e83586accab26f502b4bbd2b\nf2fe88ed9fe5', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('333', 'FTPPassiveMode', 'on', '2022-11-15 20:26:54', '2022-11-15 20:26:54');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('334', 'FTPSecureMode', '', '2022-11-15 20:26:54', '2022-11-15 20:26:54');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('335', 'WhitelistedIPs', 'a:2:{i:0;a:2:{s:2:\"ip\";s:14:\"68.205.153.222\";s:4:\"note\";s:5:\"dylan\";}i:1;a:2:{s:2:\"ip\";s:11:\"97.89.6.129\";s:4:\"note\";s:6:\"winter\";}}', '2022-11-23 07:39:05', '2022-11-23 07:39:44');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('336', 'UpdaterUpdateToken', 'Gx3gv5tktbPJ5TZ7dCZVM4gR5UOgOAvetFCOWoxESMXaTD49yQuaxPVV2DNHq6qz', '2022-12-02 21:05:28', '2022-12-02 21:41:50');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('337', 'AutoUpdateCount', '5', '2022-12-02 21:05:49', '2022-12-02 21:41:53');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('338', 'AutoUpdateInProgress', '1', '2022-12-02 21:05:49', '2022-12-02 21:05:49');INSERT INTO `tblconfiguration` (`id`, `setting`, `value`, `created_at`, `updated_at`) VALUES ('339', 'AutoUpdateAdminId', '1', '2022-12-02 21:05:49', '2022-12-02 21:05:49');/*!40000 ALTER TABLE `tblconfiguration` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblcontacts`--DROP TABLE IF EXISTS `tblcontacts`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblcontacts` ( `id` int(10) NOT NULL AUTO_INCREMENT, `userid` int(10) NOT NULL, `firstname` text NOT NULL, `lastname` text NOT NULL, `companyname` text NOT NULL, `email` text NOT NULL, `address1` text NOT NULL, `address2` text NOT NULL, `city` text NOT NULL, `state` text NOT NULL, `postcode` text NOT NULL, `country` text NOT NULL, `phonenumber` text NOT NULL, `tax_id` varchar(128) NOT NULL DEFAULT '', `subaccount` int(1) NOT NULL DEFAULT 0, `password` text NOT NULL, `permissions` text NOT NULL, `domainemails` int(1) NOT NULL, `generalemails` int(1) NOT NULL, `invoiceemails` int(1) NOT NULL, `productemails` int(1) NOT NULL, `supportemails` int(1) NOT NULL, `affiliateemails` int(1) NOT NULL, `pwresetkey` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `pwresetexpiry` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `userid_firstname_lastname` (`userid`,`firstname`(32),`lastname`(32)), KEY `email` (`email`(64))) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblcontacts`--LOCK TABLES `tblcontacts` WRITE;/*!40000 ALTER TABLE `tblcontacts` DISABLE KEYS */;INSERT INTO `tblcontacts` (`id`, `userid`, `firstname`, `lastname`, `companyname`, `email`, `address1`, `address2`, `city`, `state`, `postcode`, `country`, `phonenumber`, `tax_id`, `subaccount`, `password`, `permissions`, `domainemails`, `generalemails`, `invoiceemails`, `productemails`, `supportemails`, `affiliateemails`, `pwresetkey`, `created_at`, `updated_at`, `pwresetexpiry`) VALUES ('1', '5', 'Alex', 'Clark', 'Lunar', 'winter@lunardev.group', '280 stanebrook ct', '', 'Jackson', 'Georgia', '30233', 'US', '+1.678-818-5810', '', '0', '', '', '0', '0', '0', '0', '0', '0', '', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');/*!40000 ALTER TABLE `tblcontacts` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblcredit`--DROP TABLE IF EXISTS `tblcredit`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblcredit` ( `id` int(10) NOT NULL AUTO_INCREMENT, `clientid` int(10) NOT NULL, `admin_id` int(10) unsigned NOT NULL DEFAULT 0, `date` date NOT NULL, `description` text NOT NULL, `amount` decimal(16,2) NOT NULL, `relid` int(10) NOT NULL DEFAULT 0, PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblcredit`--LOCK TABLES `tblcredit` WRITE;/*!40000 ALTER TABLE `tblcredit` DISABLE KEYS */;INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('1', '8', '1', '2022-11-13', 'YEAAA BABYYY', '70000000.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('2', '8', '0', '2022-11-13', 'Credit Applied to Invoice #13', '-10.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('3', '8', '0', '2022-11-13', 'Upgrade/Downgrade Credit', '7.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('4', '8', '1', '2022-11-13', '', '999999999.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('5', '8', '1', '2022-11-13', '', '999999999.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('6', '8', '1', '2022-11-13', '', '999999999.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('7', '8', '1', '2022-11-13', '', '999999999.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('8', '8', '1', '2022-11-13', '', '999999999.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('9', '8', '1', '2022-11-13', '', '999999999.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('10', '8', '1', '2022-11-13', '', '999999999.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('11', '8', '1', '2022-11-13', '', '70000000000.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('12', '8', '1', '2022-11-13', '', '70000000000.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('13', '8', '1', '2022-11-13', '', '70000000000.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('14', '8', '1', '2022-11-13', '', '70000000000.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('15', '8', '1', '2022-11-13', '', '70000000000.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('16', '8', '1', '2022-11-13', '', '70000000000.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('17', '8', '1', '2022-11-13', '', '700000000000.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('18', '8', '1', '2022-11-13', '', '1127069999990.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('19', '8', '1', '2022-11-13', '', '1127069999990.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('20', '8', '1', '2022-11-13', '', '1127069999990.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('21', '8', '1', '2022-11-13', '', '4508279999960.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('22', '8', '0', '2022-11-13', 'Credit Applied to Invoice #15', '-9016559999920.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('23', '8', '1', '2022-11-13', '', '90165599999200.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('24', '8', '0', '2022-11-13', 'Credit Applied to Invoice #17', '-50050.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('25', '8', '0', '2022-11-13', 'Credit Applied to Invoice #18', '-5.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('26', '8', '0', '2022-11-13', 'Credit Removed - Reason: Order status changed to Cancelled - Invoice #17', '50050.00', '0');INSERT INTO `tblcredit` (`id`, `clientid`, `admin_id`, `date`, `description`, `amount`, `relid`) VALUES ('27', '8', '0', '2022-11-29', 'Credit Applied to Invoice #20', '-5.00', '0');/*!40000 ALTER TABLE `tblcredit` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblcreditcards`--DROP TABLE IF EXISTS `tblcreditcards`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblcreditcards` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `pay_method_id` int(11) NOT NULL DEFAULT 0, `card_type` varchar(255) NOT NULL DEFAULT '', `last_four` varchar(255) NOT NULL DEFAULT '', `expiry_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `card_data` blob NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `tblcreditcards_pay_method_id` (`pay_method_id`), KEY `tblcreditcards_last_four` (`last_four`(4))) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblcreditcards`--LOCK TABLES `tblcreditcards` WRITE;/*!40000 ALTER TABLE `tblcreditcards` DISABLE KEYS */;INSERT INTO `tblcreditcards` (`id`, `pay_method_id`, `card_type`, `last_four`, `expiry_date`, `card_data`, `created_at`, `updated_at`, `deleted_at`) VALUES ('1', '1', 'Visa', '2453', '2027-12-31 00:00:00', '4e916173be55b6ce4c2b1943d569970910222b38b4fd6d68ffa161d7b08876e73cba6fcaf5246f8bce5ed12a93d8152d9006f1f684c4c86b7cb3c8cbb1d1e8067d257e3d07783e90c49cc48c6476f36a0d2489b28659319e35d86858c341c32757b7082b602fe1c343d5c69f8e7049a9', '2022-11-06 19:18:35', '2022-11-06 19:18:35', NULL);/*!40000 ALTER TABLE `tblcreditcards` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblcurrencies`--DROP TABLE IF EXISTS `tblcurrencies`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblcurrencies` ( `id` int(10) NOT NULL AUTO_INCREMENT, `code` text NOT NULL, `prefix` text NOT NULL, `suffix` text NOT NULL, `format` int(1) NOT NULL, `rate` decimal(10,5) NOT NULL DEFAULT 1.00000, `default` int(1) NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblcurrencies`--LOCK TABLES `tblcurrencies` WRITE;/*!40000 ALTER TABLE `tblcurrencies` DISABLE KEYS */;INSERT INTO `tblcurrencies` (`id`, `code`, `prefix`, `suffix`, `format`, `rate`, `default`) VALUES ('1', 'USD', '$', ' USD', '2', '1.00000', '1');/*!40000 ALTER TABLE `tblcurrencies` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblcustomfields`--DROP TABLE IF EXISTS `tblcustomfields`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblcustomfields` ( `id` int(10) NOT NULL AUTO_INCREMENT, `type` text NOT NULL, `relid` int(10) NOT NULL DEFAULT 0, `fieldname` text NOT NULL, `fieldtype` text NOT NULL, `description` text NOT NULL, `fieldoptions` text NOT NULL, `regexpr` text NOT NULL, `adminonly` text NOT NULL, `required` text NOT NULL, `showorder` text NOT NULL, `showinvoice` text NOT NULL, `sortorder` int(10) NOT NULL DEFAULT 0, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `serviceid` (`relid`)) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblcustomfields`--LOCK TABLES `tblcustomfields` WRITE;/*!40000 ALTER TABLE `tblcustomfields` DISABLE KEYS */;INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('1', 'product', '13', 'PGUSER', 'text', 'The username for your Postgres database', '', '', '', 'on', 'on', 'on', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('2', 'product', '13', 'PGPASSWORD', 'password', 'The password for your Postgres database', '', '', '', 'on', 'on', 'on', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('3', 'product', '2', 'MINECRAFT_VERSION', 'text', 'The version of Minecraft to be deployed with your PaperMC server. If not provided, defaults to latest.', '', '', '', '', 'on', 'on', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('4', 'product', '3', 'MINECRAFT_VERSION', 'text', 'The version of Minecraft to be deployed with your PaperMC server. If not provided, defaults to latest.', '', '', '', '', 'on', 'on', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('5', 'product', '5', 'MINECRAFT_VERSION', 'text', 'The version of Minecraft to be deployed with your PaperMC server. If not provided, defaults to latest.', '', '', '', '', 'on', 'on', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('6', 'product', '4', 'MINECRAFT_VERSION', 'text', 'The version of Minecraft to be deployed with your PaperMC server. If not provided, defaults to latest.', '', '', '', '', 'on', 'on', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('7', 'product', '6', 'GIT_ADDRESS', 'text', 'The git repo belonging to your bot (if applicable)', '', '', '', '', 'on', 'on', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('8', 'product', '6', 'BRANCH', 'text', 'Git branch to pull changes from (if applicable)', '', '', '', '', 'on', 'on', '1', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('9', 'product', '6', 'JS_FILE', 'text', 'The main JS file that starts the app (ex: index.js)', '', '', '', '', 'on', 'on', '3', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('10', 'product', '6', 'ACCESS_TOKEN', 'password', 'Your git access token to authenticate with (required for private repositories)', '', '', '', '', 'on', 'on', '2', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('11', 'product', '6', 'USERNAME', 'text', 'Your GitHub username to authenticate with (required for private repositories)', '', '', '', '', 'on', 'on', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('12', 'product', '14', 'GIT_ADDRESS', 'text', 'The git repo belonging to your bot (if applicable)', '', '', '', '', 'on', 'on', '0', '2022-11-08 17:13:14', '2022-11-08 17:13:14');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('13', 'product', '14', 'USERNAME', 'text', 'Your GitHub username to authenticate with (required for private repositories)', '', '', '', '', 'on', 'on', '0', '2022-11-08 17:13:14', '2022-11-08 17:13:14');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('14', 'product', '14', 'BRANCH', 'text', 'Git branch to pull changes from (if applicable)', '', '', '', '', 'on', 'on', '1', '2022-11-08 17:13:14', '2022-11-08 17:13:14');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('15', 'product', '14', 'ACCESS_TOKEN', 'password', 'Your git access token to authenticate with (required for private repositories)', '', '', '', '', 'on', 'on', '2', '2022-11-08 17:13:14', '2022-11-08 17:13:14');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('16', 'product', '14', 'JS_FILE', 'text', 'The main JS file that starts the app (ex: index.js)', '', '', '', '', 'on', 'on', '3', '2022-11-08 17:13:14', '2022-11-08 17:13:14');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('17', 'product', '15', 'GIT_ADDRESS', 'text', 'The git repo belonging to your bot (if applicable)', '', '', '', '', 'on', 'on', '0', '2022-11-08 17:15:26', '2022-11-08 17:15:26');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('18', 'product', '15', 'USERNAME', 'text', 'Your GitHub username to authenticate with (required for private repositories)', '', '', '', '', 'on', 'on', '0', '2022-11-08 17:15:26', '2022-11-08 17:15:26');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('19', 'product', '15', 'BRANCH', 'text', 'Git branch to pull changes from (if applicable)', '', '', '', '', 'on', 'on', '1', '2022-11-08 17:15:26', '2022-11-08 17:15:26');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('20', 'product', '15', 'ACCESS_TOKEN', 'password', 'Your git access token to authenticate with (required for private repositories)', '', '', '', '', 'on', 'on', '2', '2022-11-08 17:15:26', '2022-11-08 17:15:26');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('21', 'product', '15', 'PY_FILE', 'text', 'The main PY file that starts the app (ex: index.py)', '', '', '', '', 'on', 'on', '3', '2022-11-08 17:15:26', '2022-11-08 17:15:26');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('22', 'product', '16', 'GIT_ADDRESS', 'text', 'The git repo belonging to your bot (if applicable)', '', '', '', '', 'on', 'on', '0', '2022-11-08 17:18:46', '2022-11-08 17:18:46');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('23', 'product', '16', 'USERNAME', 'text', 'Your GitHub username to authenticate with (required for private repositories)', '', '', '', '', 'on', 'on', '0', '2022-11-08 17:18:46', '2022-11-08 17:18:46');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('24', 'product', '16', 'BRANCH', 'text', 'Git branch to pull changes from (if applicable)', '', '', '', '', 'on', 'on', '1', '2022-11-08 17:18:46', '2022-11-08 17:18:46');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('25', 'product', '16', 'ACCESS_TOKEN', 'password', 'Your git access token to authenticate with (required for private repositories)', '', '', '', '', 'on', 'on', '2', '2022-11-08 17:18:46', '2022-11-08 17:18:46');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('26', 'product', '16', 'PY_FILE', 'text', 'The main PY file that starts the app (ex: index.py)', '', '', '', '', 'on', 'on', '3', '2022-11-08 17:18:46', '2022-11-08 17:18:46');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('27', 'product', '12', 'WORLD_SIZE', 'dropdown', 'Defines the worlds size. 3 sizes 1 (small), 2 (medium), 3 (large).', '1,2,3', '', '', 'on', 'on', 'on', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('28', 'product', '12', 'MAX_PLAYERS', 'dropdown', 'The maximum number of players a server will hold.', '2,4,6', '', '', 'on', 'on', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('29', 'product', '12', 'WORLD_DIFFICULTY', 'dropdown', 'World Difficulty : 0(normal), 1(expert), 2(master), 3(journey) | Defaults to Normal difficulty', '0,1,2,3', '', '', '', 'on', 'on', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('31', 'product', '18', 'WORLD_SIZE', 'dropdown', 'Defines the worlds size. 3 sizes 1 (small), 2 (medium), 3 (large).', '1,2,3', '', '', 'on', 'on', 'on', '0', '2022-11-13 08:04:49', '2022-11-13 08:04:49');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('32', 'product', '18', 'MAX_PLAYERS', 'dropdown', 'The maximum number of players a server will hold.', '2,4,6', '', '', 'on', 'on', '', '0', '2022-11-13 08:04:49', '2022-11-13 08:04:49');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('33', 'product', '18', 'WORLD_DIFFICULTY', 'dropdown', 'World Difficulty : 0(normal), 1(expert), 2(master), 3(journey) | Defaults to Normal difficulty', '0,1,2,3', '', '', '', 'on', 'on', '0', '2022-11-13 08:04:49', '2022-11-13 08:04:49');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('34', 'product', '19', 'WORLD_SIZE', 'dropdown', 'Defines the worlds size. 3 sizes 1 (small), 2 (medium), 3 (large).', '1,2,3', '', '', 'on', 'on', 'on', '0', '2022-11-13 09:28:23', '2022-11-13 09:28:23');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('35', 'product', '19', 'MAX_PLAYERS', 'dropdown', 'The maximum number of players a server will hold.', '2,4,6', '', '', 'on', 'on', '', '0', '2022-11-13 09:28:23', '2022-11-13 09:28:23');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('36', 'product', '19', 'WORLD_DIFFICULTY', 'dropdown', 'World Difficulty : 0(normal), 1(expert), 2(master), 3(journey) | Defaults to Normal difficulty', '0,1,2,3', '', '', '', 'on', 'on', '0', '2022-11-13 09:28:23', '2022-11-13 09:28:23');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('39', 'product', '20', 'vmid|VMID', 'text', '', '', '', 'on', '', '', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('40', 'product', '20', 'node|Node', 'text', '', '', '', 'on', '', '', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('41', 'product', '20', 'VLAN Tag|VLAN Tag', 'text', '', '', '', 'on', '', '', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('42', 'product', '20', 'userName|Username', 'text', '', '', '', 'on', '', '', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('43', 'product', '20', 'ciuser|Cloud-Init User', 'text', '', '', '', 'on', '', '', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('44', 'product', '20', 'cipassword|Cloud-Init Password', 'password', '', '', '', '', '', '', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('45', 'product', '20', 'sshkeys|SSH Public Key', 'textarea', 'Enter your public key in the OpenSSH format here (e.g. ssh-rsa).', '', '#ssh-rsa AAAA[0-9A-Za-z+/]+[=]{0,3}( [^@]+@[^@]+)?#', 'on', '', 'on', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('46', 'product', '21', 'vmid|VMID', 'text', '', '', '', 'on', '', '', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('47', 'product', '21', 'node|Node', 'text', '', '', '', 'on', '', '', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('48', 'product', '21', 'VLAN Tag|VLAN Tag', 'text', '', '', '', 'on', '', '', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('49', 'product', '21', 'userName|Username', 'text', '', '', '', 'on', '', '', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('50', 'product', '21', 'ciuser|Cloud-Init User', 'text', '', '', '', 'on', '', '', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('51', 'product', '21', 'cipassword|Cloud-Init Password', 'password', '', '', '', '', '', '', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('52', 'product', '21', 'sshkeys|SSH Public Key', 'textarea', 'Enter your public key in the OpenSSH format here (e.g. ssh-rsa).', '', '#ssh-rsa AAAA[0-9A-Za-z+/]+[=]{0,3}( [^@]+@[^@]+)?#', 'on', '', 'on', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('53', 'product', '22', 'vmid|VMID', 'text', '', '', '', 'on', '', '', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('54', 'product', '22', 'node|Node', 'text', '', '', '', 'on', '', '', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('55', 'product', '22', 'VLAN Tag|VLAN Tag', 'text', '', '', '', 'on', '', '', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('56', 'product', '22', 'userName|Username', 'text', '', '', '', 'on', '', '', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('57', 'product', '22', 'ciuser|Cloud-Init User', 'text', '', '', '', 'on', '', '', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('58', 'product', '22', 'cipassword|Cloud-Init Password', 'password', '', '', '', '', '', '', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tblcustomfields` (`id`, `type`, `relid`, `fieldname`, `fieldtype`, `description`, `fieldoptions`, `regexpr`, `adminonly`, `required`, `showorder`, `showinvoice`, `sortorder`, `created_at`, `updated_at`) VALUES ('59', 'product', '22', 'sshkeys|SSH Public Key', 'textarea', 'Enter your public key in the OpenSSH format here (e.g. ssh-rsa).', '', '#ssh-rsa AAAA[0-9A-Za-z+/]+[=]{0,3}( [^@]+@[^@]+)?#', 'on', '', 'on', '', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00');/*!40000 ALTER TABLE `tblcustomfields` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblcustomfieldsvalues`--DROP TABLE IF EXISTS `tblcustomfieldsvalues`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblcustomfieldsvalues` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `fieldid` int(10) NOT NULL, `relid` int(10) NOT NULL, `value` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `fieldid_relid` (`fieldid`,`relid`)) ENGINE=InnoDB AUTO_INCREMENT=522 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblcustomfieldsvalues`--LOCK TABLES `tblcustomfieldsvalues` WRITE;/*!40000 ALTER TABLE `tblcustomfieldsvalues` DISABLE KEYS */;INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('1', '1', '12', 'Test', '2022-11-08 17:01:53', '2022-11-08 17:01:53');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('2', '2', '12', 'Test', '2022-11-08 17:01:53', '2022-11-08 17:01:53');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('3', '6', '13', '1.18', '2022-11-12 06:11:27', '2022-11-12 06:11:27');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('5', '3', '14', '1.8.8', '0000-00-00 00:00:00', '2022-11-13 04:09:22');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('6', '6', '15', '1.19', '2022-11-13 07:29:37', '2022-11-13 07:29:37');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('7', '6', '16', '1.16', '2022-11-13 07:29:37', '2022-11-13 07:29:37');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('8', '6', '17', '1.4', '2022-11-13 07:29:37', '2022-11-13 07:29:37');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('9', '6', '18', '1.17', '2022-11-13 07:29:37', '2022-11-13 07:29:37');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('10', '6', '19', '1.14.5', '2022-11-13 07:29:37', '2022-11-13 07:29:37');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('11', '30', '20', '', '2022-11-13 07:29:37', '2022-11-13 07:29:37');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('12', '30', '21', '', '2022-11-13 07:29:37', '2022-11-13 07:29:37');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('13', '30', '22', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('14', '30', '23', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('15', '30', '24', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('16', '30', '25', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('17', '30', '26', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('18', '30', '27', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('19', '30', '28', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('20', '30', '29', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('21', '30', '30', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('22', '30', '31', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('23', '30', '32', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('24', '30', '33', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('25', '30', '34', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('26', '30', '35', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('27', '30', '36', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('28', '30', '37', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('29', '30', '38', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('30', '30', '39', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('31', '30', '40', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('32', '30', '41', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('33', '30', '42', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('34', '30', '43', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('35', '30', '44', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('36', '30', '45', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('37', '30', '46', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('38', '30', '47', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('39', '30', '48', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('40', '30', '49', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('41', '30', '50', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('42', '30', '51', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('43', '30', '52', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('44', '30', '53', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('45', '30', '54', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('46', '30', '55', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('47', '30', '56', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('48', '30', '57', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('49', '30', '58', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('50', '30', '59', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('51', '30', '60', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('52', '30', '61', '', '2022-11-13 07:29:38', '2022-11-13 07:29:38');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('53', '30', '62', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('54', '30', '63', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('55', '30', '64', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('56', '30', '65', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('57', '30', '66', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('58', '30', '67', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('59', '30', '68', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('60', '30', '69', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('61', '30', '70', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('62', '30', '71', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('63', '30', '72', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('64', '30', '73', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('65', '30', '74', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('66', '30', '75', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('67', '30', '76', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('68', '30', '77', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('69', '30', '78', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('70', '30', '79', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('71', '30', '80', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('72', '30', '81', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('73', '30', '82', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('74', '30', '83', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('75', '30', '84', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('76', '30', '85', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('77', '30', '86', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('78', '30', '87', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('79', '30', '88', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('80', '30', '89', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('81', '30', '90', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('82', '30', '91', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('83', '30', '92', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('84', '30', '93', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('85', '30', '94', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('86', '30', '95', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('87', '30', '96', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('88', '30', '97', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('89', '30', '98', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('90', '30', '99', '', '2022-11-13 07:29:39', '2022-11-13 07:29:39');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('91', '30', '100', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('92', '30', '101', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('93', '30', '102', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('94', '30', '103', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('95', '30', '104', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('96', '30', '105', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('97', '30', '106', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('98', '30', '107', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('99', '30', '108', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('100', '30', '109', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('101', '30', '110', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('102', '30', '111', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('103', '30', '112', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('104', '30', '113', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('105', '30', '114', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('106', '30', '115', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('107', '30', '116', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('108', '30', '117', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('109', '30', '118', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('110', '30', '119', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('111', '30', '120', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('112', '30', '121', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('113', '30', '122', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('114', '30', '123', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('115', '30', '124', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('116', '30', '125', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('117', '30', '126', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('118', '30', '127', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('119', '30', '128', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('120', '30', '129', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('121', '30', '130', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('122', '30', '131', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('123', '30', '132', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('124', '30', '133', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('125', '30', '134', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('126', '30', '135', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('127', '30', '136', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('128', '30', '137', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('129', '30', '138', '', '2022-11-13 07:29:40', '2022-11-13 07:29:40');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('130', '30', '139', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('131', '30', '140', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('132', '30', '141', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('133', '30', '142', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('134', '30', '143', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('135', '30', '144', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('136', '30', '145', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('137', '30', '146', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('138', '30', '147', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('139', '30', '148', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('140', '30', '149', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('141', '30', '150', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('142', '30', '151', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('143', '30', '152', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('144', '30', '153', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('145', '30', '154', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('146', '30', '155', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('147', '30', '156', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('148', '30', '157', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('149', '30', '158', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('150', '30', '159', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('151', '30', '160', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('152', '30', '161', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('153', '30', '162', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('154', '30', '163', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('155', '30', '164', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('156', '30', '165', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('157', '30', '166', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('158', '30', '167', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('159', '30', '168', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('160', '30', '169', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('161', '30', '170', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('162', '30', '171', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('163', '30', '172', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('164', '30', '173', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('165', '30', '174', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('166', '30', '175', '', '2022-11-13 07:29:41', '2022-11-13 07:29:41');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('167', '30', '176', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('168', '30', '177', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('169', '30', '178', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('170', '30', '179', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('171', '30', '180', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('172', '30', '181', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('173', '30', '182', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('174', '30', '183', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('175', '30', '184', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('176', '30', '185', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('177', '30', '186', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('178', '30', '187', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('179', '30', '188', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('180', '30', '189', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('181', '30', '190', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('182', '30', '191', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('183', '30', '192', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('184', '30', '193', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('185', '30', '194', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('186', '30', '195', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('187', '30', '196', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('188', '30', '197', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('189', '30', '198', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('190', '30', '199', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('191', '30', '200', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('192', '30', '201', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('193', '30', '202', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('194', '30', '203', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('195', '30', '204', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('196', '30', '205', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('197', '30', '206', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('198', '30', '207', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('199', '30', '208', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('200', '30', '209', '', '2022-11-13 07:29:42', '2022-11-13 07:29:42');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('201', '30', '210', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('202', '30', '211', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('203', '30', '212', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('204', '30', '213', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('205', '30', '214', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('206', '30', '215', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('207', '30', '216', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('208', '30', '217', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('209', '30', '218', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('210', '30', '219', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('211', '30', '220', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('212', '30', '221', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('213', '30', '222', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('214', '30', '223', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('215', '30', '224', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('216', '30', '225', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('217', '30', '226', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('218', '30', '227', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('219', '30', '228', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('220', '30', '229', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('221', '30', '230', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('222', '30', '231', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('223', '30', '232', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('224', '30', '233', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('225', '30', '234', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('226', '30', '235', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('227', '30', '236', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('228', '30', '237', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('229', '30', '238', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('230', '30', '239', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('231', '30', '240', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('232', '30', '241', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('233', '30', '242', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('234', '30', '243', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('235', '30', '244', '', '2022-11-13 07:29:43', '2022-11-13 07:29:43');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('236', '30', '245', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('237', '30', '246', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('238', '30', '247', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('239', '30', '248', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('240', '30', '249', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('241', '30', '250', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('242', '30', '251', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('243', '30', '252', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('244', '30', '253', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('245', '30', '254', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('246', '30', '255', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('247', '30', '256', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('248', '30', '257', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('249', '30', '258', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('250', '30', '259', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('251', '30', '260', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('252', '30', '261', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('253', '30', '262', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('254', '30', '263', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('255', '30', '264', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('256', '30', '265', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('257', '30', '266', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('258', '30', '267', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('259', '30', '268', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('260', '30', '269', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('261', '30', '270', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('262', '30', '271', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('263', '30', '272', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('264', '30', '273', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('265', '30', '274', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('266', '30', '275', '', '2022-11-13 07:29:44', '2022-11-13 07:29:44');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('267', '30', '276', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('268', '30', '277', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('269', '30', '278', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('270', '30', '279', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('271', '30', '280', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('272', '30', '281', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('273', '30', '282', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('274', '30', '283', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('275', '30', '284', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('276', '30', '285', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('277', '30', '286', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('278', '30', '287', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('279', '30', '288', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('280', '30', '289', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('281', '30', '290', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('282', '30', '291', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('283', '30', '292', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('284', '30', '293', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('285', '30', '294', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('286', '30', '295', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('287', '30', '296', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('288', '30', '297', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('289', '30', '298', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('290', '30', '299', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('291', '30', '300', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('292', '30', '301', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('293', '30', '302', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('294', '30', '303', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('295', '30', '304', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('296', '30', '305', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('297', '30', '306', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('298', '30', '307', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('299', '30', '308', '', '2022-11-13 07:29:45', '2022-11-13 07:29:45');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('300', '30', '309', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('301', '30', '310', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('302', '30', '311', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('303', '30', '312', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('304', '30', '313', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('305', '30', '314', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('306', '30', '315', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('307', '30', '316', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('308', '30', '317', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('309', '30', '318', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('310', '30', '319', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('311', '30', '320', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('312', '30', '321', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('313', '30', '322', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('314', '30', '323', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('315', '30', '324', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('316', '30', '325', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('317', '30', '326', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('318', '30', '327', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('319', '30', '328', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('320', '30', '329', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('321', '30', '330', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('322', '30', '331', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('323', '30', '332', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('324', '30', '333', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('325', '30', '334', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('326', '30', '335', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('327', '30', '336', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('328', '30', '337', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('329', '30', '338', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('330', '30', '339', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('331', '30', '340', '', '2022-11-13 07:29:46', '2022-11-13 07:29:46');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('332', '30', '341', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('333', '30', '342', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('334', '30', '343', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('335', '30', '344', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('336', '30', '345', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('337', '30', '346', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('338', '30', '347', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('339', '30', '348', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('340', '30', '349', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('341', '30', '350', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('342', '30', '351', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('343', '30', '352', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('344', '30', '353', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('345', '30', '354', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('346', '30', '355', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('347', '30', '356', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('348', '30', '357', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('349', '30', '358', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('350', '30', '359', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('351', '30', '360', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('352', '30', '361', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('353', '30', '362', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('354', '30', '363', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('355', '30', '364', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('356', '30', '365', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('357', '30', '366', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('358', '30', '367', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('359', '30', '368', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('360', '30', '369', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('361', '30', '370', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('362', '30', '371', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('363', '30', '372', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('364', '30', '373', '', '2022-11-13 07:29:47', '2022-11-13 07:29:47');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('365', '30', '374', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('366', '30', '375', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('367', '30', '376', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('368', '30', '377', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('369', '30', '378', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('370', '30', '379', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('371', '30', '380', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('372', '30', '381', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('373', '30', '382', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('374', '30', '383', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('375', '30', '384', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('376', '30', '385', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('377', '30', '386', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('378', '30', '387', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('379', '30', '388', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('380', '30', '389', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('381', '30', '390', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('382', '30', '391', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('383', '30', '392', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('384', '30', '393', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('385', '30', '394', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('386', '30', '395', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('387', '30', '396', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('388', '30', '397', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('389', '30', '398', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('390', '30', '399', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('391', '30', '400', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('392', '30', '401', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('393', '30', '402', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('394', '30', '403', '', '2022-11-13 07:29:48', '2022-11-13 07:29:48');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('395', '30', '404', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('396', '30', '405', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('397', '30', '406', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('398', '30', '407', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('399', '30', '408', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('400', '30', '409', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('401', '30', '410', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('402', '30', '411', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('403', '30', '412', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('404', '30', '413', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('405', '30', '414', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('406', '30', '415', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('407', '30', '416', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('408', '30', '417', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('409', '30', '418', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('410', '30', '419', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('411', '30', '420', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('412', '30', '421', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('413', '30', '422', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('414', '30', '423', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('415', '30', '424', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('416', '30', '425', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('417', '30', '426', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('418', '30', '427', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('419', '30', '428', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('420', '30', '429', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('421', '30', '430', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('422', '30', '431', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('423', '30', '432', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('424', '30', '433', '', '2022-11-13 07:29:49', '2022-11-13 07:29:49');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('425', '30', '434', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('426', '30', '435', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('427', '30', '436', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('428', '30', '437', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('429', '30', '438', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('430', '30', '439', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('431', '30', '440', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('432', '30', '441', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('433', '30', '442', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('434', '30', '443', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('435', '30', '444', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('436', '30', '445', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('437', '30', '446', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('438', '30', '447', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('439', '30', '448', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('440', '30', '449', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('441', '30', '450', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('442', '30', '451', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('443', '30', '452', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('444', '30', '453', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('445', '30', '454', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('446', '30', '455', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('447', '30', '456', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('448', '30', '457', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('449', '30', '458', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('450', '30', '459', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('451', '30', '460', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('452', '30', '461', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('453', '30', '462', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('454', '30', '463', '', '2022-11-13 07:29:50', '2022-11-13 07:29:50');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('455', '30', '464', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('456', '30', '465', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('457', '30', '466', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('458', '30', '467', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('459', '30', '468', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('460', '30', '469', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('461', '30', '470', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('462', '30', '471', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('463', '30', '472', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('464', '30', '473', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('465', '30', '474', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('466', '30', '475', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('467', '30', '476', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('468', '30', '477', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('469', '30', '478', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('470', '30', '479', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('471', '30', '480', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('472', '30', '481', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('473', '30', '482', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('474', '30', '483', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('475', '30', '484', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('476', '30', '485', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('477', '30', '486', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('478', '30', '487', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('479', '30', '488', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('480', '30', '489', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('481', '30', '490', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('482', '30', '491', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('483', '30', '492', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('484', '30', '493', '', '2022-11-13 07:29:51', '2022-11-13 07:29:51');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('485', '30', '494', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('486', '30', '495', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('487', '30', '496', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('488', '30', '497', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('489', '30', '498', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('490', '30', '499', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('491', '30', '500', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('492', '30', '501', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('493', '30', '502', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('494', '30', '503', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('495', '30', '504', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('496', '30', '505', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('497', '30', '506', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('498', '30', '507', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('499', '30', '508', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('500', '30', '509', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('501', '30', '510', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('502', '30', '511', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('503', '30', '512', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('504', '30', '513', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('505', '30', '514', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('506', '30', '515', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('507', '30', '516', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('508', '30', '517', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('509', '30', '518', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('510', '30', '519', '', '2022-11-13 07:29:52', '2022-11-13 07:29:52');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('511', '27', '520', '1', '2022-11-13 07:42:09', '2022-11-13 07:42:09');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('512', '28', '520', '2', '2022-11-13 07:42:09', '2022-11-13 07:42:09');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('513', '29', '520', '', '2022-11-13 07:42:09', '2022-11-13 07:42:09');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('514', '34', '521', '3', '2022-11-13 09:54:09', '2022-11-13 09:54:09');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('515', '35', '521', '6', '2022-11-13 09:54:09', '2022-11-13 09:54:09');INSERT INTO `tblcustomfieldsvalues` (`id`, `fieldid`, `relid`, `value`, `created_at`, `updated_at`) VALUES ('516', '36', '521', '0', '2022-11-13 09:54:09', '2022-11-13 09:54:09');/*!40000 ALTER TABLE `tblcustomfieldsvalues` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tbldeviceauth`--DROP TABLE IF EXISTS `tbldeviceauth`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tbldeviceauth` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `identifier` varchar(255) NOT NULL DEFAULT '', `secret` varchar(255) NOT NULL DEFAULT '', `compat_secret` varchar(255) NOT NULL DEFAULT '', `user_id` int(11) NOT NULL DEFAULT 0, `is_admin` tinyint(1) NOT NULL DEFAULT 0, `role_ids` text NOT NULL, `description` varchar(255) NOT NULL DEFAULT '', `last_access` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `tbldeviceauth_identifier_unique` (`identifier`)) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tbldeviceauth`--LOCK TABLES `tbldeviceauth` WRITE;/*!40000 ALTER TABLE `tbldeviceauth` DISABLE KEYS */;INSERT INTO `tbldeviceauth` (`id`, `identifier`, `secret`, `compat_secret`, `user_id`, `is_admin`, `role_ids`, `description`, `last_access`, `created_at`, `updated_at`, `deleted_at`) VALUES ('1', 'lyCsze18ikxVxivT7bCCxXWnza1m66Kz', '$2y$10$quZzfwtAiq0zAKMFoGJ1WewmEZOtUlq3BQzrwDgELM8vq65sKvLDy', '$2y$10$6bH4xshmMn1adFNTIrMHiuwqUBR4equXAt/.NC27uDtanpi9Li6Ze', '1', '1', '[1]', 'Mobile', '0000-00-00 00:00:00', '2022-11-06 09:19:35', '2022-11-06 09:20:42', '2022-11-06 09:20:41');/*!40000 ALTER TABLE `tbldeviceauth` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tbldomain_lookup_configuration`--DROP TABLE IF EXISTS `tbldomain_lookup_configuration`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tbldomain_lookup_configuration` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `registrar` varchar(32) NOT NULL DEFAULT '', `setting` varchar(128) NOT NULL DEFAULT '', `value` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `registrar_setting_index` (`registrar`,`setting`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tbldomain_lookup_configuration`--LOCK TABLES `tbldomain_lookup_configuration` WRITE;/*!40000 ALTER TABLE `tbldomain_lookup_configuration` DISABLE KEYS */;/*!40000 ALTER TABLE `tbldomain_lookup_configuration` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tbldomainpricing`--DROP TABLE IF EXISTS `tbldomainpricing`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tbldomainpricing` ( `id` int(10) NOT NULL AUTO_INCREMENT, `extension` text NOT NULL, `dnsmanagement` tinyint(1) NOT NULL, `emailforwarding` tinyint(1) NOT NULL, `idprotection` tinyint(1) NOT NULL, `eppcode` tinyint(1) NOT NULL, `autoreg` text NOT NULL, `order` int(1) NOT NULL DEFAULT 0, `group` varchar(5) NOT NULL DEFAULT 'none', `grace_period` int(1) NOT NULL DEFAULT -1, `grace_period_fee` decimal(16,2) NOT NULL DEFAULT 0.00, `redemption_grace_period` int(1) NOT NULL DEFAULT -1, `redemption_grace_period_fee` decimal(16,2) NOT NULL DEFAULT -1.00, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `extension_registrationperiod` (`extension`(32)), KEY `order` (`order`)) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tbldomainpricing`--LOCK TABLES `tbldomainpricing` WRITE;/*!40000 ALTER TABLE `tbldomainpricing` DISABLE KEYS */;INSERT INTO `tbldomainpricing` (`id`, `extension`, `dnsmanagement`, `emailforwarding`, `idprotection`, `eppcode`, `autoreg`, `order`, `group`, `grace_period`, `grace_period_fee`, `redemption_grace_period`, `redemption_grace_period_fee`, `created_at`, `updated_at`) VALUES ('1', '.com', '0', '0', '0', '1', 'enom', '1', '', '-1', '0.00', '-1', '-1.00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tbldomainpricing` (`id`, `extension`, `dnsmanagement`, `emailforwarding`, `idprotection`, `eppcode`, `autoreg`, `order`, `group`, `grace_period`, `grace_period_fee`, `redemption_grace_period`, `redemption_grace_period_fee`, `created_at`, `updated_at`) VALUES ('2', '.net', '0', '0', '0', '1', 'enom', '2', '', '-1', '0.00', '-1', '-1.00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tbldomainpricing` (`id`, `extension`, `dnsmanagement`, `emailforwarding`, `idprotection`, `eppcode`, `autoreg`, `order`, `group`, `grace_period`, `grace_period_fee`, `redemption_grace_period`, `redemption_grace_period_fee`, `created_at`, `updated_at`) VALUES ('3', '.org', '0', '0', '0', '1', 'enom', '3', '', '-1', '0.00', '-1', '-1.00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tbldomainpricing` (`id`, `extension`, `dnsmanagement`, `emailforwarding`, `idprotection`, `eppcode`, `autoreg`, `order`, `group`, `grace_period`, `grace_period_fee`, `redemption_grace_period`, `redemption_grace_period_fee`, `created_at`, `updated_at`) VALUES ('4', '.biz', '0', '0', '0', '1', 'enom', '4', '', '-1', '0.00', '-1', '-1.00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');INSERT INTO `tbldomainpricing` (`id`, `extension`, `dnsmanagement`, `emailforwarding`, `idprotection`, `eppcode`, `autoreg`, `order`, `group`, `grace_period`, `grace_period_fee`, `redemption_grace_period`, `redemption_grace_period_fee`, `created_at`, `updated_at`) VALUES ('5', '.info', '0', '0', '0', '1', 'enom', '5', '', '-1', '0.00', '-1', '-1.00', '0000-00-00 00:00:00', '0000-00-00 00:00:00');/*!40000 ALTER TABLE `tbldomainpricing` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tbldomainpricing_premium`--DROP TABLE IF EXISTS `tbldomainpricing_premium`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tbldomainpricing_premium` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `to_amount` decimal(16,2) NOT NULL DEFAULT 0.00, `markup` decimal(8,5) NOT NULL DEFAULT 0.00000, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), UNIQUE KEY `tbldomain_pricing_premium_to_amount_unique` (`to_amount`)) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tbldomainpricing_premium`--LOCK TABLES `tbldomainpricing_premium` WRITE;/*!40000 ALTER TABLE `tbldomainpricing_premium` DISABLE KEYS */;INSERT INTO `tbldomainpricing_premium` (`id`, `to_amount`, `markup`, `created_at`, `updated_at`) VALUES ('1', '200.00', '20.00000', '2018-04-18 16:21:39', '2018-04-18 16:21:39');INSERT INTO `tbldomainpricing_premium` (`id`, `to_amount`, `markup`, `created_at`, `updated_at`) VALUES ('2', '500.00', '25.00000', '2018-04-18 16:21:39', '2018-04-18 16:21:39');INSERT INTO `tbldomainpricing_premium` (`id`, `to_amount`, `markup`, `created_at`, `updated_at`) VALUES ('3', '1000.00', '30.00000', '2018-04-18 16:21:39', '2018-04-18 16:21:39');INSERT INTO `tbldomainpricing_premium` (`id`, `to_amount`, `markup`, `created_at`, `updated_at`) VALUES ('4', '-1.00', '20.00000', '2018-04-18 16:21:39', '2018-04-18 16:21:39');/*!40000 ALTER TABLE `tbldomainpricing_premium` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tbldomainreminders`--DROP TABLE IF EXISTS `tbldomainreminders`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tbldomainreminders` ( `id` int(10) NOT NULL AUTO_INCREMENT, `domain_id` int(10) NOT NULL, `date` date NOT NULL, `recipients` text NOT NULL, `type` tinyint(4) NOT NULL, `days_before_expiry` tinyint(4) NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tbldomainreminders`--LOCK TABLES `tbldomainreminders` WRITE;/*!40000 ALTER TABLE `tbldomainreminders` DISABLE KEYS */;/*!40000 ALTER TABLE `tbldomainreminders` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tbldomains`--DROP TABLE IF EXISTS `tbldomains`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tbldomains` ( `id` int(10) NOT NULL AUTO_INCREMENT, `userid` int(10) NOT NULL, `orderid` int(1) NOT NULL, `type` enum('Register','Transfer') NOT NULL, `registrationdate` date NOT NULL, `domain` text NOT NULL, `firstpaymentamount` decimal(16,2) NOT NULL DEFAULT 0.00, `recurringamount` decimal(16,2) NOT NULL, `registrar` text NOT NULL, `registrationperiod` int(1) NOT NULL DEFAULT 1, `expirydate` date DEFAULT NULL, `subscriptionid` text NOT NULL, `promoid` int(10) NOT NULL, `status` enum('Pending','Pending Registration','Pending Transfer','Active','Grace','Redemption','Expired','Cancelled','Fraud','Transferred Away') NOT NULL DEFAULT 'Pending', `nextduedate` date NOT NULL DEFAULT '0000-00-00', `nextinvoicedate` date NOT NULL, `additionalnotes` text NOT NULL, `paymentmethod` text NOT NULL, `dnsmanagement` tinyint(1) NOT NULL, `emailforwarding` tinyint(1) NOT NULL, `idprotection` tinyint(1) NOT NULL, `is_premium` tinyint(1) DEFAULT NULL, `donotrenew` tinyint(1) NOT NULL, `reminders` text NOT NULL, `synced` tinyint(1) NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `userid` (`userid`), KEY `orderid` (`orderid`), KEY `domain` (`domain`(64)), KEY `status` (`status`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tbldomains`--LOCK TABLES `tbldomains` WRITE;/*!40000 ALTER TABLE `tbldomains` DISABLE KEYS */;/*!40000 ALTER TABLE `tbldomains` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tbldomains_extra`--DROP TABLE IF EXISTS `tbldomains_extra`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tbldomains_extra` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `domain_id` int(11) NOT NULL DEFAULT 0, `name` varchar(32) NOT NULL DEFAULT '', `value` varchar(255) NOT NULL DEFAULT '', `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), UNIQUE KEY `tbldomains_extra_domain_id_type_unique` (`domain_id`,`name`), KEY `tbldomains_extra_type_index` (`name`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tbldomains_extra`--LOCK TABLES `tbldomains_extra` WRITE;/*!40000 ALTER TABLE `tbldomains_extra` DISABLE KEYS */;/*!40000 ALTER TABLE `tbldomains_extra` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tbldomainsadditionalfields`--DROP TABLE IF EXISTS `tbldomainsadditionalfields`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tbldomainsadditionalfields` ( `id` int(10) NOT NULL AUTO_INCREMENT, `domainid` int(10) NOT NULL, `name` text NOT NULL, `value` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `domainid` (`domainid`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tbldomainsadditionalfields`--LOCK TABLES `tbldomainsadditionalfields` WRITE;/*!40000 ALTER TABLE `tbldomainsadditionalfields` DISABLE KEYS */;/*!40000 ALTER TABLE `tbldomainsadditionalfields` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tbldownloadcats`--DROP TABLE IF EXISTS `tbldownloadcats`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tbldownloadcats` ( `id` int(10) NOT NULL AUTO_INCREMENT, `parentid` int(10) NOT NULL DEFAULT 0, `name` text NOT NULL, `description` text NOT NULL, `hidden` tinyint(1) NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `parentid` (`parentid`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tbldownloadcats`--LOCK TABLES `tbldownloadcats` WRITE;/*!40000 ALTER TABLE `tbldownloadcats` DISABLE KEYS */;/*!40000 ALTER TABLE `tbldownloadcats` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tbldownloads`--DROP TABLE IF EXISTS `tbldownloads`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tbldownloads` ( `id` int(10) NOT NULL AUTO_INCREMENT, `category` int(10) NOT NULL, `type` text NOT NULL, `title` text NOT NULL, `description` text NOT NULL, `downloads` int(10) NOT NULL DEFAULT 0, `location` text NOT NULL, `clientsonly` tinyint(1) NOT NULL, `hidden` tinyint(1) NOT NULL, `productdownload` tinyint(1) NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `title` (`title`(32)), KEY `downloads` (`downloads`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tbldownloads`--LOCK TABLES `tbldownloads` WRITE;/*!40000 ALTER TABLE `tbldownloads` DISABLE KEYS */;/*!40000 ALTER TABLE `tbldownloads` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tbldynamic_translations`--DROP TABLE IF EXISTS `tbldynamic_translations`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tbldynamic_translations` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `related_type` enum('configurable_option.{id}.name','configurable_option_option.{id}.name','custom_field.{id}.description','custom_field.{id}.name','download.{id}.description','download.{id}.title','product.{id}.description','product.{id}.name','product.{id}.tagline','product.{id}.short_description','product_addon.{id}.description','product_addon.{id}.name','product_bundle.{id}.description','product_bundle.{id}.name','product_group.{id}.headline','product_group.{id}.name','product_group.{id}.tagline','product_group_feature.{id}.feature','ticket_department.{id}.description','ticket_department.{id}.name') NOT NULL, `related_id` int(10) unsigned NOT NULL DEFAULT 0, `language` varchar(16) NOT NULL DEFAULT '', `translation` text NOT NULL, `input_type` enum('text','textarea') NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `tbldynamic_translations_id` (`related_id`), KEY `tbldynamic_translations_type` (`related_type`), KEY `tbldynamic_translations_id_type` (`related_id`,`related_type`)) ENGINE=InnoDB AUTO_INCREMENT=126 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tbldynamic_translations`--LOCK TABLES `tbldynamic_translations` WRITE;/*!40000 ALTER TABLE `tbldynamic_translations` DISABLE KEYS */;INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('1', 'product.{id}.tagline', '10', 'english', '', 'text', '2022-11-08 00:42:23', '2022-11-08 00:42:23');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('2', 'product.{id}.short_description', '10', 'english', '', 'textarea', '2022-11-08 00:42:23', '2022-11-08 00:42:23');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('3', 'product.{id}.description', '10', 'english', 'Decent Python server, good for moderately sized Discord bots!\r\nPSsst... This is meant for humble.\r\n\r\n<strong>CPU Limit:</strong> 20%\r\n<strong>Ram:</strong> 3GB\r\n<strong>Disk:</strong> 6GB\r\n<strong>Databases:</strong> 2\r\n<strong>Backups:</strong> 2', 'textarea', '2022-11-08 00:42:23', '2022-11-08 00:43:39');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('4', 'product.{id}.name', '10', 'english', 'Python | Humble', 'text', '2022-11-08 00:42:23', '2022-11-08 00:42:23');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('9', 'product_group.{id}.headline', '3', 'english', '', 'text', '2022-11-08 16:34:34', '2022-11-08 16:34:34');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('10', 'product_group.{id}.name', '3', 'english', 'Terraria', 'text', '2022-11-08 16:34:34', '2022-11-08 16:34:34');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('11', 'product_group.{id}.tagline', '3', 'english', 'Vanilla terraria servers to enjoy with your friends', 'text', '2022-11-08 16:34:34', '2022-11-08 16:35:03');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('12', 'product.{id}.tagline', '12', 'english', '', 'text', '2022-11-08 16:36:47', '2022-11-08 16:36:47');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('13', 'product.{id}.short_description', '12', 'english', '', 'textarea', '2022-11-08 16:36:47', '2022-11-08 16:36:47');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('14', 'product.{id}.description', '12', 'english', 'A decent vanilla Terraria server for you and your friends!\r\n\r\n<strong>CPU Limit:</strong> 75%\r\n<strong>Ram:</strong> 2GB\r\n<strong>Disk:</strong> 5GB\r\n<strong>Backups:</strong> 1', 'textarea', '2022-11-08 16:36:47', '2022-11-13 09:34:51');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('15', 'product.{id}.name', '12', 'english', 'Terraria Vanilla | Beginner ', 'text', '2022-11-08 16:36:47', '2022-11-13 09:31:06');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('16', 'product_group.{id}.headline', '4', 'english', '', 'text', '2022-11-08 16:42:41', '2022-11-08 16:42:41');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('17', 'product_group.{id}.name', '4', 'english', 'Databases', 'text', '2022-11-08 16:42:41', '2022-11-08 16:42:41');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('18', 'product_group.{id}.tagline', '4', 'english', 'A dedicated database suited for all of your needs', 'text', '2022-11-08 16:42:41', '2022-11-08 16:42:41');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('19', 'product.{id}.tagline', '13', 'english', '', 'text', '2022-11-08 16:43:07', '2022-11-08 16:43:07');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('20', 'product.{id}.short_description', '13', 'english', '', 'textarea', '2022-11-08 16:43:07', '2022-11-08 16:43:07');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('21', 'product.{id}.description', '13', 'english', 'A Postgres server suited for all your applications needs.\r\n\r\n<strong>Data Limit:</strong> 20 GB', 'textarea', '2022-11-08 16:43:07', '2022-11-13 07:47:42');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('22', 'product.{id}.name', '13', 'english', 'Postgres', 'text', '2022-11-08 16:43:07', '2022-11-08 16:46:05');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('23', 'product.{id}.tagline', '2', 'english', '', 'text', '2022-11-08 17:06:33', '2022-11-08 17:06:33');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('24', 'product.{id}.short_description', '2', 'english', '', 'textarea', '2022-11-08 17:06:33', '2022-11-08 17:06:33');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('25', 'product.{id}.description', '2', 'english', 'Small, simple PaperMC server.\r\n\r\n<strong>CPU Limit:</strong> 100%\r\n<strong>Ram:</strong> 2GB\r\n<strong>Disk:</strong> 5GB\r\n<strong>Databases:</strong> 1', 'textarea', '2022-11-08 17:06:33', '2022-11-08 17:06:33');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('26', 'product.{id}.name', '2', 'english', 'Coal', 'text', '2022-11-08 17:06:33', '2022-11-08 17:06:33');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('27', 'product.{id}.tagline', '3', 'english', '', 'text', '2022-11-08 17:06:49', '2022-11-08 17:06:49');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('28', 'product.{id}.short_description', '3', 'english', '', 'textarea', '2022-11-08 17:06:49', '2022-11-08 17:06:49');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('29', 'product.{id}.description', '3', 'english', 'Decent, simple PaperMC server, more suited for you and a friend.\r\n\r\n<strong>CPU Limit:</strong> 110%\r\n<strong>Ram:</strong> 4GB\r\n<strong>Disk:</strong> 6GB\r\n<strong>Databases:</strong> 1', 'textarea', '2022-11-08 17:06:49', '2022-11-08 17:06:49');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('30', 'product.{id}.name', '3', 'english', 'Redstone', 'text', '2022-11-08 17:06:49', '2022-11-08 17:06:49');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('31', 'product.{id}.tagline', '5', 'english', '', 'text', '2022-11-08 17:07:00', '2022-11-08 17:07:00');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('32', 'product.{id}.short_description', '5', 'english', '', 'textarea', '2022-11-08 17:07:00', '2022-11-08 17:07:00');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('33', 'product.{id}.description', '5', 'english', 'Fair PaperMC server. Finally, you can play MC with your friend group!\r\n\r\n<strong>CPU Limit:</strong> 115%\r\n<strong>Ram:</strong> 5GB\r\n<strong>Disk:</strong> 6GB\r\n<strong>Databases:</strong> 1', 'textarea', '2022-11-08 17:07:00', '2022-11-08 17:07:00');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('34', 'product.{id}.name', '5', 'english', 'Diamond', 'text', '2022-11-08 17:07:00', '2022-11-08 17:07:00');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('35', 'product.{id}.tagline', '4', 'english', '', 'text', '2022-11-08 17:07:10', '2022-11-08 17:07:10');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('36', 'product.{id}.short_description', '4', 'english', '', 'textarea', '2022-11-08 17:07:10', '2022-11-08 17:07:10');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('37', 'product.{id}.description', '4', 'english', 'Well-rounded PaperMC server. Big aspirations, huh?\r\n\r\n<strong>CPU Limit:</strong> 120%\r\n<strong>Ram:</strong> 6GB\r\n<strong>Disk:</strong> 8GB\r\n<strong>Databases:</strong> 3', 'textarea', '2022-11-08 17:07:10', '2022-11-08 17:07:10');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('38', 'product.{id}.name', '4', 'english', 'Netherite', 'text', '2022-11-08 17:07:10', '2022-11-08 17:07:10');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('39', 'product.{id}.tagline', '6', 'english', '', 'text', '2022-11-08 17:08:19', '2022-11-08 17:08:19');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('40', 'product.{id}.short_description', '6', 'english', '', 'textarea', '2022-11-08 17:08:19', '2022-11-08 17:08:19');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('41', 'product.{id}.description', '6', 'english', 'Small NodeJS server, good for petite Discord bots!\r\n\r\n<strong>CPU Limit:</strong> 10%\r\n<strong>Ram:</strong> 1GB\r\n<strong>Disk:</strong> 2GB\r\n<strong>Databases:</strong> 1', 'textarea', '2022-11-08 17:08:19', '2022-11-08 17:08:19');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('42', 'product.{id}.name', '6', 'english', 'NodeJS | 1GB Ram', 'text', '2022-11-08 17:08:19', '2022-11-08 17:08:19');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('43', 'product.{id}.tagline', '14', 'english', '', 'text', '2022-11-08 17:13:14', '2022-11-08 17:13:14');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('44', 'product.{id}.short_description', '14', 'english', '', 'textarea', '2022-11-08 17:13:14', '2022-11-08 17:13:14');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('45', 'product.{id}.description', '14', 'english', 'Decent NodeJS server, good for moderately sized Discord bots!\r\n\r\n<strong>CPU Limit:</strong> 10%\r\n<strong>Ram:</strong> 1GB\r\n<strong>Disk:</strong> 2GB\r\n<strong>Databases:</strong> 1\r\n<strong>Backups:</strong> 3', 'textarea', '2022-11-08 17:13:14', '2022-11-08 17:20:13');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('46', 'product.{id}.name', '14', 'english', 'NodeJS | 3GB Ram', 'text', '2022-11-08 17:13:14', '2022-11-08 17:13:14');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('47', 'custom_field.{id}.name', '12', 'english', 'GIT_ADDRESS', 'text', '2022-11-08 17:13:14', '2022-11-08 17:13:14');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('48', 'custom_field.{id}.description', '12', 'english', 'The git repo belonging to your bot (if applicable)', 'text', '2022-11-08 17:13:14', '2022-11-08 17:13:14');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('49', 'custom_field.{id}.name', '13', 'english', 'USERNAME', 'text', '2022-11-08 17:13:14', '2022-11-08 17:13:14');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('50', 'custom_field.{id}.description', '13', 'english', 'Your GitHub username to authenticate with (required for private repositories)', 'text', '2022-11-08 17:13:14', '2022-11-08 17:13:14');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('51', 'custom_field.{id}.name', '14', 'english', 'BRANCH', 'text', '2022-11-08 17:13:14', '2022-11-08 17:13:14');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('52', 'custom_field.{id}.description', '14', 'english', 'Git branch to pull changes from (if applicable)', 'text', '2022-11-08 17:13:14', '2022-11-08 17:13:14');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('53', 'custom_field.{id}.name', '15', 'english', 'ACCESS_TOKEN', 'text', '2022-11-08 17:13:14', '2022-11-08 17:13:14');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('54', 'custom_field.{id}.description', '15', 'english', 'Your git access token to authenticate with (required for private repositories)', 'text', '2022-11-08 17:13:14', '2022-11-08 17:13:14');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('55', 'custom_field.{id}.name', '16', 'english', 'JS_FILE', 'text', '2022-11-08 17:13:14', '2022-11-08 17:13:14');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('56', 'custom_field.{id}.description', '16', 'english', 'The main JS file that starts the app (ex: index.js)', 'text', '2022-11-08 17:13:14', '2022-11-08 17:13:14');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('57', 'product.{id}.tagline', '15', 'english', '', 'text', '2022-11-08 17:15:26', '2022-11-08 17:15:26');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('58', 'product.{id}.short_description', '15', 'english', '', 'textarea', '2022-11-08 17:15:26', '2022-11-08 17:15:26');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('59', 'product.{id}.description', '15', 'english', 'Small Python server, good for petite Discord bots!\r\n\r\n<strong>CPU Limit:</strong> 10%\r\n<strong>Ram:</strong> 1GB\r\n<strong>Disk:</strong> 2GB\r\n<strong>Databases:</strong> 1', 'textarea', '2022-11-08 17:15:26', '2022-11-08 17:18:28');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('60', 'product.{id}.name', '15', 'english', 'Python | 1GB Ram', 'text', '2022-11-08 17:15:26', '2022-11-08 17:15:26');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('61', 'custom_field.{id}.name', '17', 'english', 'GIT_ADDRESS', 'text', '2022-11-08 17:15:26', '2022-11-08 17:15:26');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('62', 'custom_field.{id}.description', '17', 'english', 'The git repo belonging to your bot (if applicable)', 'text', '2022-11-08 17:15:26', '2022-11-08 17:15:26');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('63', 'custom_field.{id}.name', '18', 'english', 'USERNAME', 'text', '2022-11-08 17:15:26', '2022-11-08 17:15:26');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('64', 'custom_field.{id}.description', '18', 'english', 'Your GitHub username to authenticate with (required for private repositories)', 'text', '2022-11-08 17:15:26', '2022-11-08 17:15:26');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('65', 'custom_field.{id}.name', '19', 'english', 'BRANCH', 'text', '2022-11-08 17:15:26', '2022-11-08 17:15:26');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('66', 'custom_field.{id}.description', '19', 'english', 'Git branch to pull changes from (if applicable)', 'text', '2022-11-08 17:15:26', '2022-11-08 17:15:26');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('67', 'custom_field.{id}.name', '20', 'english', 'ACCESS_TOKEN', 'text', '2022-11-08 17:15:26', '2022-11-08 17:15:26');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('68', 'custom_field.{id}.description', '20', 'english', 'Your git access token to authenticate with (required for private repositories)', 'text', '2022-11-08 17:15:26', '2022-11-08 17:15:26');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('69', 'custom_field.{id}.name', '21', 'english', 'JS_FILE', 'text', '2022-11-08 17:15:26', '2022-11-08 17:15:26');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('70', 'custom_field.{id}.description', '21', 'english', 'The main JS file that starts the app (ex: index.js)', 'text', '2022-11-08 17:15:26', '2022-11-08 17:15:26');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('71', 'product.{id}.tagline', '16', 'english', '', 'text', '2022-11-08 17:18:46', '2022-11-08 17:18:46');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('72', 'product.{id}.short_description', '16', 'english', '', 'textarea', '2022-11-08 17:18:46', '2022-11-08 17:18:46');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('73', 'product.{id}.description', '16', 'english', 'Small Python server, good for petite Discord bots!\r\n\r\n<strong>CPU Limit:</strong> 20%\r\n<strong>Ram:</strong> 3GB\r\n<strong>Disk:</strong> 6GB\r\n<strong>Databases:</strong> 1\r\n<strong>Backups:</strong> 3', 'textarea', '2022-11-08 17:18:46', '2022-11-08 17:19:50');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('74', 'product.{id}.name', '16', 'english', 'Python | 3GB Ram', 'text', '2022-11-08 17:18:46', '2022-11-08 17:18:46');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('75', 'custom_field.{id}.name', '22', 'english', 'GIT_ADDRESS', 'text', '2022-11-08 17:18:46', '2022-11-08 17:18:46');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('76', 'custom_field.{id}.description', '22', 'english', 'The git repo belonging to your bot (if applicable)', 'text', '2022-11-08 17:18:46', '2022-11-08 17:18:46');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('77', 'custom_field.{id}.name', '23', 'english', 'USERNAME', 'text', '2022-11-08 17:18:46', '2022-11-08 17:18:46');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('78', 'custom_field.{id}.description', '23', 'english', 'Your GitHub username to authenticate with (required for private repositories)', 'text', '2022-11-08 17:18:46', '2022-11-08 17:18:46');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('79', 'custom_field.{id}.name', '24', 'english', 'BRANCH', 'text', '2022-11-08 17:18:46', '2022-11-08 17:18:46');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('80', 'custom_field.{id}.description', '24', 'english', 'Git branch to pull changes from (if applicable)', 'text', '2022-11-08 17:18:46', '2022-11-08 17:18:46');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('81', 'custom_field.{id}.name', '25', 'english', 'ACCESS_TOKEN', 'text', '2022-11-08 17:18:46', '2022-11-08 17:18:46');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('82', 'custom_field.{id}.description', '25', 'english', 'Your git access token to authenticate with (required for private repositories)', 'text', '2022-11-08 17:18:46', '2022-11-08 17:18:46');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('83', 'custom_field.{id}.name', '26', 'english', 'PY_FILE', 'text', '2022-11-08 17:18:46', '2022-11-08 17:18:46');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('84', 'custom_field.{id}.description', '26', 'english', 'The main PY file that starts the app (ex: index.py)', 'text', '2022-11-08 17:18:46', '2022-11-08 17:18:46');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('89', 'custom_field.{id}.name', '30', 'english', 'MINECRAFT_VERSION', 'text', '2022-11-13 07:27:08', '2022-11-13 07:27:08');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('90', 'custom_field.{id}.description', '30', 'english', 'The version of Minecraft to be deployed with your PaperMC server. If not provided, defaults to latest.', 'text', '2022-11-13 07:27:08', '2022-11-13 07:27:08');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('91', 'product.{id}.tagline', '18', 'english', '', 'text', '2022-11-13 08:04:49', '2022-11-13 08:04:49');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('92', 'product.{id}.short_description', '18', 'english', '', 'textarea', '2022-11-13 08:04:49', '2022-11-13 08:04:49');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('93', 'product.{id}.description', '18', 'english', 'A decent TShock Terraria server for you and your friends!\r\n\r\n<strong>CPU Limit:</strong> 100%\r\n<strong>Ram:</strong> 4GB\r\n<strong>Disk:</strong> 15GB\r\n<strong>Backups:</strong> 3', 'textarea', '2022-11-13 08:04:49', '2022-11-13 09:35:20');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('94', 'product.{id}.name', '18', 'english', 'Terraria TShock | Novice', 'text', '2022-11-13 08:04:49', '2022-11-13 09:31:16');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('95', 'custom_field.{id}.name', '31', 'english', 'WORLD_SIZE', 'text', '2022-11-13 08:04:49', '2022-11-13 08:04:49');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('96', 'custom_field.{id}.description', '31', 'english', 'Defines the worlds size. 3 sizes 1 (small), 2 (medium), 3 (large).', 'text', '2022-11-13 08:04:49', '2022-11-13 08:04:49');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('97', 'custom_field.{id}.name', '32', 'english', 'MAX_PLAYERS', 'text', '2022-11-13 08:04:49', '2022-11-13 08:04:49');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('98', 'custom_field.{id}.description', '32', 'english', 'The maximum number of players a server will hold.', 'text', '2022-11-13 08:04:49', '2022-11-13 08:04:49');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('99', 'custom_field.{id}.name', '33', 'english', 'WORLD_DIFFICULTY', 'text', '2022-11-13 08:04:49', '2022-11-13 08:04:49');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('100', 'custom_field.{id}.description', '33', 'english', 'World Difficulty : 0(normal), 1(expert), 2(master), 3(journey) | Defaults to Normal difficulty', 'text', '2022-11-13 08:04:49', '2022-11-13 08:04:49');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('101', 'product.{id}.tagline', '19', 'english', '', 'text', '2022-11-13 09:28:23', '2022-11-13 09:28:23');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('102', 'product.{id}.short_description', '19', 'english', '', 'textarea', '2022-11-13 09:28:23', '2022-11-13 09:28:23');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('103', 'product.{id}.description', '19', 'english', 'A starter TShock Terraria server for you and your friends!\r\n\r\n<strong>CPU Limit:</strong> 75%\r\n<strong>Ram:</strong> 2GB\r\n<strong>Disk:</strong> 10GB\r\n<strong>Backups:</strong> 1', 'textarea', '2022-11-13 09:28:23', '2022-11-13 09:34:03');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('104', 'product.{id}.name', '19', 'english', 'Terraria TShock | Beginner', 'text', '2022-11-13 09:28:23', '2022-11-13 09:32:45');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('105', 'custom_field.{id}.name', '34', 'english', 'WORLD_SIZE', 'text', '2022-11-13 09:28:23', '2022-11-13 09:28:23');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('106', 'custom_field.{id}.description', '34', 'english', 'Defines the worlds size. 3 sizes 1 (small), 2 (medium), 3 (large).', 'text', '2022-11-13 09:28:23', '2022-11-13 09:28:23');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('107', 'custom_field.{id}.name', '35', 'english', 'MAX_PLAYERS', 'text', '2022-11-13 09:28:23', '2022-11-13 09:28:23');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('108', 'custom_field.{id}.description', '35', 'english', 'The maximum number of players a server will hold.', 'text', '2022-11-13 09:28:23', '2022-11-13 09:28:23');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('109', 'custom_field.{id}.name', '36', 'english', 'WORLD_DIFFICULTY', 'text', '2022-11-13 09:28:23', '2022-11-13 09:28:23');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('110', 'custom_field.{id}.description', '36', 'english', 'World Difficulty : 0(normal), 1(expert), 2(master), 3(journey) | Defaults to Normal difficulty', 'text', '2022-11-13 09:28:23', '2022-11-13 09:28:23');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('111', 'product_group.{id}.headline', '5', 'english', 'We provide the stuff, you provide the awesomeness.', 'text', '2022-11-13 10:36:12', '2022-11-13 10:36:12');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('112', 'product_group.{id}.name', '5', 'english', 'KVM VPS Hosting', 'text', '2022-11-13 10:36:12', '2022-11-13 10:36:12');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('113', 'product_group.{id}.tagline', '5', 'english', 'We provide the stuff, you provide the awesomeness.', 'text', '2022-11-13 10:36:12', '2022-11-13 10:36:30');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('114', 'product.{id}.tagline', '20', 'english', '', 'text', '2022-11-13 10:37:44', '2022-11-13 10:38:49');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('115', 'product.{id}.short_description', '20', 'english', '', 'textarea', '2022-11-13 10:37:44', '2022-11-13 10:40:05');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('116', 'product.{id}.description', '20', 'english', '1 vCore\r\n2GB DDR4 2666MHz\r\n25GB NVMe SSD Storage\r\nUnmetered Traffic', 'textarea', '2022-11-13 10:37:44', '2022-11-13 10:40:05');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('117', 'product.{id}.name', '20', 'english', 'VPS-1', 'text', '2022-11-13 10:37:44', '2022-11-13 10:40:05');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('118', 'product.{id}.tagline', '21', 'english', '', 'text', '2022-11-13 10:41:43', '2022-11-13 10:41:43');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('119', 'product.{id}.short_description', '21', 'english', '', 'textarea', '2022-11-13 10:41:43', '2022-11-13 10:41:43');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('120', 'product.{id}.description', '21', 'english', '2 vCores\r\n4GB DDR4 2666MHz\r\n50GB HDD Storage\r\nUnmetered Traffic', 'textarea', '2022-11-13 10:41:43', '2022-11-13 10:42:46');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('121', 'product.{id}.name', '21', 'english', 'VPS-2', 'text', '2022-11-13 10:41:43', '2022-11-13 10:41:43');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('122', 'product.{id}.tagline', '22', 'english', '', 'text', '2022-11-23 04:38:17', '2022-11-23 04:38:17');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('123', 'product.{id}.short_description', '22', 'english', '', 'textarea', '2022-11-23 04:38:17', '2022-11-23 04:38:17');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('124', 'product.{id}.description', '22', 'english', '', 'textarea', '2022-11-23 04:38:17', '2022-11-23 04:38:17');INSERT INTO `tbldynamic_translations` (`id`, `related_type`, `related_id`, `language`, `translation`, `input_type`, `created_at`, `updated_at`) VALUES ('125', 'product.{id}.name', '22', 'english', 'ModulesGarden Test', 'text', '2022-11-23 04:38:17', '2022-11-23 04:38:17');/*!40000 ALTER TABLE `tbldynamic_translations` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblemail_images`--DROP TABLE IF EXISTS `tblemail_images`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblemail_images` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `filename` varchar(128) NOT NULL DEFAULT '', `original_name` varchar(255) NOT NULL DEFAULT '', `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblemail_images`--LOCK TABLES `tblemail_images` WRITE;/*!40000 ALTER TABLE `tblemail_images` DISABLE KEYS */;/*!40000 ALTER TABLE `tblemail_images` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblemailmarketer`--DROP TABLE IF EXISTS `tblemailmarketer`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblemailmarketer` ( `id` int(10) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `type` text NOT NULL, `settings` text NOT NULL, `disable` int(1) NOT NULL, `marketing` int(1) NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblemailmarketer`--LOCK TABLES `tblemailmarketer` WRITE;/*!40000 ALTER TABLE `tblemailmarketer` DISABLE KEYS */;/*!40000 ALTER TABLE `tblemailmarketer` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblemailmarketer_related_pivot`--DROP TABLE IF EXISTS `tblemailmarketer_related_pivot`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblemailmarketer_related_pivot` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `task_id` int(10) unsigned NOT NULL DEFAULT 0, `product_id` int(10) unsigned NOT NULL DEFAULT 0, `addon_id` int(10) unsigned NOT NULL DEFAULT 0, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblemailmarketer_related_pivot`--LOCK TABLES `tblemailmarketer_related_pivot` WRITE;/*!40000 ALTER TABLE `tblemailmarketer_related_pivot` DISABLE KEYS */;/*!40000 ALTER TABLE `tblemailmarketer_related_pivot` ENABLE KEYS */;UNLOCK TABLES;---- Table structure for table `tblemails`--DROP TABLE IF EXISTS `tblemails`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tblemails` ( `id` int(10) NOT NULL AUTO_INCREMENT, `userid` int(10) NOT NULL, `subject` text NOT NULL, `message` text NOT NULL, `date` datetime DEFAULT NULL, `to` text DEFAULT NULL, `cc` text DEFAULT NULL, `bcc` text DEFAULT NULL, `attachments` text DEFAULT NULL, `pending` tinyint(1) NOT NULL DEFAULT 0, `message_data` mediumtext DEFAULT NULL, `failed` tinyint(1) NOT NULL DEFAULT 0, `failure_reason` varchar(250) NOT NULL DEFAULT '', `retry_count` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `campaign_id` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `userid` (`userid`), KEY `pending` (`pending`), KEY `campaign_id` (`campaign_id`)) ENGINE=InnoDB AUTO_INCREMENT=119 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Dumping data for table `tblemails`--LOCK TABLES `tblemails` WRITE;/*!40000 ALTER TABLE `tblemails` DISABLE KEYS */;INSERT INTO `tblemails` (`id`, `userid`, `subject`, `message`, `date`, `to`, `cc`, `bcc`, `attachments`, `pending`, `message_data`, `failed`, `failure_reason`, `retry_count`, `created_at`, `updated_at`, `campaign_id`) VALUES ('1', '1', 'Welcome', '<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n
\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no\">\n <style type=\"text/css\">\n .ExternalClass,.ExternalClass div,.ExternalClass font,.ExternalClass p,.ExternalClass span,.ExternalClass td,h1,img{line-height:100%}h1,h2{display:block;font-family:Helvetica;font-style:normal;font-weight:700}#outlook a{padding:0}.ExternalClass,.ReadMsgBody{width:100%}a,blockquote,body,li,p,table,td{-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}table,td{mso-table-lspace:0;mso-table-rspace:0}img{-ms-interpolation-mode:bicubic;border:0;height:auto;outline:0;text-decoration:none}table{border-collapse:collapse!important}#bodyCell,#bodyTable,body{height:100%!important;margin:0;padding:0;width:100%!important}#bodyCell{padding:20px;}#templateContainer{width:600px;border:1px solid #ddd;background-color:#fff}#bodyTable,body{background-color:#FAFAFA}h1{color:#202020!important;font-size:26px;letter-spacing:normal;text-align:left;margin:0 0 10px}h2{color:#404040!important;font-size:20px;line-height:100%;letter-spacing:normal;text-align:left;margin:0 0 10px}h3,h4{display:block;font-style:italic;font-weight:400;letter-spacing:normal;text-align:left;margin:0 0 10px;font-family:Helvetica;line-height:100%}h3{color:#606060!important;font-size:16px}h4{color:grey!important;font-size:14px}.headerContent{background-color:#f8f8f8;border-bottom:1px solid #ddd;color:#505050;font-family:Helvetica;font-size:20px;font-weight:700;line-height:100%;text-align:left;vertical-align:middle;padding:0}.bodyContent,.footerContent{font-family:Helvetica;line-height:150%;text-align:left;}.footerContent{text-align:center}.bodyContent pre{padding:15px;background-color:#444;color:#f8f8f8;border:0}.bodyContent pre code{white-space:pre;word-break:normal;word-wrap:normal}.bodyContent table{margin:10px 0;background-color:#fff;border:1px solid #ddd}.bodyContent table th{padding:4px 10px;background-color:#f8f8f8;border:1px solid #ddd;font-weight:700;text-align:center}.bodyContent table td{padding:3px 8px;border:1px solid #ddd}.table-responsive{border:0}.bodyContent a{word-break:break-all}.headerContent a .yshortcuts,.headerContent a:link,.headerContent a:visited{color:#1f5d8c;font-weight:400;text-decoration:underline}#headerImage{height:auto;max-width:600px;padding:20px}#templateBody{background-color:#fff}.bodyContent{color:#505050;font-size:14px;padding:20px}.bodyContent a .yshortcuts,.bodyContent a:link,.bodyContent a:visited{color:#1f5d8c;font-weight:400;text-decoration:underline}.bodyContent a:hover{text-decoration:none}.bodyContent img{display:inline;height:auto;max-width:560px}.footerContent{color:grey;font-size:12px;padding:20px}.footerContent a .yshortcuts,.footerContent a span,.footerContent a:link,.footerContent a:visited{color:#606060;font-weight:400;text-decoration:underline}@media only screen and (max-width:640px){h1,h2,h3,h4{line-height:100%!important}#templateContainer{max-width:600px!important;width:100%!important}#templateContainer,body{width:100%!important}a,blockquote,body,li,p,table,td{-webkit-text-size-adjust:none!important}body{min-width:100%!important}#bodyCell{padding:10px!important}h1{font-size:24px!important}h2{font-size:20px!important}h3{font-size:18px!important}h4{font-size:16px!important}#templatePreheader{display:none!important}.headerContent{font-size:20px!important;line-height:125%!important}.footerContent{font-size:14px!important;line-height:115%!important}.footerContent a{display:block!important}.hide-mobile{display:none;}}\n </style>\n \n <body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\">\n